├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── accesstoken ├── accesstoken.go └── accesstoken_test.go ├── account ├── accounts.go ├── builder.go ├── builder_test.go ├── image.go ├── indexer.go ├── store.go ├── utxo_keeper.go └── utxo_keeper_test.go ├── api ├── accesstokens.go ├── accounts.go ├── api.go ├── api_test.go ├── assets.go ├── bbft.go ├── block_retrieve.go ├── compile.go ├── errors.go ├── hsm.go ├── message.go ├── miner.go ├── nodeinfo.go ├── page_util.go ├── program.go ├── query.go ├── receivers.go ├── request.go ├── transact.go ├── wallet.go └── websocket.go ├── application └── mov │ ├── common │ ├── type.go │ ├── type_test.go │ └── util.go │ ├── contract │ └── contract.go │ ├── database │ ├── mov_iterator.go │ ├── mov_iterator_test.go │ ├── mov_store.go │ └── mov_store_test.go │ ├── match │ ├── engine.go │ ├── engine_test.go │ ├── fee_strategy.go │ ├── order_book.go │ └── order_book_test.go │ ├── match_collector.go │ ├── mock │ ├── mock.go │ └── mock_mov_store.go │ ├── mov_core.go │ └── mov_core_test.go ├── asset ├── annotate.go └── asset.go ├── blockchain ├── pseudohsm │ ├── image.go │ ├── image_test.go │ ├── key.go │ ├── keycache.go │ ├── keycache_test.go │ ├── keystore_passphrase.go │ ├── keystore_passphrase_test.go │ ├── pseudohsm.go │ ├── pseudohsm_test.go │ ├── testdata │ │ ├── bytom-very-light-scrypt.json │ │ └── keystore │ │ │ ├── .hidden │ │ │ ├── README │ │ │ ├── UTC--2017-09-13T07-11-07.863320100Z--bm1pktmny6q69dlqulja2p2ja28k2vd6wvqpk5r76a │ │ │ ├── aaa │ │ │ ├── empty │ │ │ ├── garbage │ │ │ ├── no-address │ │ │ ├── zero │ │ │ └── zzz │ ├── watch.go │ └── watch_fallback.go ├── query │ └── annotated.go ├── rpc │ ├── rpc.go │ └── rpc_test.go ├── signers │ └── signers.go └── txbuilder │ ├── actions.go │ ├── builder.go │ ├── constraint.go │ ├── data_witness.go │ ├── estimate.go │ ├── estimate_test.go │ ├── finalize.go │ ├── rawtxsig_witness.go │ ├── signature_program.go │ ├── signature_witness.go │ ├── signing_instruction.go │ ├── txbuilder.go │ ├── txbuilder_test.go │ ├── types.go │ ├── types_test.go │ ├── witness.go │ └── witness_test.go ├── cmd ├── consensusreward │ ├── main.go │ └── sample.json ├── fedd │ └── main.go ├── precognitive │ └── main.go ├── utxomerge │ ├── README.md │ └── main.go ├── vaporcli │ ├── commands │ │ ├── accesstoken.go │ │ ├── account.go │ │ ├── asset.go │ │ ├── block.go │ │ ├── key.go │ │ ├── mining.go │ │ ├── net.go │ │ ├── program.go │ │ ├── template.go │ │ ├── transaction.go │ │ ├── txfeed.go │ │ ├── util.go │ │ ├── vaporcli.go │ │ ├── version.go │ │ └── wallet.go │ └── main.go ├── vapord │ ├── commands │ │ ├── init.go │ │ ├── rollback_node.go │ │ ├── root.go │ │ ├── run_node.go │ │ └── version.go │ └── main.go └── votereward │ ├── README.md │ └── main.go ├── common ├── address.go ├── address_test.go ├── arithmetic │ └── calculate.go ├── bech32 │ ├── bech32.go │ ├── bech32_test.go │ ├── doc.go │ └── example_test.go ├── bytes.go ├── compression │ ├── compression.go │ └── snappy.go ├── concurrent_lru.go ├── crossin_asset.go ├── ordered_set.go ├── types.go └── types_test.go ├── config ├── config.go ├── config_test.go ├── federation.go ├── federation_test.go ├── genesis.go ├── toml.go └── toml_test.go ├── consensus ├── general.go ├── general_test.go ├── segwit │ ├── segwit.go │ └── segwit_test.go ├── server_flag.go └── server_flag_test.go ├── crypto ├── crypto.go ├── csp │ └── csp.go ├── ed25519 │ ├── chainkd │ │ ├── bench_test.go │ │ ├── chainkd.go │ │ ├── chainkd_test.go │ │ ├── expanded_key.go │ │ ├── expanded_key_test.go │ │ ├── serialize.go │ │ ├── serialize_test.go │ │ └── util.go │ ├── ecmath │ │ ├── point.go │ │ ├── point_test.go │ │ └── scalar.go │ ├── ed25519.go │ ├── ed25519_test.go │ ├── internal │ │ └── edwards25519 │ │ │ ├── chain_export.go │ │ │ ├── const.go │ │ │ └── edwards25519.go │ └── testdata │ │ └── sign.input.gz ├── randentropy │ └── rand_entropy.go └── sha3pool │ └── pool.go ├── dashboard ├── dashboard │ └── dashboard.go └── equity │ └── equity.go ├── database ├── account_store.go ├── account_store_test.go ├── cache.go ├── cache_test.go ├── leveldb │ ├── LICENSE.md │ ├── README.md │ ├── db.go │ ├── db_test.go │ ├── go_level_db.go │ ├── go_level_db_test.go │ ├── mem_db.go │ └── mem_db_test.go ├── storage │ ├── storage.pb.go │ ├── storage.proto │ └── utxo_entry.go ├── store.go ├── store_test.go ├── utxo_view.go ├── utxo_view_test.go ├── wallet_store.go └── wallet_store_test.go ├── docker ├── fed ├── vapor └── vapord │ ├── README.md │ ├── config.toml │ ├── deploy.sh │ ├── docker-compose.yml.tpl │ ├── federation.json │ ├── supervisord.conf │ └── vapord.Dockerfile ├── docs ├── Running-in-Docker.md ├── cross-chain.md ├── federation │ ├── README-en.md │ ├── README-zh.md │ └── sql_dump │ │ ├── federation_shema.sql │ │ ├── init_federation_mainnet.sql │ │ └── init_federation_testnet.sql ├── precognitive │ ├── README.md │ ├── config_example.json │ └── sql_dump │ │ └── precognitive_schema.sql ├── release-notes │ ├── release-notes-1.0.4.md │ ├── release-notes-1.1.0.md │ ├── release-notes-1.1.2.md │ └── release-notes-1.1.4.md └── vote │ └── read.md ├── encoding ├── blockchain │ └── blockchain.go ├── bufpool │ └── bufpool.go └── json │ ├── duration.go │ ├── duration_test.go │ └── json.go ├── env ├── Readme ├── env.go └── env_test.go ├── equity ├── Makefile ├── README.md ├── compiler │ ├── ast.go │ ├── builder.go │ ├── builder_test.go │ ├── builtins.go │ ├── checks.go │ ├── checks_test.go │ ├── cmd │ │ └── equitycmd │ │ │ └── equitycmd.go │ ├── compile.go │ ├── compile_test.go │ ├── doc.go │ ├── environ.go │ ├── equitytest │ │ └── equitytest.go │ ├── optimize.go │ ├── parse.go │ ├── stack.go │ └── types.go └── equity │ ├── main.go │ └── util │ ├── instance.go │ └── shift.go ├── errors ├── doc.go ├── errors.go ├── errors_test.go ├── stack.go ├── writer.go └── writer_test.go ├── event ├── event.go └── event_test.go ├── log └── log.go ├── math ├── algorithm.go └── checked │ ├── checked.go │ └── checked_test.go ├── net ├── http │ ├── authn │ │ ├── authn.go │ │ ├── authn_test.go │ │ └── context.go │ ├── gzip │ │ ├── gzip.go │ │ └── gzip_test.go │ ├── httperror │ │ ├── httperror.go │ │ └── httperror_test.go │ ├── httpjson │ │ ├── context.go │ │ ├── context_test.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── io.go │ │ └── io_test.go │ └── static │ │ └── static.go └── websocket │ ├── wsclient.go │ ├── wsjson.go │ └── wsnotificationmaneger.go ├── netsync ├── chainmgr │ ├── block_keeper.go │ ├── block_keeper_test.go │ ├── block_process.go │ ├── block_process_test.go │ ├── fast_sync.go │ ├── fast_sync_test.go │ ├── handle.go │ ├── msg_fetcher.go │ ├── peers.go │ ├── peers_test.go │ ├── protocol_reactor.go │ ├── storage.go │ ├── storage_test.go │ ├── tool_test.go │ ├── tx_keeper.go │ └── tx_keeper_test.go ├── consensusmgr │ ├── block_fetcher.go │ ├── block_fetcher_test.go │ ├── broadcast_msg.go │ ├── consensus_msg.go │ ├── consensus_msg_test.go │ ├── handle.go │ ├── handle_test.go │ └── reactor.go ├── messages │ ├── chain_msg.go │ └── chain_msg_test.go ├── peers │ ├── peer.go │ └── peer_test.go └── sync_manager.go ├── node ├── node.go └── node_test.go ├── p2p ├── base_reactor.go ├── connection │ ├── channel.go │ ├── connection.go │ ├── connection_test.go │ ├── secret_connection.go │ └── secret_connection_test.go ├── discover │ ├── dht │ │ ├── database.go │ │ ├── database_test.go │ │ ├── dns_seeds.go │ │ ├── dns_seeds_test.go │ │ ├── net.go │ │ ├── net_test.go │ │ ├── node.go │ │ ├── nodeevent_string.go │ │ ├── sim_run_test.go │ │ ├── sim_testmain_test.go │ │ ├── table.go │ │ ├── ticket.go │ │ ├── topic.go │ │ ├── udp.go │ │ └── udp_test.go │ └── mdns │ │ ├── lan_discover.go │ │ ├── lan_discover_test.go │ │ └── mdns.go ├── external_ip.go ├── external_ip_test.go ├── listener.go ├── listener_test.go ├── netaddress.go ├── netaddress_test.go ├── netutil │ ├── error.go │ └── net.go ├── node_info.go ├── node_info_test.go ├── peer.go ├── peer_set.go ├── peer_set_test.go ├── peer_test.go ├── security │ ├── banscore.go │ ├── banscore_test.go │ ├── blacklist.go │ ├── filter.go │ ├── score.go │ └── security.go ├── signlib │ └── chainkd.go ├── switch.go ├── switch_test.go ├── test_util.go └── upnp │ ├── README.md │ ├── probe.go │ └── upnp.go ├── proposal ├── blockproposer │ └── blockproposer.go ├── proposal.go ├── proposal_test.go └── sort.go ├── protocol ├── asset_filter.go ├── asset_filter_test.go ├── bbft.go ├── bc │ ├── asset.go │ ├── bc.pb.go │ ├── bc.proto │ ├── block.go │ ├── blockheader.go │ ├── coinbase.go │ ├── crosschain_input.go │ ├── crosschain_output.go │ ├── entry.go │ ├── entry_test.go │ ├── hash.go │ ├── intrachain_output.go │ ├── mux.go │ ├── retirement.go │ ├── spend.go │ ├── tx.go │ ├── tx_status.go │ ├── tx_status_test.go │ ├── tx_test.go │ ├── txheader.go │ ├── types │ │ ├── block.go │ │ ├── block_commitment.go │ │ ├── block_commitment_test.go │ │ ├── block_header.go │ │ ├── block_header_test.go │ │ ├── block_witness.go │ │ ├── block_witness_test.go │ │ ├── coinbase.go │ │ ├── crosschain_input.go │ │ ├── crosschain_output.go │ │ ├── intrachain_output.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── merkle.go │ │ ├── merkle_test.go │ │ ├── output_commitment.go │ │ ├── output_commitment_test.go │ │ ├── spend.go │ │ ├── spend_commitment.go │ │ ├── spend_commitment_test.go │ │ ├── spend_test.go │ │ ├── transaction.go │ │ ├── transaction_test.go │ │ ├── txinput.go │ │ ├── txinput_test.go │ │ ├── txoutput.go │ │ ├── txoutput_test.go │ │ ├── veto_input.go │ │ └── vote_output.go │ ├── veto_input.go │ └── vote_output.go ├── block.go ├── block_test.go ├── consensus_node_manager.go ├── consensus_node_manager_test.go ├── orphan_manage.go ├── orphan_manage_test.go ├── protocol.go ├── state │ ├── consensus_result.go │ ├── consensus_result_test.go │ ├── utxo_view.go │ └── utxo_view_test.go ├── store.go ├── tx.go ├── txpool.go ├── txpool_test.go ├── validation │ ├── block.go │ ├── block_test.go │ ├── test │ │ └── tx_ugly_test.go │ ├── tx.go │ ├── tx_scene_test.go │ ├── tx_test.go │ ├── vmcontext.go │ └── vmcontext_test.go └── vm │ ├── assemble.go │ ├── assemble_test.go │ ├── bitwise.go │ ├── bitwise_test.go │ ├── context.go │ ├── control.go │ ├── control_test.go │ ├── crypto.go │ ├── crypto_test.go │ ├── errors.go │ ├── introspection.go │ ├── introspection_test.go │ ├── numeric.go │ ├── numeric_test.go │ ├── ops.go │ ├── ops_test.go │ ├── pushdata.go │ ├── pushdata_test.go │ ├── splice.go │ ├── splice_test.go │ ├── stack.go │ ├── stack_test.go │ ├── types.go │ ├── types_test.go │ ├── vm.go │ ├── vm_test.go │ └── vmutil │ ├── builder.go │ ├── builder_test.go │ ├── script.go │ └── script_test.go ├── test ├── accounts_test.go ├── bench_blockchain_test.go ├── block_test.go ├── block_test_util.go ├── builder_test.go ├── chain_test_util.go ├── init_test.go ├── integration │ ├── bash_rpc │ │ ├── account.json │ │ ├── create-account.sh │ │ ├── create-key.sh │ │ ├── key.json │ │ └── net-info.sh │ ├── main.go │ ├── run_test.go │ └── standard_transaction_test.go ├── mock │ ├── chain.go │ ├── crosschain_tx.go │ └── mempool.go ├── performance │ ├── mining_test.go │ └── rpc_test.go ├── protocol_test.go ├── protocol_test_util.go ├── rollback_test.go ├── subprotocol_test.go ├── tx_test_util.go ├── util.go ├── utxo_view │ ├── utxo_view_test.go │ └── utxo_view_test_util.go ├── wallet_test.go └── wallet_test_util.go ├── testutil ├── deepequal.go ├── deepequal_test.go ├── hex.go └── keys.go ├── toolbar ├── apinode │ ├── account.go │ ├── account_test.go │ ├── block.go │ ├── node.go │ ├── node_test.go │ ├── query.go │ ├── query_test.go │ └── transaction.go ├── common │ ├── address.go │ ├── config.go │ ├── consensus.go │ ├── db.go │ ├── http_util.go │ └── types.go ├── consensusreward │ ├── config │ │ └── config.go │ └── consensus_reward.go ├── federation │ ├── api │ │ ├── handler.go │ │ └── server.go │ ├── common │ │ ├── const.go │ │ └── util.go │ ├── config │ │ └── config.go │ ├── database │ │ ├── asset_store.go │ │ └── orm │ │ │ ├── asset.go │ │ │ ├── chain.go │ │ │ ├── cross_transaction.go │ │ │ └── cross_transaction_req.go │ ├── service │ │ └── node.go │ └── synchron │ │ ├── errors.go │ │ ├── mainchain_keeper.go │ │ └── sidechain_keeper.go ├── measure │ ├── README.md │ ├── method.go │ └── timer.go ├── mergeutxo │ └── merger_utxo.go ├── osssync │ ├── Dockerfile │ ├── README.md │ ├── cmd │ │ └── main.go │ ├── download │ │ ├── download.go │ │ └── oss.go │ ├── upload │ │ ├── config.go │ │ ├── oss.go │ │ └── upload.go │ └── util │ │ ├── file.go │ │ ├── gzip.go │ │ ├── infofile.go │ │ └── json.go ├── precognitive │ ├── api │ │ ├── handler.go │ │ └── server.go │ ├── common │ │ └── const.go │ ├── config │ │ └── config.go │ ├── database │ │ └── orm │ │ │ ├── node.go │ │ │ └── node_liveness.go │ └── monitor │ │ ├── connection.go │ │ ├── discover.go │ │ ├── mock.go │ │ ├── monitor.go │ │ └── stats.go ├── server │ ├── common.go │ ├── display.go │ ├── errors.go │ ├── handle.go │ ├── pagination.go │ └── response.go └── vote_reward │ ├── config │ └── config.go │ ├── database │ ├── dump_reward.sql │ └── orm │ │ ├── block_state.go │ │ └── utxo.go │ ├── settlementvotereward │ └── settlementreward.go │ └── synchron │ └── block_keeper.go ├── util └── util.go ├── vendor ├── github.com │ ├── aliyun │ │ └── aliyun-oss-go-sdk │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README-CN.md │ │ │ ├── README.md │ │ │ ├── oss │ │ │ ├── auth.go │ │ │ ├── bucket.go │ │ │ ├── bucket_credential_test.go │ │ │ ├── bucket_test.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── conf.go │ │ │ ├── conn.go │ │ │ ├── conn_test.go │ │ │ ├── const.go │ │ │ ├── crc.go │ │ │ ├── crc_test.go │ │ │ ├── crypto │ │ │ │ ├── aes_ctr.go │ │ │ │ ├── aes_ctr_cipher.go │ │ │ │ ├── aes_ctr_cipher_test.go │ │ │ │ ├── cipher.go │ │ │ │ ├── cipher_test.go │ │ │ │ ├── crypto_bucket.go │ │ │ │ ├── crypto_bucket_test.go │ │ │ │ ├── crypto_const.go │ │ │ │ ├── crypto_download.go │ │ │ │ ├── crypto_multicopy.go │ │ │ │ ├── crypto_multipart.go │ │ │ │ ├── crypto_multipart_test.go │ │ │ │ ├── crypto_type.go │ │ │ │ ├── crypto_upload.go │ │ │ │ ├── master_alikms_cipher.go │ │ │ │ ├── master_alikms_cipher_test.go │ │ │ │ ├── master_rsa_cipher.go │ │ │ │ └── master_rsa_cipher_test.go │ │ │ ├── download.go │ │ │ ├── download_test.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── limit_reader_1_6.go │ │ │ ├── limit_reader_1_7.go │ │ │ ├── livechannel.go │ │ │ ├── livechannel_test.go │ │ │ ├── mime.go │ │ │ ├── model.go │ │ │ ├── multicopy.go │ │ │ ├── multicopy_test.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ ├── progress.go │ │ │ ├── progress_test.go │ │ │ ├── redirect_1_6.go │ │ │ ├── redirect_1_7.go │ │ │ ├── select_csv_objcet_test.go │ │ │ ├── select_json_object_test.go │ │ │ ├── select_object.go │ │ │ ├── select_object_read_file_test.go │ │ │ ├── select_object_type.go │ │ │ ├── transport_1_6.go │ │ │ ├── transport_1_7.go │ │ │ ├── type.go │ │ │ ├── type_test.go │ │ │ ├── upload.go │ │ │ ├── upload_test.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ │ ├── sample.go │ │ │ ├── sample │ │ │ ├── BingWallpaper-2015-11-07.jpg │ │ │ ├── The Go Programming Language.html │ │ │ ├── append_object.go │ │ │ ├── archive.go │ │ │ ├── bucket_acl.go │ │ │ ├── bucket_cors.go │ │ │ ├── bucket_encryption.go │ │ │ ├── bucket_inventory.go │ │ │ ├── bucket_lifecycle.go │ │ │ ├── bucket_logging.go │ │ │ ├── bucket_policy.go │ │ │ ├── bucket_qosInfo.go │ │ │ ├── bucket_referer.go │ │ │ ├── bucket_requestpayment.go │ │ │ ├── bucket_website.go │ │ │ ├── cname_sample.go │ │ │ ├── comm.go │ │ │ ├── config.go │ │ │ ├── copy_object.go │ │ │ ├── create_bucket.go │ │ │ ├── delete_object.go │ │ │ ├── get_object.go │ │ │ ├── list_buckets.go │ │ │ ├── list_objects.go │ │ │ ├── livechannel.go │ │ │ ├── new_bucket.go │ │ │ ├── object_acl.go │ │ │ ├── object_meta.go │ │ │ ├── object_tagging.go │ │ │ ├── put_object.go │ │ │ ├── sample_data.csv │ │ │ ├── sample_json.json │ │ │ ├── sample_json_lines.json │ │ │ ├── select_object.go │ │ │ ├── sign_url.go │ │ │ ├── test-client-encryption-crypto-cpp-rsa.jpg │ │ │ ├── test-client-encryption-crypto-python-rsa.jpg │ │ │ └── test-client-encryption-src.jpg │ │ │ └── sample_crypto │ │ │ └── sample_crypto.go │ ├── btcsuite │ │ └── go-socks │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── socks │ │ │ ├── addr.go │ │ │ ├── conn.go │ │ │ └── dial.go │ ├── bytom │ │ ├── common │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── bech32 │ │ │ │ ├── bech32.go │ │ │ │ ├── bech32_test.go │ │ │ │ ├── doc.go │ │ │ │ └── example_test.go │ │ │ ├── bytes.go │ │ │ ├── sort.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── consensus │ │ │ ├── general.go │ │ │ └── general_test.go │ │ ├── crypto │ │ │ ├── crypto.go │ │ │ ├── ed25519 │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed25519_test.go │ │ │ │ ├── internal │ │ │ │ │ └── edwards25519 │ │ │ │ │ │ ├── chain_export.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ └── edwards25519.go │ │ │ │ └── testdata │ │ │ │ │ └── sign.input.gz │ │ │ ├── sha3pool │ │ │ │ └── pool.go │ │ │ └── sm3 │ │ │ │ ├── sm3.go │ │ │ │ └── sm3_test.go │ │ ├── encoding │ │ │ ├── blockchain │ │ │ │ └── blockchain.go │ │ │ └── bufpool │ │ │ │ └── bufpool.go │ │ ├── errors │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── stack.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ │ ├── math │ │ │ └── checked │ │ │ │ ├── checked.go │ │ │ │ └── checked_test.go │ │ └── protocol │ │ │ ├── bc │ │ │ ├── asset.go │ │ │ ├── asset_test.go │ │ │ ├── bc.pb.go │ │ │ ├── bc.proto │ │ │ ├── block.go │ │ │ ├── blockheader.go │ │ │ ├── coinbase.go │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── hash.go │ │ │ ├── issuance.go │ │ │ ├── mux.go │ │ │ ├── output.go │ │ │ ├── retirement.go │ │ │ ├── spend.go │ │ │ ├── tx.go │ │ │ ├── tx_status.go │ │ │ ├── tx_status_test.go │ │ │ ├── tx_test.go │ │ │ ├── txheader.go │ │ │ └── types │ │ │ │ ├── block.go │ │ │ │ ├── block_commitment.go │ │ │ │ ├── block_commitment_test.go │ │ │ │ ├── block_header.go │ │ │ │ ├── block_header_test.go │ │ │ │ ├── block_test.go │ │ │ │ ├── coinbase.go │ │ │ │ ├── issuance.go │ │ │ │ ├── map.go │ │ │ │ ├── map_test.go │ │ │ │ ├── merkle.go │ │ │ │ ├── merkle_test.go │ │ │ │ ├── output_commitment.go │ │ │ │ ├── output_commitment_test.go │ │ │ │ ├── spend.go │ │ │ │ ├── spend_commitment.go │ │ │ │ ├── spend_commitment_test.go │ │ │ │ ├── spend_test.go │ │ │ │ ├── transaction.go │ │ │ │ ├── transaction_test.go │ │ │ │ ├── txinput.go │ │ │ │ ├── txinput_test.go │ │ │ │ ├── txoutput.go │ │ │ │ └── txoutput_test.go │ │ │ └── vm │ │ │ ├── assemble.go │ │ │ ├── assemble_test.go │ │ │ ├── bitwise.go │ │ │ ├── bitwise_test.go │ │ │ ├── context.go │ │ │ ├── control.go │ │ │ ├── control_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── errors.go │ │ │ ├── introspection.go │ │ │ ├── introspection_test.go │ │ │ ├── numeric.go │ │ │ ├── numeric_test.go │ │ │ ├── ops.go │ │ │ ├── ops_test.go │ │ │ ├── pushdata.go │ │ │ ├── pushdata_test.go │ │ │ ├── splice.go │ │ │ ├── splice_test.go │ │ │ ├── stack.go │ │ │ ├── stack_test.go │ │ │ ├── types.go │ │ │ ├── types_test.go │ │ │ ├── vm.go │ │ │ ├── vm_test.go │ │ │ └── vmutil │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── script.go │ │ │ └── script_test.go │ ├── cenkalti │ │ └── backoff │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── context.go │ │ │ ├── exponential.go │ │ │ ├── retry.go │ │ │ ├── ticker.go │ │ │ └── tries.go │ ├── cespare │ │ └── cp │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── cp.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cov_report.sh │ │ │ ├── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── dumpcgo_test.go │ │ │ ├── dumpnocgo_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── internal_test.go │ │ │ ├── internalunsafe_test.go │ │ │ ├── spew.go │ │ │ ├── spew_test.go │ │ │ └── testdata │ │ │ │ └── dumpcgo.go │ │ │ └── test_coverage.txt │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── fsnotify_test.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── inotify_poller_test.go │ │ │ ├── inotify_test.go │ │ │ ├── integration_darwin_test.go │ │ │ ├── integration_test.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── gin-contrib │ │ └── sse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── sse-decoder.go │ │ │ ├── sse-encoder.go │ │ │ └── writer.go │ ├── gin-gonic │ │ └── gin │ │ │ ├── AUTHORS.md │ │ │ ├── BENCHMARKS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── binding │ │ │ ├── binding.go │ │ │ ├── default_validator.go │ │ │ ├── form.go │ │ │ ├── form_mapping.go │ │ │ ├── json.go │ │ │ ├── msgpack.go │ │ │ ├── protobuf.go │ │ │ ├── query.go │ │ │ └── xml.go │ │ │ ├── codecov.yml │ │ │ ├── context.go │ │ │ ├── context_appengine.go │ │ │ ├── coverage.sh │ │ │ ├── debug.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fs.go │ │ │ ├── gin.go │ │ │ ├── json │ │ │ ├── json.go │ │ │ └── jsoniter.go │ │ │ ├── logger.go │ │ │ ├── mode.go │ │ │ ├── path.go │ │ │ ├── recovery.go │ │ │ ├── render │ │ │ ├── data.go │ │ │ ├── html.go │ │ │ ├── json.go │ │ │ ├── msgpack.go │ │ │ ├── reader.go │ │ │ ├── redirect.go │ │ │ ├── render.go │ │ │ ├── text.go │ │ │ ├── xml.go │ │ │ └── yaml.go │ │ │ ├── response_writer.go │ │ │ ├── response_writer_1.7.go │ │ │ ├── response_writer_1.8.go │ │ │ ├── routergroup.go │ │ │ ├── test_helpers.go │ │ │ ├── tree.go │ │ │ ├── utils.go │ │ │ └── wercker.yml │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── .travis.yml │ │ │ ├── .travis │ │ │ ├── docker.cnf │ │ │ ├── gofmt.sh │ │ │ └── wait_mysql.sh │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── connection.go │ │ │ ├── connection_test.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── driver_test.go │ │ │ ├── dsn.go │ │ │ ├── dsn_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── fields.go │ │ │ ├── infile.go │ │ │ ├── packets.go │ │ │ ├── packets_test.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── statement_test.go │ │ │ ├── transaction.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ ├── golang │ │ ├── groupcache │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── byteview.go │ │ │ ├── byteview_test.go │ │ │ ├── consistenthash │ │ │ │ ├── consistenthash.go │ │ │ │ └── consistenthash_test.go │ │ │ ├── groupcache.go │ │ │ ├── groupcache_test.go │ │ │ ├── groupcachepb │ │ │ │ ├── groupcache.pb.go │ │ │ │ └── groupcache.proto │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── lru │ │ │ │ ├── lru.go │ │ │ │ └── lru_test.go │ │ │ ├── peers.go │ │ │ ├── singleflight │ │ │ │ ├── singleflight.go │ │ │ │ └── singleflight_test.go │ │ │ ├── sinks.go │ │ │ └── testpb │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ ├── protobuf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _conformance │ │ │ │ ├── Makefile │ │ │ │ ├── conformance.go │ │ │ │ └── conformance_proto │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ └── conformance.proto │ │ │ ├── descriptor │ │ │ │ ├── descriptor.go │ │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ │ ├── jsonpb.go │ │ │ │ ├── jsonpb_test.go │ │ │ │ └── jsonpb_test_proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ │ ├── more_test_objects.proto │ │ │ │ │ ├── test_objects.pb.go │ │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── all_test.go │ │ │ │ ├── any_test.go │ │ │ │ ├── clone.go │ │ │ │ ├── clone_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── equal.go │ │ │ │ ├── equal_test.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_test.go │ │ │ │ ├── lib.go │ │ │ │ ├── map_test.go │ │ │ │ ├── message_set.go │ │ │ │ ├── message_set_test.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto3_proto │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── proto3_test.go │ │ │ │ ├── size2_test.go │ │ │ │ ├── size_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── golden_test.go │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ ├── text.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── text_parser_test.go │ │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ └── descriptor.proto │ │ │ │ ├── doc.go │ │ │ │ ├── generator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── generator.go │ │ │ │ │ └── name_test.go │ │ │ │ ├── grpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── link_grpc.go │ │ │ │ ├── main.go │ │ │ │ ├── plugin │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ ├── plugin.pb.golden │ │ │ │ │ └── plugin.proto │ │ │ │ └── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── extension_base.proto │ │ │ │ │ ├── extension_extra.proto │ │ │ │ │ ├── extension_test.go │ │ │ │ │ ├── extension_user.proto │ │ │ │ │ ├── grpc.proto │ │ │ │ │ ├── imp.pb.go.golden │ │ │ │ │ ├── imp.proto │ │ │ │ │ ├── imp2.proto │ │ │ │ │ ├── imp3.proto │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── multi │ │ │ │ │ ├── multi1.proto │ │ │ │ │ ├── multi2.proto │ │ │ │ │ └── multi3.proto │ │ │ │ │ ├── my_test │ │ │ │ │ ├── test.pb.go │ │ │ │ │ ├── test.pb.go.golden │ │ │ │ │ └── test.proto │ │ │ │ │ └── proto3.proto │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ │ ├── any_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ ├── duration.pb.go │ │ │ │ └── duration.proto │ │ │ │ ├── duration_test.go │ │ │ │ ├── empty │ │ │ │ ├── empty.pb.go │ │ │ │ └── empty.proto │ │ │ │ ├── regen.sh │ │ │ │ ├── struct │ │ │ │ ├── struct.pb.go │ │ │ │ └── struct.proto │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ │ │ ├── timestamp_test.go │ │ │ │ └── wrappers │ │ │ │ ├── wrappers.pb.go │ │ │ │ └── wrappers.proto │ │ └── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── cmd │ │ │ └── snappytool │ │ │ │ └── main.cpp │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ ├── golden_test.go │ │ │ ├── snappy.go │ │ │ ├── snappy_test.go │ │ │ └── testdata │ │ │ ├── Mark.Twain-Tom.Sawyer.txt │ │ │ └── Mark.Twain-Tom.Sawyer.txt.rawsnappy │ ├── google │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── gorilla │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── client_server_test.go │ │ │ ├── client_test.go │ │ │ ├── compression.go │ │ │ ├── compression_test.go │ │ │ ├── conn.go │ │ │ ├── conn_broadcast_test.go │ │ │ ├── conn_test.go │ │ │ ├── conn_write.go │ │ │ ├── conn_write_legacy.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── examples │ │ │ ├── autobahn │ │ │ │ ├── README.md │ │ │ │ ├── fuzzingclient.json │ │ │ │ └── server.go │ │ │ ├── chat │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── home.html │ │ │ │ ├── hub.go │ │ │ │ └── main.go │ │ │ ├── command │ │ │ │ ├── README.md │ │ │ │ ├── home.html │ │ │ │ └── main.go │ │ │ ├── echo │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ └── server.go │ │ │ └── filewatch │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── mask_test.go │ │ │ ├── prepared.go │ │ │ ├── prepared_test.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── trace.go │ │ │ ├── trace_17.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ └── x_net_proxy.go │ ├── grandcat │ │ └── zeroconf │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ ├── proxyservice │ │ │ │ ├── .gitignore │ │ │ │ └── server.go │ │ │ ├── register │ │ │ │ ├── .gitignore │ │ │ │ └── server.go │ │ │ └── resolv │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ └── client.go │ │ │ ├── server.go │ │ │ ├── service.go │ │ │ └── utils.go │ ├── hashicorp │ │ ├── go-version │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── constraint.go │ │ │ ├── constraint_test.go │ │ │ ├── version.go │ │ │ ├── version_collection.go │ │ │ ├── version_collection_test.go │ │ │ └── version_test.go │ │ └── hcl │ │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── hcl.go │ │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ ├── ast_test.go │ │ │ │ └── walk.go │ │ │ ├── fmtcmd │ │ │ │ ├── fmtcmd.go │ │ │ │ ├── fmtcmd_test.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── .hidden.ignore │ │ │ │ │ ├── dir.ignore │ │ │ │ │ ├── file.ignore │ │ │ │ │ └── good.hcl │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ ├── error_test.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── array_comment.hcl │ │ │ │ │ ├── array_comment_2.hcl │ │ │ │ │ ├── assign_colon.hcl │ │ │ │ │ ├── assign_deep.hcl │ │ │ │ │ ├── comment.hcl │ │ │ │ │ ├── comment_crlf.hcl │ │ │ │ │ ├── comment_lastline.hcl │ │ │ │ │ ├── comment_single.hcl │ │ │ │ │ ├── complex.hcl │ │ │ │ │ ├── complex_crlf.hcl │ │ │ │ │ ├── complex_key.hcl │ │ │ │ │ ├── empty.hcl │ │ │ │ │ ├── git_crypt.hcl │ │ │ │ │ ├── key_without_value.hcl │ │ │ │ │ ├── list.hcl │ │ │ │ │ ├── list_comma.hcl │ │ │ │ │ ├── missing_braces.hcl │ │ │ │ │ ├── multiple.hcl │ │ │ │ │ ├── object_key_assign_without_value.hcl │ │ │ │ │ ├── object_key_assign_without_value2.hcl │ │ │ │ │ ├── object_key_assign_without_value3.hcl │ │ │ │ │ ├── object_key_without_value.hcl │ │ │ │ │ ├── object_list_comma.hcl │ │ │ │ │ ├── old.hcl │ │ │ │ │ ├── structure.hcl │ │ │ │ │ ├── structure_basic.hcl │ │ │ │ │ ├── structure_empty.hcl │ │ │ │ │ ├── types.hcl │ │ │ │ │ ├── unterminated_object.hcl │ │ │ │ │ └── unterminated_object_2.hcl │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ ├── printer.go │ │ │ │ ├── printer_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── comment.golden │ │ │ │ │ ├── comment.input │ │ │ │ │ ├── comment_aligned.golden │ │ │ │ │ ├── comment_aligned.input │ │ │ │ │ ├── comment_array.golden │ │ │ │ │ ├── comment_array.input │ │ │ │ │ ├── comment_crlf.input │ │ │ │ │ ├── comment_end_file.golden │ │ │ │ │ ├── comment_end_file.input │ │ │ │ │ ├── comment_multiline_indent.golden │ │ │ │ │ ├── comment_multiline_indent.input │ │ │ │ │ ├── comment_multiline_no_stanza.golden │ │ │ │ │ ├── comment_multiline_no_stanza.input │ │ │ │ │ ├── comment_multiline_stanza.golden │ │ │ │ │ ├── comment_multiline_stanza.input │ │ │ │ │ ├── comment_newline.golden │ │ │ │ │ ├── comment_newline.input │ │ │ │ │ ├── comment_object_multi.golden │ │ │ │ │ ├── comment_object_multi.input │ │ │ │ │ ├── comment_standalone.golden │ │ │ │ │ ├── comment_standalone.input │ │ │ │ │ ├── complexhcl.golden │ │ │ │ │ ├── complexhcl.input │ │ │ │ │ ├── empty_block.golden │ │ │ │ │ ├── empty_block.input │ │ │ │ │ ├── list.golden │ │ │ │ │ ├── list.input │ │ │ │ │ ├── list_comment.golden │ │ │ │ │ ├── list_comment.input │ │ │ │ │ ├── list_of_objects.golden │ │ │ │ │ ├── list_of_objects.input │ │ │ │ │ ├── multiline_string.golden │ │ │ │ │ ├── multiline_string.input │ │ │ │ │ ├── object_singleline.golden │ │ │ │ │ ├── object_singleline.input │ │ │ │ │ ├── object_with_heredoc.golden │ │ │ │ │ └── object_with_heredoc.input │ │ │ ├── scanner │ │ │ │ ├── scanner.go │ │ │ │ └── scanner_test.go │ │ │ ├── strconv │ │ │ │ ├── quote.go │ │ │ │ └── quote_test.go │ │ │ ├── test-fixtures │ │ │ │ ├── array_comment.hcl │ │ │ │ ├── assign_colon.hcl │ │ │ │ ├── comment.hcl │ │ │ │ ├── comment_single.hcl │ │ │ │ ├── complex.hcl │ │ │ │ ├── complex_key.hcl │ │ │ │ ├── empty.hcl │ │ │ │ ├── list.hcl │ │ │ │ ├── list_comma.hcl │ │ │ │ ├── multiple.hcl │ │ │ │ ├── old.hcl │ │ │ │ ├── structure.hcl │ │ │ │ ├── structure_basic.hcl │ │ │ │ ├── structure_empty.hcl │ │ │ │ └── types.hcl │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ ├── hcl_test.go │ │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── array.json │ │ │ │ │ ├── bad_input_128.json │ │ │ │ │ ├── bad_input_tf_8110.json │ │ │ │ │ ├── basic.json │ │ │ │ │ ├── good_input_tf_8110.json │ │ │ │ │ ├── object.json │ │ │ │ │ └── types.json │ │ │ ├── scanner │ │ │ │ ├── scanner.go │ │ │ │ └── scanner_test.go │ │ │ ├── test-fixtures │ │ │ │ ├── array.json │ │ │ │ ├── basic.json │ │ │ │ ├── object.json │ │ │ │ └── types.json │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ ├── lex.go │ │ │ ├── lex_test.go │ │ │ ├── parse.go │ │ │ ├── test-fixtures │ │ │ ├── assign_deep.hcl │ │ │ ├── basic.hcl │ │ │ ├── basic.json │ │ │ ├── basic_int_string.hcl │ │ │ ├── basic_squish.hcl │ │ │ ├── block_assign.hcl │ │ │ ├── decode_policy.hcl │ │ │ ├── decode_policy.json │ │ │ ├── decode_tf_variable.hcl │ │ │ ├── decode_tf_variable.json │ │ │ ├── empty.hcl │ │ │ ├── escape.hcl │ │ │ ├── escape_backslash.hcl │ │ │ ├── flat.hcl │ │ │ ├── float.hcl │ │ │ ├── float.json │ │ │ ├── git_crypt.hcl │ │ │ ├── interpolate.json │ │ │ ├── list_of_lists.hcl │ │ │ ├── list_of_maps.hcl │ │ │ ├── multiline.hcl │ │ │ ├── multiline.json │ │ │ ├── multiline_bad.hcl │ │ │ ├── multiline_indented.hcl │ │ │ ├── multiline_literal.hcl │ │ │ ├── multiline_literal_with_hil.hcl │ │ │ ├── multiline_no_eof.hcl │ │ │ ├── multiline_no_hanging_indent.hcl │ │ │ ├── multiline_no_marker.hcl │ │ │ ├── nested_block_comment.hcl │ │ │ ├── nested_provider_bad.hcl │ │ │ ├── null_strings.json │ │ │ ├── object_list.json │ │ │ ├── object_with_bool.hcl │ │ │ ├── scientific.hcl │ │ │ ├── scientific.json │ │ │ ├── slice_expand.hcl │ │ │ ├── structure.hcl │ │ │ ├── structure.json │ │ │ ├── structure2.hcl │ │ │ ├── structure2.json │ │ │ ├── structure_flat.json │ │ │ ├── structure_flatmap.hcl │ │ │ ├── structure_list.hcl │ │ │ ├── structure_list.json │ │ │ ├── structure_list_deep.json │ │ │ ├── structure_list_empty.json │ │ │ ├── structure_multi.hcl │ │ │ ├── structure_multi.json │ │ │ ├── terraform_heroku.hcl │ │ │ ├── terraform_heroku.json │ │ │ ├── terraform_variable_invalid.json │ │ │ ├── tfvars.hcl │ │ │ ├── unterminated_block_comment.hcl │ │ │ └── unterminated_brace.hcl │ │ │ └── testhelper │ │ │ └── unix2dos.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── jinzhu │ │ ├── gorm │ │ │ ├── .codeclimate.yml │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── association.go │ │ │ ├── association_test.go │ │ │ ├── callback.go │ │ │ ├── callback_create.go │ │ │ ├── callback_delete.go │ │ │ ├── callback_query.go │ │ │ ├── callback_query_preload.go │ │ │ ├── callback_row_query.go │ │ │ ├── callback_save.go │ │ │ ├── callback_system_test.go │ │ │ ├── callback_update.go │ │ │ ├── callbacks_test.go │ │ │ ├── create_test.go │ │ │ ├── customize_column_test.go │ │ │ ├── delete_test.go │ │ │ ├── dialect.go │ │ │ ├── dialect_common.go │ │ │ ├── dialect_mysql.go │ │ │ ├── dialect_postgres.go │ │ │ ├── dialect_sqlite3.go │ │ │ ├── dialects │ │ │ │ ├── mssql │ │ │ │ │ └── mssql.go │ │ │ │ ├── mysql │ │ │ │ │ └── mysql.go │ │ │ │ ├── postgres │ │ │ │ │ └── postgres.go │ │ │ │ └── sqlite │ │ │ │ │ └── sqlite.go │ │ │ ├── docker-compose.yml │ │ │ ├── embedded_struct_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── field.go │ │ │ ├── field_test.go │ │ │ ├── interface.go │ │ │ ├── join_table_handler.go │ │ │ ├── join_table_test.go │ │ │ ├── logger.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ ├── migration_test.go │ │ │ ├── model.go │ │ │ ├── model_struct.go │ │ │ ├── multi_primary_keys_test.go │ │ │ ├── naming.go │ │ │ ├── naming_test.go │ │ │ ├── pointer_test.go │ │ │ ├── polymorphic_test.go │ │ │ ├── preload_test.go │ │ │ ├── query_test.go │ │ │ ├── scaner_test.go │ │ │ ├── scope.go │ │ │ ├── scope_test.go │ │ │ ├── search.go │ │ │ ├── search_test.go │ │ │ ├── test_all.sh │ │ │ ├── update_test.go │ │ │ ├── utils.go │ │ │ └── wercker.yml │ │ └── inflection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflections.go │ │ │ ├── inflections_test.go │ │ │ └── wercker.yml │ ├── johngb │ │ └── langreg │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── datagen │ │ │ ├── language │ │ │ │ ├── genlang.go │ │ │ │ └── language_codes.csv │ │ │ └── region │ │ │ │ ├── genreg.go │ │ │ │ └── region_codes.csv │ │ │ ├── langreg.go │ │ │ ├── langreg_test.go │ │ │ ├── language.go │ │ │ ├── language_code_info.go │ │ │ ├── language_test.go │ │ │ ├── region.go │ │ │ ├── region_code_info.go │ │ │ ├── region_test.go │ │ │ └── wercker.yml │ ├── kr │ │ └── secureheader │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── example_test.go │ │ │ ├── heroku.go │ │ │ ├── public.go │ │ │ ├── secureheader.go │ │ │ └── secureheader_test.go │ ├── lestrrat-go │ │ ├── file-rotatelogs │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── event.go │ │ │ ├── example_test.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ └── option │ │ │ │ │ └── option.go │ │ │ ├── internal_test.go │ │ │ ├── options.go │ │ │ ├── rotatelogs.go │ │ │ └── rotatelogs_test.go │ │ └── strftime │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── internal_test.go │ │ │ ├── strftime.go │ │ │ ├── strftime_bench_test.go │ │ │ ├── strftime_test.go │ │ │ └── writer.go │ ├── magiconair │ │ └── properties │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assert │ │ │ ├── assert.go │ │ │ └── assert_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── integrate.go │ │ │ ├── integrate_test.go │ │ │ ├── lex.go │ │ │ ├── load.go │ │ │ ├── load_test.go │ │ │ ├── parser.go │ │ │ ├── properties.go │ │ │ ├── properties_test.go │ │ │ └── rangecheck.go │ ├── mattn │ │ └── go-isatty │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_linux_ppc64x.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_others_test.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_windows.go │ │ │ └── isatty_windows_test.go │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── acceptfunc.go │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── dnsutil │ │ │ ├── util.go │ │ │ └── util_test.go │ │ │ ├── doc.go │ │ │ ├── duplicate.go │ │ │ ├── duplicate_generate.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── labels.go │ │ │ ├── listen_go111.go │ │ │ ├── listen_go_not111.go │ │ │ ├── msg.go │ │ │ ├── msg_generate.go │ │ │ ├── msg_helpers.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── serve_mux.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── types_generate.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zduplicate.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ └── mapstructure │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── decode_hooks_test.go │ │ │ ├── error.go │ │ │ ├── mapstructure.go │ │ │ ├── mapstructure_benchmark_test.go │ │ │ ├── mapstructure_bugs_test.go │ │ │ ├── mapstructure_examples_test.go │ │ │ └── mapstructure_test.go │ ├── pborman │ │ └── uuid │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── node.go │ │ │ ├── seq_test.go │ │ │ ├── sql.go │ │ │ ├── sql_test.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── uuid_test.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pelletier │ │ └── go-toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmark.json │ │ │ ├── benchmark.sh │ │ │ ├── benchmark.toml │ │ │ ├── benchmark.yml │ │ │ ├── benchmark_test.go │ │ │ ├── cmd │ │ │ ├── test_program.go │ │ │ ├── tomljson │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ │ └── tomll │ │ │ │ └── main.go │ │ │ ├── doc.go │ │ │ ├── doc_test.go │ │ │ ├── example-crlf.toml │ │ │ ├── example.toml │ │ │ ├── fuzz.go │ │ │ ├── fuzz.sh │ │ │ ├── keysparsing.go │ │ │ ├── keysparsing_test.go │ │ │ ├── lexer.go │ │ │ ├── lexer_test.go │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── marshal_test.toml │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── position.go │ │ │ ├── position_test.go │ │ │ ├── query │ │ │ ├── doc.go │ │ │ ├── lexer.go │ │ │ ├── lexer_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ └── tokens.go │ │ │ ├── test.sh │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ ├── toml.go │ │ │ ├── toml_test.go │ │ │ ├── tomltree_create.go │ │ │ ├── tomltree_create_test.go │ │ │ ├── tomltree_write.go │ │ │ └── tomltree_write_test.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bench_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── example_test.go │ │ │ ├── format_test.go │ │ │ ├── stack.go │ │ │ └── stack_test.go │ ├── prometheus │ │ └── prometheus │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── util │ │ │ └── flock │ │ │ ├── flock.go │ │ │ ├── flock_plan9.go │ │ │ ├── flock_solaris.go │ │ │ ├── flock_unix.go │ │ │ └── flock_windows.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── alt_exit_test.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── example_basic_test.go │ │ │ ├── example_hook_test.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatter_bench_test.go │ │ │ ├── hook_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ ├── syslog │ │ │ │ ├── README.md │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ └── test │ │ │ │ ├── test.go │ │ │ │ └── test_test.go │ │ │ ├── json_formatter.go │ │ │ ├── json_formatter_test.go │ │ │ ├── logger.go │ │ │ ├── logger_bench_test.go │ │ │ ├── logrus.go │ │ │ ├── logrus_test.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ ├── spf13 │ │ ├── afero │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── afero.go │ │ │ ├── afero_test.go │ │ │ ├── appveyor.yml │ │ │ ├── basepath.go │ │ │ ├── basepath_test.go │ │ │ ├── cacheOnReadFs.go │ │ │ ├── composite_test.go │ │ │ ├── const_bsds.go │ │ │ ├── const_win_unix.go │ │ │ ├── copyOnWriteFs.go │ │ │ ├── copyOnWriteFs_test.go │ │ │ ├── httpFs.go │ │ │ ├── ioutil.go │ │ │ ├── ioutil_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── mem │ │ │ │ ├── dir.go │ │ │ │ ├── dirmap.go │ │ │ │ ├── file.go │ │ │ │ └── file_test.go │ │ │ ├── memmap.go │ │ │ ├── memmap_test.go │ │ │ ├── os.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── readonlyfs.go │ │ │ ├── regexpfs.go │ │ │ ├── ro_regexp_test.go │ │ │ ├── sftpfs │ │ │ │ ├── file.go │ │ │ │ ├── sftp.go │ │ │ │ └── sftp_test_go │ │ │ ├── unionFile.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── cast │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cast.go │ │ │ ├── cast_test.go │ │ │ └── caste.go │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── bash_completions_test.go │ │ │ ├── cobra.go │ │ │ ├── cobra │ │ │ │ ├── README.md │ │ │ │ ├── cmd │ │ │ │ │ ├── add.go │ │ │ │ │ ├── add_test.go │ │ │ │ │ ├── golden_test.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── init_test.go │ │ │ │ │ ├── license_agpl.go │ │ │ │ │ ├── license_apache_2.go │ │ │ │ │ ├── license_bsd_clause_2.go │ │ │ │ │ ├── license_bsd_clause_3.go │ │ │ │ │ ├── license_gpl_2.go │ │ │ │ │ ├── license_gpl_3.go │ │ │ │ │ ├── license_lgpl.go │ │ │ │ │ ├── license_mit.go │ │ │ │ │ ├── licenses.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── project_test.go │ │ │ │ │ ├── root.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── LICENSE.golden │ │ │ │ │ │ ├── main.go.golden │ │ │ │ │ │ ├── root.go.golden │ │ │ │ │ │ └── test.go.golden │ │ │ │ └── main.go │ │ │ ├── cobra_test.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_test.go │ │ │ ├── command_win.go │ │ │ ├── doc │ │ │ │ ├── cmd_test.go │ │ │ │ ├── man_docs.go │ │ │ │ ├── man_docs.md │ │ │ │ ├── man_docs_test.go │ │ │ │ ├── man_examples_test.go │ │ │ │ ├── md_docs.go │ │ │ │ ├── md_docs.md │ │ │ │ ├── md_docs_test.go │ │ │ │ ├── rest_docs.go │ │ │ │ ├── rest_docs.md │ │ │ │ ├── rest_docs_test.go │ │ │ │ ├── util.go │ │ │ │ ├── yaml_docs.go │ │ │ │ ├── yaml_docs.md │ │ │ │ └── yaml_docs_test.go │ │ │ ├── zsh_completions.go │ │ │ └── zsh_completions_test.go │ │ ├── jwalterweatherman │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── default_notepad.go │ │ │ ├── default_notepad_test.go │ │ │ ├── log_counter.go │ │ │ ├── notepad.go │ │ │ └── notepad_test.go │ │ ├── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bool_slice_test.go │ │ │ ├── bool_test.go │ │ │ ├── count.go │ │ │ ├── count_test.go │ │ │ ├── duration.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── golangflag_test.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── int_slice_test.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ip_slice_test.go │ │ │ ├── ip_test.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_array_test.go │ │ │ ├── string_slice.go │ │ │ ├── string_slice_test.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ ├── uint_slice.go │ │ │ ├── uint_slice_test.go │ │ │ └── verify │ │ │ │ ├── all.sh │ │ │ │ ├── gofmt.sh │ │ │ │ └── golint.sh │ │ └── viper │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── flags.go │ │ │ ├── flags_test.go │ │ │ ├── nohup.out │ │ │ ├── overrides_test.go │ │ │ ├── remote │ │ │ └── remote.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── viper.go │ │ │ └── viper_test.go │ ├── stretchr │ │ └── testify │ │ │ ├── .gitignore │ │ │ ├── .travis.gofmt.sh │ │ │ ├── .travis.gogenerate.sh │ │ │ ├── .travis.govet.sh │ │ │ ├── .travis.yml │ │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _codegen │ │ │ └── main.go │ │ │ ├── assert │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── assertions_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── forward_assertions_test.go │ │ │ ├── http_assertions.go │ │ │ └── http_assertions_test.go │ │ │ ├── doc.go │ │ │ ├── http │ │ │ ├── doc.go │ │ │ ├── test_response_writer.go │ │ │ └── test_round_tripper.go │ │ │ ├── mock │ │ │ ├── doc.go │ │ │ ├── mock.go │ │ │ └── mock_test.go │ │ │ ├── package_test.go │ │ │ ├── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── forward_requirements_test.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ ├── requirements.go │ │ │ └── requirements_test.go │ │ │ ├── suite │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ ├── suite.go │ │ │ └── suite_test.go │ │ │ └── vendor │ │ │ └── github.com │ │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── LICENSE │ │ │ │ └── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── format.go │ │ │ │ └── spew.go │ │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ ├── LICENSE │ │ │ │ └── difflib │ │ │ │ └── difflib.go │ │ │ └── stretchr │ │ │ └── objx │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── accessors.go │ │ │ ├── codegen │ │ │ ├── array-access.txt │ │ │ ├── index.html │ │ │ ├── template.txt │ │ │ └── types_list.txt │ │ │ ├── constants.go │ │ │ ├── conversions.go │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── mutations.go │ │ │ ├── security.go │ │ │ ├── tests.go │ │ │ ├── type_specific_codegen.go │ │ │ └── value.go │ ├── syndtr │ │ └── goleveldb │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── leveldb │ │ │ ├── batch.go │ │ │ ├── batch_test.go │ │ │ ├── bench_test.go │ │ │ ├── cache │ │ │ │ ├── bench_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ └── lru.go │ │ │ ├── comparer.go │ │ │ ├── comparer │ │ │ │ ├── bytes_comparer.go │ │ │ │ └── comparer.go │ │ │ ├── corrupt_test.go │ │ │ ├── db.go │ │ │ ├── db_compaction.go │ │ │ ├── db_iter.go │ │ │ ├── db_snapshot.go │ │ │ ├── db_state.go │ │ │ ├── db_test.go │ │ │ ├── db_transaction.go │ │ │ ├── db_util.go │ │ │ ├── db_write.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── external_test.go │ │ │ ├── filter.go │ │ │ ├── filter │ │ │ │ ├── bloom.go │ │ │ │ ├── bloom_test.go │ │ │ │ └── filter.go │ │ │ ├── iterator │ │ │ │ ├── array_iter.go │ │ │ │ ├── array_iter_test.go │ │ │ │ ├── indexed_iter.go │ │ │ │ ├── indexed_iter_test.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_suite_test.go │ │ │ │ ├── merged_iter.go │ │ │ │ └── merged_iter_test.go │ │ │ ├── journal │ │ │ │ ├── journal.go │ │ │ │ └── journal_test.go │ │ │ ├── key.go │ │ │ ├── key_test.go │ │ │ ├── leveldb_suite_test.go │ │ │ ├── memdb │ │ │ │ ├── bench_test.go │ │ │ │ ├── memdb.go │ │ │ │ ├── memdb_suite_test.go │ │ │ │ └── memdb_test.go │ │ │ ├── opt │ │ │ │ └── options.go │ │ │ ├── options.go │ │ │ ├── session.go │ │ │ ├── session_compaction.go │ │ │ ├── session_record.go │ │ │ ├── session_record_test.go │ │ │ ├── session_util.go │ │ │ ├── storage │ │ │ │ ├── file_storage.go │ │ │ │ ├── file_storage_nacl.go │ │ │ │ ├── file_storage_plan9.go │ │ │ │ ├── file_storage_solaris.go │ │ │ │ ├── file_storage_test.go │ │ │ │ ├── file_storage_unix.go │ │ │ │ ├── file_storage_windows.go │ │ │ │ ├── mem_storage.go │ │ │ │ ├── mem_storage_test.go │ │ │ │ └── storage.go │ │ │ ├── table.go │ │ │ ├── table │ │ │ │ ├── block_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── table.go │ │ │ │ ├── table_suite_test.go │ │ │ │ ├── table_test.go │ │ │ │ └── writer.go │ │ │ ├── testutil │ │ │ │ ├── db.go │ │ │ │ ├── ginkgo.go │ │ │ │ ├── iter.go │ │ │ │ ├── kv.go │ │ │ │ ├── kvtest.go │ │ │ │ ├── storage.go │ │ │ │ └── util.go │ │ │ ├── testutil_test.go │ │ │ ├── util.go │ │ │ ├── util │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_pool.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── crc32.go │ │ │ │ ├── hash.go │ │ │ │ ├── hash_test.go │ │ │ │ ├── range.go │ │ │ │ └── util.go │ │ │ ├── version.go │ │ │ └── version_test.go │ │ │ └── manualtest │ │ │ ├── dbstress │ │ │ ├── key.go │ │ │ └── main.go │ │ │ └── filelock │ │ │ └── main.go │ ├── tendermint │ │ ├── go-wire │ │ │ ├── .gitignore │ │ │ ├── byteslice.go │ │ │ ├── example_test.go │ │ │ ├── float.go │ │ │ ├── int.go │ │ │ ├── int_test.go │ │ │ ├── reflect.go │ │ │ ├── reflect_test.go │ │ │ ├── string.go │ │ │ ├── time.go │ │ │ ├── time_test.go │ │ │ ├── util.go │ │ │ └── wire.go │ │ └── tmlibs │ │ │ ├── cli │ │ │ ├── helper.go │ │ │ ├── setup.go │ │ │ └── setup_test.go │ │ │ ├── common │ │ │ ├── async.go │ │ │ ├── cmap.go │ │ │ ├── cmap_test.go │ │ │ ├── errors.go │ │ │ ├── math.go │ │ │ ├── os.go │ │ │ ├── random.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── string.go │ │ │ └── throttle_timer.go │ │ │ ├── flowrate │ │ │ ├── README.md │ │ │ ├── flowrate.go │ │ │ ├── io.go │ │ │ ├── io_test.go │ │ │ └── util.go │ │ │ └── log │ │ │ ├── logger.go │ │ │ └── nop_logger.go │ ├── toqueteos │ │ └── webbrowser │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── webbrowser.go │ └── ugorji │ │ └── go │ │ └── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── build.sh │ │ ├── cbor.go │ │ ├── cbor_test.go │ │ ├── codec_test.go │ │ ├── codecgen.go │ │ ├── codecgen │ │ ├── README.md │ │ ├── gen.go │ │ ├── goversion_pkgpath_gte_go111.go │ │ ├── goversion_pkgpath_lt_go111.go │ │ └── z.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-enc-chan.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── go.mod │ │ ├── goversion_arrayof_gte_go15.go │ │ ├── goversion_arrayof_lt_go15.go │ │ ├── goversion_makemap_gte_go19.go │ │ ├── goversion_makemap_lt_go19.go │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ ├── goversion_unsupported_lt_go14.go │ │ ├── goversion_vendor_eq_go15.go │ │ ├── goversion_vendor_eq_go16.go │ │ ├── goversion_vendor_gte_go17.go │ │ ├── goversion_vendor_lt_go15.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_test.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── mammoth-test.go.tmpl │ │ ├── mammoth2-test.go.tmpl │ │ ├── mammoth2_codecgen_generated_test.go │ │ ├── mammoth2_generated_test.go │ │ ├── mammoth_generated_test.go │ │ ├── msgpack.go │ │ ├── py_test.go │ │ ├── rpc.go │ │ ├── shared_test.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ ├── values_flex_test.go │ │ ├── values_test.go │ │ ├── xml.go │ │ └── z_all_test.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── acme_test.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── autocert_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── listener.go │ │ │ │ ├── renewal.go │ │ │ │ └── renewal_test.go │ │ │ ├── jws.go │ │ │ ├── jws_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2b_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2s_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ ├── chacha20poly1305_test.go │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ └── chacha_test.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1_test.go │ │ │ ├── builder.go │ │ │ ├── cryptobyte_test.go │ │ │ ├── example_test.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── ed25519_test.go │ │ │ ├── internal │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── md4 │ │ │ ├── example_test.go │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ ├── box_test.go │ │ │ │ └── example_test.go │ │ │ └── secretbox │ │ │ │ ├── example_test.go │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── bmp-string_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── rc2.go │ │ │ │ │ └── rc2_test.go │ │ │ ├── mac.go │ │ │ ├── mac_test.go │ │ │ ├── pbkdf.go │ │ │ ├── pbkdf_test.go │ │ │ ├── pkcs12.go │ │ │ ├── pkcs12_test.go │ │ │ └── safebags.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── keyring_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── knownhosts │ │ │ │ ├── knownhosts.go │ │ │ │ └── knownhosts_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── dial_unix_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── tea │ │ │ ├── cipher.go │ │ │ └── tea_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── ping_test.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ ├── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── codereview.cfg │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── env_unset.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksyscall.pl │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── syscall_test.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── creds_test.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_darwin_test.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_linux_test.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── env_unset.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── export_test.go │ │ │ ├── file_unix.go │ │ │ ├── flock.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── gccgo_linux_sparc64.go │ │ │ ├── linux │ │ │ │ ├── Dockerfile │ │ │ │ ├── mkall.go │ │ │ │ ├── mksysnum.pl │ │ │ │ └── types.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── mmap_unix_test.go │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_test.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_bsd_test.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_test.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_linux_test.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_solaris_test.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_test.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── dll_windows.go │ │ │ ├── env_unset.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── export_test.go │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── registry_test.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── svc │ │ │ ├── debug │ │ │ │ ├── log.go │ │ │ │ └── service.go │ │ │ ├── event.go │ │ │ ├── eventlog │ │ │ │ ├── install.go │ │ │ │ ├── log.go │ │ │ │ └── log_test.go │ │ │ ├── example │ │ │ │ ├── beep.go │ │ │ │ ├── install.go │ │ │ │ ├── main.go │ │ │ │ ├── manage.go │ │ │ │ └── service.go │ │ │ ├── go12.c │ │ │ ├── go12.go │ │ │ ├── go13.go │ │ │ ├── mgr │ │ │ │ ├── config.go │ │ │ │ ├── mgr.go │ │ │ │ ├── mgr_test.go │ │ │ │ └── service.go │ │ │ ├── security.go │ │ │ ├── service.go │ │ │ ├── svc_test.go │ │ │ ├── sys_386.s │ │ │ └── sys_amd64.s │ │ │ ├── syscall.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_windows.go │ │ │ ├── syscall_windows_test.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── example_test.go │ │ │ ├── fold.go │ │ │ ├── fold_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── icu.go │ │ │ ├── icu_test.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── map_test.go │ │ │ ├── tables.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cmd │ │ │ └── gotext │ │ │ │ ├── doc.go │ │ │ │ ├── extract.go │ │ │ │ ├── main.go │ │ │ │ └── message.go │ │ ├── codereview.cfg │ │ ├── collate │ │ │ ├── build │ │ │ │ ├── builder.go │ │ │ │ ├── builder_test.go │ │ │ │ ├── colelem.go │ │ │ │ ├── colelem_test.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_test.go │ │ │ │ ├── order.go │ │ │ │ ├── order_test.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ └── trie_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── export_test.go │ │ │ ├── index.go │ │ │ ├── maketables.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ ├── reg_test.go │ │ │ ├── sort.go │ │ │ ├── sort_test.go │ │ │ ├── table_test.go │ │ │ ├── tables.go │ │ │ └── tools │ │ │ │ └── colcmp │ │ │ │ ├── Makefile │ │ │ │ ├── chars.go │ │ │ │ ├── col.go │ │ │ │ ├── colcmp.go │ │ │ │ ├── darwin.go │ │ │ │ ├── gen.go │ │ │ │ └── icu.go │ │ ├── currency │ │ │ ├── common.go │ │ │ ├── currency.go │ │ │ ├── currency_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ ├── charmap_test.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── encoding_test.go │ │ │ ├── example_test.go │ │ │ ├── htmlindex │ │ │ │ ├── gen.go │ │ │ │ ├── htmlindex.go │ │ │ │ ├── htmlindex_test.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── ianaindex │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── ianaindex.go │ │ │ │ ├── ianaindex_test.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── enctest │ │ │ │ │ └── enctest.go │ │ │ │ ├── identifier │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── maketables.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── all_test.go │ │ │ │ ├── euckr.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── testdata │ │ │ │ ├── candide-gb18030.txt │ │ │ │ ├── candide-utf-16le.txt │ │ │ │ ├── candide-utf-32be.txt │ │ │ │ ├── candide-utf-8.txt │ │ │ │ ├── candide-windows-1252.txt │ │ │ │ ├── rashomon-euc-jp.txt │ │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ │ ├── rashomon-shift-jis.txt │ │ │ │ ├── rashomon-utf-8.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ │ ├── traditionalchinese │ │ │ │ ├── all_test.go │ │ │ │ ├── big5.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ ├── unicode.go │ │ │ │ ├── unicode_test.go │ │ │ │ └── utf32 │ │ │ │ ├── utf32.go │ │ │ │ └── utf32_test.go │ │ ├── feature │ │ │ └── plural │ │ │ │ ├── common.go │ │ │ │ ├── data_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ ├── plural.go │ │ │ │ ├── plural_test.go │ │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ │ ├── catmsg │ │ │ │ ├── catmsg.go │ │ │ │ ├── catmsg_test.go │ │ │ │ ├── codec.go │ │ │ │ ├── varint.go │ │ │ │ └── varint_test.go │ │ │ ├── colltab │ │ │ │ ├── collate_test.go │ │ │ │ ├── collelem.go │ │ │ │ ├── collelem_test.go │ │ │ │ ├── colltab.go │ │ │ │ ├── colltab_test.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_test.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── numeric.go │ │ │ │ ├── numeric_test.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ ├── trie_test.go │ │ │ │ ├── weighter.go │ │ │ │ └── weighter_test.go │ │ │ ├── export │ │ │ │ ├── README │ │ │ │ └── idna │ │ │ │ │ ├── common_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── gen_test.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── idna_test.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ ├── format │ │ │ │ └── format.go │ │ │ ├── gen.go │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── gen_test.go │ │ │ ├── internal.go │ │ │ ├── internal_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── number │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── decimal_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── number.go │ │ │ │ ├── number_test.go │ │ │ │ ├── pattern.go │ │ │ │ ├── pattern_test.go │ │ │ │ ├── roundingmode_string.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── stringset │ │ │ │ ├── set.go │ │ │ │ └── set_test.go │ │ │ ├── tables.go │ │ │ ├── tag │ │ │ │ ├── tag.go │ │ │ │ └── tag_test.go │ │ │ ├── testtext │ │ │ │ ├── codesize.go │ │ │ │ ├── flag.go │ │ │ │ ├── gc.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── go1_6.go │ │ │ │ ├── go1_7.go │ │ │ │ └── text.go │ │ │ ├── triegen │ │ │ │ ├── compact.go │ │ │ │ ├── data_test.go │ │ │ │ ├── example_compact_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen_test.go │ │ │ │ ├── print.go │ │ │ │ └── triegen.go │ │ │ ├── ucd │ │ │ │ ├── example_test.go │ │ │ │ ├── ucd.go │ │ │ │ └── ucd_test.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── Makefile │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ ├── coverage_test.go │ │ │ ├── display │ │ │ │ ├── dict.go │ │ │ │ ├── dict_test.go │ │ │ │ ├── display.go │ │ │ │ ├── display_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── lookup.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_index.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── httpexample_test.go │ │ │ ├── index.go │ │ │ ├── language.go │ │ │ ├── language_test.go │ │ │ ├── lookup.go │ │ │ ├── lookup_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── tables.go │ │ │ ├── tags.go │ │ │ └── testdata │ │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ │ └── GoLocaleMatcherTest.txt │ │ ├── message │ │ │ ├── catalog.go │ │ │ ├── catalog │ │ │ │ ├── catalog.go │ │ │ │ ├── catalog_test.go │ │ │ │ └── dict.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── fmt_test.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ └── print.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ ├── cond_test.go │ │ │ ├── example_test.go │ │ │ ├── runes.go │ │ │ └── runes_test.go │ │ ├── search │ │ │ ├── index.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── search.go │ │ │ └── tables.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bench_test.go │ │ │ │ ├── bidirule.go │ │ │ │ └── bidirule_test.go │ │ │ ├── doc.go │ │ │ └── precis │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── class.go │ │ │ │ ├── class_test.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── enforce_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profile_test.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables.go │ │ │ │ ├── tables_test.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ ├── examples_test.go │ │ │ ├── transform.go │ │ │ └── transform_test.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── core_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── ranges_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── tables_test.go │ │ │ │ └── trieval.go │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── cldr_test.go │ │ │ │ ├── collate.go │ │ │ │ ├── collate_test.go │ │ │ │ ├── data_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── makexml.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── slice_test.go │ │ │ │ └── xml.go │ │ │ ├── doc.go │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── composition_test.go │ │ │ │ ├── example_iter_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── forminfo_test.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── maketables.go │ │ │ │ ├── norm_test.go │ │ │ │ ├── normalize.go │ │ │ │ ├── normalize_test.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── readwriter_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ ├── transform_test.go │ │ │ │ ├── trie.go │ │ │ │ ├── triegen.go │ │ │ │ └── ucd_test.go │ │ │ ├── rangetable │ │ │ │ ├── gen.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_test.go │ │ │ │ ├── rangetable.go │ │ │ │ ├── rangetable_test.go │ │ │ │ └── tables.go │ │ │ └── runenames │ │ │ │ ├── bits.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_bits.go │ │ │ │ ├── runenames.go │ │ │ │ ├── runenames_test.go │ │ │ │ └── tables.go │ │ └── width │ │ │ ├── common_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── kind_string.go │ │ │ ├── runes_test.go │ │ │ ├── tables.go │ │ │ ├── tables_test.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── go.mod │ │ └── rate │ │ ├── rate.go │ │ └── rate_test.go ├── google.golang.org │ ├── genproto │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── googleapis │ │ │ ├── api │ │ │ │ ├── annotations │ │ │ │ │ ├── annotations.pb.go │ │ │ │ │ └── http.pb.go │ │ │ │ ├── authorization_config.pb.go │ │ │ │ ├── configchange │ │ │ │ │ └── config_change.pb.go │ │ │ │ ├── distribution │ │ │ │ │ └── distribution.pb.go │ │ │ │ ├── experimental.pb.go │ │ │ │ ├── httpbody │ │ │ │ │ └── httpbody.pb.go │ │ │ │ ├── label │ │ │ │ │ └── label.pb.go │ │ │ │ ├── metric │ │ │ │ │ └── metric.pb.go │ │ │ │ ├── monitoredres │ │ │ │ │ └── monitored_resource.pb.go │ │ │ │ ├── serviceconfig │ │ │ │ │ ├── auth.pb.go │ │ │ │ │ ├── backend.pb.go │ │ │ │ │ ├── billing.pb.go │ │ │ │ │ ├── consumer.pb.go │ │ │ │ │ ├── context.pb.go │ │ │ │ │ ├── control.pb.go │ │ │ │ │ ├── documentation.pb.go │ │ │ │ │ ├── endpoint.pb.go │ │ │ │ │ ├── log.pb.go │ │ │ │ │ ├── logging.pb.go │ │ │ │ │ ├── monitoring.pb.go │ │ │ │ │ ├── quota.pb.go │ │ │ │ │ ├── service.pb.go │ │ │ │ │ ├── source_info.pb.go │ │ │ │ │ ├── system_parameter.pb.go │ │ │ │ │ └── usage.pb.go │ │ │ │ ├── servicecontrol │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── check_error.pb.go │ │ │ │ │ │ ├── distribution.pb.go │ │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ │ ├── metric_value.pb.go │ │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ │ └── service_controller.pb.go │ │ │ │ └── servicemanagement │ │ │ │ │ └── v1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ └── servicemanager.pb.go │ │ │ ├── appengine │ │ │ │ ├── legacy │ │ │ │ │ └── audit_data.pb.go │ │ │ │ ├── logging │ │ │ │ │ └── v1 │ │ │ │ │ │ └── request_log.pb.go │ │ │ │ └── v1 │ │ │ │ │ ├── app_yaml.pb.go │ │ │ │ │ ├── appengine.pb.go │ │ │ │ │ ├── application.pb.go │ │ │ │ │ ├── deploy.pb.go │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ ├── location.pb.go │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ ├── service.pb.go │ │ │ │ │ └── version.pb.go │ │ │ ├── assistant │ │ │ │ └── embedded │ │ │ │ │ └── v1alpha1 │ │ │ │ │ └── embedded_assistant.pb.go │ │ │ ├── bigtable │ │ │ │ ├── admin │ │ │ │ │ ├── cluster │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── bigtable_cluster_data.pb.go │ │ │ │ │ │ │ ├── bigtable_cluster_service.pb.go │ │ │ │ │ │ │ └── bigtable_cluster_service_messages.pb.go │ │ │ │ │ ├── table │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── bigtable_table_data.pb.go │ │ │ │ │ │ │ ├── bigtable_table_service.pb.go │ │ │ │ │ │ │ └── bigtable_table_service_messages.pb.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── bigtable_instance_admin.pb.go │ │ │ │ │ │ ├── bigtable_table_admin.pb.go │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ │ └── table.pb.go │ │ │ │ ├── v1 │ │ │ │ │ ├── bigtable_data.pb.go │ │ │ │ │ ├── bigtable_service.pb.go │ │ │ │ │ └── bigtable_service_messages.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── bigtable.pb.go │ │ │ │ │ └── data.pb.go │ │ │ ├── bytestream │ │ │ │ └── bytestream.pb.go │ │ │ ├── cloud │ │ │ │ ├── audit │ │ │ │ │ └── audit_log.pb.go │ │ │ │ ├── billing │ │ │ │ │ └── v1 │ │ │ │ │ │ └── cloud_billing.pb.go │ │ │ │ ├── dataproc │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ │ └── operations.pb.go │ │ │ │ ├── functions │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ ├── functions.pb.go │ │ │ │ │ │ └── operations.pb.go │ │ │ │ ├── language │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ ├── ml │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ │ └── project_service.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ │ └── project_service.pb.go │ │ │ │ ├── runtimeconfig │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ │ └── runtimeconfig.pb.go │ │ │ │ ├── speech │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ ├── support │ │ │ │ │ ├── common │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ └── cloud_support.pb.go │ │ │ │ ├── videointelligence │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ └── vision │ │ │ │ │ └── v1 │ │ │ │ │ ├── geometry.pb.go │ │ │ │ │ ├── image_annotator.pb.go │ │ │ │ │ ├── text_annotation.pb.go │ │ │ │ │ └── web_detection.pb.go │ │ │ ├── container │ │ │ │ └── v1 │ │ │ │ │ └── cluster_service.pb.go │ │ │ ├── datastore │ │ │ │ ├── v1 │ │ │ │ │ ├── datastore.pb.go │ │ │ │ │ ├── entity.pb.go │ │ │ │ │ └── query.pb.go │ │ │ │ └── v1beta3 │ │ │ │ │ ├── datastore.pb.go │ │ │ │ │ ├── entity.pb.go │ │ │ │ │ └── query.pb.go │ │ │ ├── devtools │ │ │ │ ├── build │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── build_events.pb.go │ │ │ │ │ │ ├── build_status.pb.go │ │ │ │ │ │ └── publish_build_event.pb.go │ │ │ │ ├── cloudbuild │ │ │ │ │ └── v1 │ │ │ │ │ │ └── cloudbuild.pb.go │ │ │ │ ├── clouddebugger │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── controller.pb.go │ │ │ │ │ │ ├── data.pb.go │ │ │ │ │ │ └── debugger.pb.go │ │ │ │ ├── clouderrorreporting │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── error_group_service.pb.go │ │ │ │ │ │ ├── error_stats_service.pb.go │ │ │ │ │ │ └── report_errors_service.pb.go │ │ │ │ ├── cloudprofiler │ │ │ │ │ └── v2 │ │ │ │ │ │ └── profiler.pb.go │ │ │ │ ├── cloudtrace │ │ │ │ │ └── v1 │ │ │ │ │ │ └── trace.pb.go │ │ │ │ ├── remoteexecution │ │ │ │ │ └── v1test │ │ │ │ │ │ └── remote_execution.pb.go │ │ │ │ ├── source │ │ │ │ │ └── v1 │ │ │ │ │ │ └── source_context.pb.go │ │ │ │ └── sourcerepo │ │ │ │ │ └── v1 │ │ │ │ │ └── sourcerepo.pb.go │ │ │ ├── example │ │ │ │ └── library │ │ │ │ │ └── v1 │ │ │ │ │ └── library.pb.go │ │ │ ├── genomics │ │ │ │ ├── v1 │ │ │ │ │ ├── annotations.pb.go │ │ │ │ │ ├── cigar.pb.go │ │ │ │ │ ├── datasets.pb.go │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ ├── position.pb.go │ │ │ │ │ ├── range.pb.go │ │ │ │ │ ├── readalignment.pb.go │ │ │ │ │ ├── readgroup.pb.go │ │ │ │ │ ├── readgroupset.pb.go │ │ │ │ │ ├── reads.pb.go │ │ │ │ │ ├── references.pb.go │ │ │ │ │ └── variants.pb.go │ │ │ │ └── v1alpha2 │ │ │ │ │ └── pipelines.pb.go │ │ │ ├── iam │ │ │ │ ├── admin │ │ │ │ │ └── v1 │ │ │ │ │ │ └── iam.pb.go │ │ │ │ └── v1 │ │ │ │ │ ├── iam_policy.pb.go │ │ │ │ │ └── policy.pb.go │ │ │ ├── logging │ │ │ │ ├── type │ │ │ │ │ ├── http_request.pb.go │ │ │ │ │ └── log_severity.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ ├── logging.pb.go │ │ │ │ │ ├── logging_config.pb.go │ │ │ │ │ └── logging_metrics.pb.go │ │ │ ├── longrunning │ │ │ │ └── operations.pb.go │ │ │ ├── monitoring │ │ │ │ └── v3 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── group.pb.go │ │ │ │ │ ├── group_service.pb.go │ │ │ │ │ ├── metric.pb.go │ │ │ │ │ └── metric_service.pb.go │ │ │ ├── privacy │ │ │ │ └── dlp │ │ │ │ │ └── v2beta1 │ │ │ │ │ ├── dlp.pb.go │ │ │ │ │ └── storage.pb.go │ │ │ ├── pubsub │ │ │ │ ├── v1 │ │ │ │ │ └── pubsub.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ └── pubsub.pb.go │ │ │ ├── rpc │ │ │ │ ├── code │ │ │ │ │ └── code.pb.go │ │ │ │ ├── errdetails │ │ │ │ │ └── error_details.pb.go │ │ │ │ └── status │ │ │ │ │ └── status.pb.go │ │ │ ├── spanner │ │ │ │ ├── admin │ │ │ │ │ ├── database │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── spanner_database_admin.pb.go │ │ │ │ │ └── instance │ │ │ │ │ │ └── v1 │ │ │ │ │ │ └── spanner_instance_admin.pb.go │ │ │ │ └── v1 │ │ │ │ │ ├── keys.pb.go │ │ │ │ │ ├── mutation.pb.go │ │ │ │ │ ├── query_plan.pb.go │ │ │ │ │ ├── result_set.pb.go │ │ │ │ │ ├── spanner.pb.go │ │ │ │ │ ├── transaction.pb.go │ │ │ │ │ └── type.pb.go │ │ │ ├── storagetransfer │ │ │ │ └── v1 │ │ │ │ │ ├── transfer.pb.go │ │ │ │ │ └── transfer_types.pb.go │ │ │ ├── streetview │ │ │ │ └── publish │ │ │ │ │ └── v1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ ├── rpcmessages.pb.go │ │ │ │ │ └── streetview_publish.pb.go │ │ │ ├── tracing │ │ │ │ └── v1 │ │ │ │ │ └── trace.pb.go │ │ │ ├── type │ │ │ │ ├── color │ │ │ │ │ └── color.pb.go │ │ │ │ ├── date │ │ │ │ │ └── date.pb.go │ │ │ │ ├── dayofweek │ │ │ │ │ └── dayofweek.pb.go │ │ │ │ ├── latlng │ │ │ │ │ └── latlng.pb.go │ │ │ │ ├── money │ │ │ │ │ └── money.pb.go │ │ │ │ ├── postaladdress │ │ │ │ │ └── postal_address.pb.go │ │ │ │ └── timeofday │ │ │ │ │ └── timeofday.pb.go │ │ │ └── watcher │ │ │ │ └── v1 │ │ │ │ └── watch.pb.go │ │ ├── protobuf │ │ │ ├── api │ │ │ │ └── api.pb.go │ │ │ ├── field_mask │ │ │ │ └── field_mask.pb.go │ │ │ ├── ptype │ │ │ │ └── type.pb.go │ │ │ └── source_context │ │ │ │ └── source_context.pb.go │ │ ├── regen.go │ │ └── regen.sh │ └── grpc │ │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ ├── .please-update │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── Documentation │ │ ├── gomock-example.md │ │ ├── grpc-auth-support.md │ │ ├── grpc-metadata.md │ │ ├── server-reflection-tutorial.md │ │ └── versioning.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── backoff.go │ │ ├── backoff_test.go │ │ ├── balancer.go │ │ ├── balancer │ │ ├── balancer.go │ │ └── roundrobin │ │ │ ├── roundrobin.go │ │ │ └── roundrobin_test.go │ │ ├── balancer_conn_wrappers.go │ │ ├── balancer_switching_test.go │ │ ├── balancer_test.go │ │ ├── balancer_v1_wrapper.go │ │ ├── benchmark │ │ ├── benchmain │ │ │ └── main.go │ │ ├── benchmark.go │ │ ├── benchmark16_test.go │ │ ├── benchmark17_test.go │ │ ├── benchresult │ │ │ └── main.go │ │ ├── client │ │ │ └── main.go │ │ ├── grpc_testing │ │ │ ├── control.pb.go │ │ │ ├── control.proto │ │ │ ├── messages.pb.go │ │ │ ├── messages.proto │ │ │ ├── payloads.pb.go │ │ │ ├── payloads.proto │ │ │ ├── services.pb.go │ │ │ ├── services.proto │ │ │ ├── stats.pb.go │ │ │ └── stats.proto │ │ ├── latency │ │ │ ├── latency.go │ │ │ └── latency_test.go │ │ ├── primitives │ │ │ └── primitives_test.go │ │ ├── server │ │ │ └── main.go │ │ ├── stats │ │ │ ├── histogram.go │ │ │ ├── stats.go │ │ │ └── util.go │ │ └── worker │ │ │ ├── benchmark_client.go │ │ │ ├── benchmark_server.go │ │ │ ├── main.go │ │ │ └── util.go │ │ ├── call.go │ │ ├── call_test.go │ │ ├── clientconn.go │ │ ├── clientconn_test.go │ │ ├── codec.go │ │ ├── codec_benchmark_test.go │ │ ├── codec_test.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── connectivity │ │ └── connectivity.go │ │ ├── credentials │ │ ├── credentials.go │ │ ├── credentials_test.go │ │ ├── credentials_util_go17.go │ │ ├── credentials_util_go18.go │ │ ├── credentials_util_pre_go17.go │ │ └── oauth │ │ │ └── oauth.go │ │ ├── doc.go │ │ ├── examples │ │ ├── README.md │ │ ├── gotutorial.md │ │ ├── helloworld │ │ │ ├── greeter_client │ │ │ │ └── main.go │ │ │ ├── greeter_server │ │ │ │ └── main.go │ │ │ ├── helloworld │ │ │ │ ├── helloworld.pb.go │ │ │ │ └── helloworld.proto │ │ │ └── mock_helloworld │ │ │ │ ├── hw_mock.go │ │ │ │ └── hw_mock_test.go │ │ └── route_guide │ │ │ ├── README.md │ │ │ ├── client │ │ │ └── client.go │ │ │ ├── mock_routeguide │ │ │ ├── rg_mock.go │ │ │ └── rg_mock_test.go │ │ │ ├── routeguide │ │ │ ├── route_guide.pb.go │ │ │ └── route_guide.proto │ │ │ ├── server │ │ │ └── server.go │ │ │ └── testdata │ │ │ └── route_guide_db.json │ │ ├── go16.go │ │ ├── go17.go │ │ ├── grpclb.go │ │ ├── grpclb │ │ ├── grpc_lb_v1 │ │ │ ├── messages │ │ │ │ ├── messages.pb.go │ │ │ │ └── messages.proto │ │ │ └── service │ │ │ │ ├── service.pb.go │ │ │ │ └── service.proto │ │ └── grpclb_test.go │ │ ├── grpclog │ │ ├── glogger │ │ │ └── glogger.go │ │ ├── grpclog.go │ │ ├── logger.go │ │ ├── loggerv2.go │ │ └── loggerv2_test.go │ │ ├── health │ │ ├── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health.proto │ │ └── health.go │ │ ├── interceptor.go │ │ ├── internal │ │ └── internal.go │ │ ├── interop │ │ ├── client │ │ │ └── client.go │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── http2 │ │ │ └── negative_http2_client.go │ │ ├── server │ │ │ └── server.go │ │ └── test_utils.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ ├── metadata.go │ │ └── metadata_test.go │ │ ├── naming │ │ ├── dns_resolver.go │ │ ├── dns_resolver_test.go │ │ ├── go17.go │ │ ├── go17_test.go │ │ ├── go18.go │ │ ├── go18_test.go │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── picker_wrapper_test.go │ │ ├── pickfirst.go │ │ ├── pickfirst_test.go │ │ ├── proxy.go │ │ ├── proxy_test.go │ │ ├── reflection │ │ ├── README.md │ │ ├── grpc_reflection_v1alpha │ │ │ ├── reflection.pb.go │ │ │ └── reflection.proto │ │ ├── grpc_testing │ │ │ ├── proto2.pb.go │ │ │ ├── proto2.proto │ │ │ ├── proto2_ext.pb.go │ │ │ ├── proto2_ext.proto │ │ │ ├── proto2_ext2.pb.go │ │ │ ├── proto2_ext2.proto │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── grpc_testingv3 │ │ │ ├── testv3.pb.go │ │ │ └── testv3.proto │ │ ├── serverreflection.go │ │ └── serverreflection_test.go │ │ ├── resolver │ │ ├── dns │ │ │ ├── dns_resolver.go │ │ │ ├── dns_resolver_test.go │ │ │ ├── go17.go │ │ │ ├── go17_test.go │ │ │ ├── go18.go │ │ │ └── go18_test.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── passthrough │ │ │ └── passthrough.go │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── resolver_conn_wrapper_test.go │ │ ├── rpc_util.go │ │ ├── rpc_util_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── service_config.go │ │ ├── service_config_test.go │ │ ├── stats │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── handlers.go │ │ ├── stats.go │ │ └── stats_test.go │ │ ├── status │ │ ├── status.go │ │ └── status_test.go │ │ ├── stream.go │ │ ├── stress │ │ ├── client │ │ │ └── main.go │ │ ├── grpc_testing │ │ │ ├── metrics.pb.go │ │ │ └── metrics.proto │ │ └── metrics_client │ │ │ └── main.go │ │ ├── tap │ │ └── tap.go │ │ ├── test │ │ ├── bufconn │ │ │ ├── bufconn.go │ │ │ └── bufconn_test.go │ │ ├── codec_perf │ │ │ ├── perf.pb.go │ │ │ └── perf.proto │ │ ├── end2end_test.go │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── leakcheck │ │ │ ├── leakcheck.go │ │ │ └── leakcheck_test.go │ │ ├── race.go │ │ └── servertester.go │ │ ├── testdata │ │ ├── server1.key │ │ └── testdata.go │ │ ├── trace.go │ │ ├── transport │ │ ├── bdp_estimator.go │ │ ├── control.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── handler_server_test.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ ├── http_util_test.go │ │ ├── log.go │ │ ├── transport.go │ │ └── transport_test.go │ │ └── vet.sh └── gopkg.in │ ├── fatih │ └── set.v0 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── set.go │ │ ├── set_nots.go │ │ └── set_ts.go │ ├── go-playground │ └── validator.v8 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── baked_in.go │ │ ├── benchmarks_test.go │ │ ├── cache.go │ │ ├── doc.go │ │ ├── examples │ │ ├── custom │ │ │ └── custom.go │ │ ├── simple │ │ │ └── simple.go │ │ └── struct-level │ │ │ └── struct_level.go │ │ ├── examples_test.go │ │ ├── logo.png │ │ ├── regexes.go │ │ ├── util.go │ │ ├── validator.go │ │ └── validator_test.go │ ├── karalabe │ └── cookiejar.v2 │ │ └── collections │ │ └── prque │ │ ├── prque.go │ │ └── sstack.go │ └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── example_embedded_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── version ├── version.go └── version_test.go └── wallet ├── annotated.go ├── indexer.go ├── mnemonic ├── mnemonic.go ├── mnemonic_test.go └── wordlists │ ├── chinese_simplified.go │ ├── chinese_traditional.go │ ├── english.go │ ├── italian.go │ ├── japanese.go │ ├── korean.go │ └── spanish.go ├── recovery.go ├── recovery_test.go ├── store.go ├── unconfirmed.go ├── unconfirmed_test.go ├── utxo.go ├── utxo_test.go ├── wallet.go └── wallet_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/README.md -------------------------------------------------------------------------------- /accesstoken/accesstoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/accesstoken/accesstoken.go -------------------------------------------------------------------------------- /accesstoken/accesstoken_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/accesstoken/accesstoken_test.go -------------------------------------------------------------------------------- /account/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/accounts.go -------------------------------------------------------------------------------- /account/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/builder.go -------------------------------------------------------------------------------- /account/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/builder_test.go -------------------------------------------------------------------------------- /account/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/image.go -------------------------------------------------------------------------------- /account/indexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/indexer.go -------------------------------------------------------------------------------- /account/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/store.go -------------------------------------------------------------------------------- /account/utxo_keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/utxo_keeper.go -------------------------------------------------------------------------------- /account/utxo_keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/account/utxo_keeper_test.go -------------------------------------------------------------------------------- /api/accesstokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/accesstokens.go -------------------------------------------------------------------------------- /api/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/accounts.go -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/api.go -------------------------------------------------------------------------------- /api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/api_test.go -------------------------------------------------------------------------------- /api/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/assets.go -------------------------------------------------------------------------------- /api/bbft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/bbft.go -------------------------------------------------------------------------------- /api/block_retrieve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/block_retrieve.go -------------------------------------------------------------------------------- /api/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/compile.go -------------------------------------------------------------------------------- /api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/errors.go -------------------------------------------------------------------------------- /api/hsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/hsm.go -------------------------------------------------------------------------------- /api/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/message.go -------------------------------------------------------------------------------- /api/miner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/miner.go -------------------------------------------------------------------------------- /api/nodeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/nodeinfo.go -------------------------------------------------------------------------------- /api/page_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/page_util.go -------------------------------------------------------------------------------- /api/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/program.go -------------------------------------------------------------------------------- /api/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/query.go -------------------------------------------------------------------------------- /api/receivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/receivers.go -------------------------------------------------------------------------------- /api/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/request.go -------------------------------------------------------------------------------- /api/transact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/transact.go -------------------------------------------------------------------------------- /api/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/wallet.go -------------------------------------------------------------------------------- /api/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/api/websocket.go -------------------------------------------------------------------------------- /application/mov/common/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/common/type.go -------------------------------------------------------------------------------- /application/mov/common/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/common/type_test.go -------------------------------------------------------------------------------- /application/mov/common/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/common/util.go -------------------------------------------------------------------------------- /application/mov/contract/contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/contract/contract.go -------------------------------------------------------------------------------- /application/mov/database/mov_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/database/mov_store.go -------------------------------------------------------------------------------- /application/mov/match/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/match/engine.go -------------------------------------------------------------------------------- /application/mov/match/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/match/engine_test.go -------------------------------------------------------------------------------- /application/mov/match/fee_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/match/fee_strategy.go -------------------------------------------------------------------------------- /application/mov/match/order_book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/match/order_book.go -------------------------------------------------------------------------------- /application/mov/match_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/match_collector.go -------------------------------------------------------------------------------- /application/mov/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/mock/mock.go -------------------------------------------------------------------------------- /application/mov/mock/mock_mov_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/mock/mock_mov_store.go -------------------------------------------------------------------------------- /application/mov/mov_core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/mov_core.go -------------------------------------------------------------------------------- /application/mov/mov_core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/application/mov/mov_core_test.go -------------------------------------------------------------------------------- /asset/annotate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/asset/annotate.go -------------------------------------------------------------------------------- /asset/asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/asset/asset.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/image.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/image_test.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/key.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/keycache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/keycache.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/keycache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/keycache_test.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/pseudohsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/pseudohsm.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/pseudohsm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/pseudohsm_test.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/testdata/keystore/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blockchain/pseudohsm/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/watch.go -------------------------------------------------------------------------------- /blockchain/pseudohsm/watch_fallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/pseudohsm/watch_fallback.go -------------------------------------------------------------------------------- /blockchain/query/annotated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/query/annotated.go -------------------------------------------------------------------------------- /blockchain/rpc/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/rpc/rpc.go -------------------------------------------------------------------------------- /blockchain/rpc/rpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/rpc/rpc_test.go -------------------------------------------------------------------------------- /blockchain/signers/signers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/signers/signers.go -------------------------------------------------------------------------------- /blockchain/txbuilder/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/actions.go -------------------------------------------------------------------------------- /blockchain/txbuilder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/builder.go -------------------------------------------------------------------------------- /blockchain/txbuilder/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/constraint.go -------------------------------------------------------------------------------- /blockchain/txbuilder/data_witness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/data_witness.go -------------------------------------------------------------------------------- /blockchain/txbuilder/estimate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/estimate.go -------------------------------------------------------------------------------- /blockchain/txbuilder/estimate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/estimate_test.go -------------------------------------------------------------------------------- /blockchain/txbuilder/finalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/finalize.go -------------------------------------------------------------------------------- /blockchain/txbuilder/txbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/txbuilder.go -------------------------------------------------------------------------------- /blockchain/txbuilder/txbuilder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/txbuilder_test.go -------------------------------------------------------------------------------- /blockchain/txbuilder/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/types.go -------------------------------------------------------------------------------- /blockchain/txbuilder/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/types_test.go -------------------------------------------------------------------------------- /blockchain/txbuilder/witness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/witness.go -------------------------------------------------------------------------------- /blockchain/txbuilder/witness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/blockchain/txbuilder/witness_test.go -------------------------------------------------------------------------------- /cmd/consensusreward/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/consensusreward/main.go -------------------------------------------------------------------------------- /cmd/consensusreward/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/consensusreward/sample.json -------------------------------------------------------------------------------- /cmd/fedd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/fedd/main.go -------------------------------------------------------------------------------- /cmd/precognitive/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/precognitive/main.go -------------------------------------------------------------------------------- /cmd/utxomerge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/utxomerge/README.md -------------------------------------------------------------------------------- /cmd/utxomerge/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/utxomerge/main.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/accesstoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/accesstoken.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/account.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/asset.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/block.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/key.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/mining.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/mining.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/net.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/program.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/template.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/transaction.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/txfeed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/txfeed.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/util.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/vaporcli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/vaporcli.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/version.go -------------------------------------------------------------------------------- /cmd/vaporcli/commands/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/commands/wallet.go -------------------------------------------------------------------------------- /cmd/vaporcli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vaporcli/main.go -------------------------------------------------------------------------------- /cmd/vapord/commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vapord/commands/init.go -------------------------------------------------------------------------------- /cmd/vapord/commands/rollback_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vapord/commands/rollback_node.go -------------------------------------------------------------------------------- /cmd/vapord/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vapord/commands/root.go -------------------------------------------------------------------------------- /cmd/vapord/commands/run_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vapord/commands/run_node.go -------------------------------------------------------------------------------- /cmd/vapord/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vapord/commands/version.go -------------------------------------------------------------------------------- /cmd/vapord/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/vapord/main.go -------------------------------------------------------------------------------- /cmd/votereward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/votereward/README.md -------------------------------------------------------------------------------- /cmd/votereward/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/cmd/votereward/main.go -------------------------------------------------------------------------------- /common/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/address.go -------------------------------------------------------------------------------- /common/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/address_test.go -------------------------------------------------------------------------------- /common/arithmetic/calculate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/arithmetic/calculate.go -------------------------------------------------------------------------------- /common/bech32/bech32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/bech32/bech32.go -------------------------------------------------------------------------------- /common/bech32/bech32_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/bech32/bech32_test.go -------------------------------------------------------------------------------- /common/bech32/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/bech32/doc.go -------------------------------------------------------------------------------- /common/bech32/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/bech32/example_test.go -------------------------------------------------------------------------------- /common/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/bytes.go -------------------------------------------------------------------------------- /common/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/compression/compression.go -------------------------------------------------------------------------------- /common/compression/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/compression/snappy.go -------------------------------------------------------------------------------- /common/concurrent_lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/concurrent_lru.go -------------------------------------------------------------------------------- /common/crossin_asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/crossin_asset.go -------------------------------------------------------------------------------- /common/ordered_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/ordered_set.go -------------------------------------------------------------------------------- /common/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/types.go -------------------------------------------------------------------------------- /common/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/common/types_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/federation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/config/federation.go -------------------------------------------------------------------------------- /config/federation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/config/federation_test.go -------------------------------------------------------------------------------- /config/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/config/genesis.go -------------------------------------------------------------------------------- /config/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/config/toml.go -------------------------------------------------------------------------------- /config/toml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/config/toml_test.go -------------------------------------------------------------------------------- /consensus/general.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/consensus/general.go -------------------------------------------------------------------------------- /consensus/general_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/consensus/general_test.go -------------------------------------------------------------------------------- /consensus/segwit/segwit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/consensus/segwit/segwit.go -------------------------------------------------------------------------------- /consensus/segwit/segwit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/consensus/segwit/segwit_test.go -------------------------------------------------------------------------------- /consensus/server_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/consensus/server_flag.go -------------------------------------------------------------------------------- /consensus/server_flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/consensus/server_flag_test.go -------------------------------------------------------------------------------- /crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/crypto.go -------------------------------------------------------------------------------- /crypto/csp/csp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/csp/csp.go -------------------------------------------------------------------------------- /crypto/ed25519/chainkd/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/chainkd/bench_test.go -------------------------------------------------------------------------------- /crypto/ed25519/chainkd/chainkd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/chainkd/chainkd.go -------------------------------------------------------------------------------- /crypto/ed25519/chainkd/chainkd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/chainkd/chainkd_test.go -------------------------------------------------------------------------------- /crypto/ed25519/chainkd/expanded_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/chainkd/expanded_key.go -------------------------------------------------------------------------------- /crypto/ed25519/chainkd/serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/chainkd/serialize.go -------------------------------------------------------------------------------- /crypto/ed25519/chainkd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/chainkd/util.go -------------------------------------------------------------------------------- /crypto/ed25519/ecmath/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/ecmath/point.go -------------------------------------------------------------------------------- /crypto/ed25519/ecmath/point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/ecmath/point_test.go -------------------------------------------------------------------------------- /crypto/ed25519/ecmath/scalar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/ecmath/scalar.go -------------------------------------------------------------------------------- /crypto/ed25519/ed25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/ed25519.go -------------------------------------------------------------------------------- /crypto/ed25519/ed25519_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/ed25519_test.go -------------------------------------------------------------------------------- /crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /crypto/randentropy/rand_entropy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/randentropy/rand_entropy.go -------------------------------------------------------------------------------- /crypto/sha3pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/crypto/sha3pool/pool.go -------------------------------------------------------------------------------- /dashboard/dashboard/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/dashboard/dashboard/dashboard.go -------------------------------------------------------------------------------- /dashboard/equity/equity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/dashboard/equity/equity.go -------------------------------------------------------------------------------- /database/account_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/account_store.go -------------------------------------------------------------------------------- /database/account_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/account_store_test.go -------------------------------------------------------------------------------- /database/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/cache.go -------------------------------------------------------------------------------- /database/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/cache_test.go -------------------------------------------------------------------------------- /database/leveldb/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/leveldb/LICENSE.md -------------------------------------------------------------------------------- /database/leveldb/README.md: -------------------------------------------------------------------------------- 1 | TODO: syndtr/goleveldb should be replaced with actual LevelDB instance 2 | -------------------------------------------------------------------------------- /database/leveldb/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/leveldb/db.go -------------------------------------------------------------------------------- /database/leveldb/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/leveldb/db_test.go -------------------------------------------------------------------------------- /database/leveldb/go_level_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/leveldb/go_level_db.go -------------------------------------------------------------------------------- /database/leveldb/go_level_db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/leveldb/go_level_db_test.go -------------------------------------------------------------------------------- /database/leveldb/mem_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/leveldb/mem_db.go -------------------------------------------------------------------------------- /database/leveldb/mem_db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/leveldb/mem_db_test.go -------------------------------------------------------------------------------- /database/storage/storage.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/storage/storage.pb.go -------------------------------------------------------------------------------- /database/storage/storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/storage/storage.proto -------------------------------------------------------------------------------- /database/storage/utxo_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/storage/utxo_entry.go -------------------------------------------------------------------------------- /database/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/store.go -------------------------------------------------------------------------------- /database/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/store_test.go -------------------------------------------------------------------------------- /database/utxo_view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/utxo_view.go -------------------------------------------------------------------------------- /database/utxo_view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/utxo_view_test.go -------------------------------------------------------------------------------- /database/wallet_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/wallet_store.go -------------------------------------------------------------------------------- /database/wallet_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/database/wallet_store_test.go -------------------------------------------------------------------------------- /docker/fed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/fed -------------------------------------------------------------------------------- /docker/vapor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapor -------------------------------------------------------------------------------- /docker/vapord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapord/README.md -------------------------------------------------------------------------------- /docker/vapord/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapord/config.toml -------------------------------------------------------------------------------- /docker/vapord/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapord/deploy.sh -------------------------------------------------------------------------------- /docker/vapord/docker-compose.yml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapord/docker-compose.yml.tpl -------------------------------------------------------------------------------- /docker/vapord/federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapord/federation.json -------------------------------------------------------------------------------- /docker/vapord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapord/supervisord.conf -------------------------------------------------------------------------------- /docker/vapord/vapord.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docker/vapord/vapord.Dockerfile -------------------------------------------------------------------------------- /docs/Running-in-Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docs/Running-in-Docker.md -------------------------------------------------------------------------------- /docs/cross-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docs/cross-chain.md -------------------------------------------------------------------------------- /docs/federation/README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docs/federation/README-en.md -------------------------------------------------------------------------------- /docs/federation/README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docs/federation/README-zh.md -------------------------------------------------------------------------------- /docs/precognitive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docs/precognitive/README.md -------------------------------------------------------------------------------- /docs/precognitive/config_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docs/precognitive/config_example.json -------------------------------------------------------------------------------- /docs/vote/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/docs/vote/read.md -------------------------------------------------------------------------------- /encoding/blockchain/blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/encoding/blockchain/blockchain.go -------------------------------------------------------------------------------- /encoding/bufpool/bufpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/encoding/bufpool/bufpool.go -------------------------------------------------------------------------------- /encoding/json/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/encoding/json/duration.go -------------------------------------------------------------------------------- /encoding/json/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/encoding/json/duration_test.go -------------------------------------------------------------------------------- /encoding/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/encoding/json/json.go -------------------------------------------------------------------------------- /env/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/env/Readme -------------------------------------------------------------------------------- /env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/env/env.go -------------------------------------------------------------------------------- /env/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/env/env_test.go -------------------------------------------------------------------------------- /equity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/Makefile -------------------------------------------------------------------------------- /equity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/README.md -------------------------------------------------------------------------------- /equity/compiler/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/ast.go -------------------------------------------------------------------------------- /equity/compiler/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/builder.go -------------------------------------------------------------------------------- /equity/compiler/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/builder_test.go -------------------------------------------------------------------------------- /equity/compiler/builtins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/builtins.go -------------------------------------------------------------------------------- /equity/compiler/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/checks.go -------------------------------------------------------------------------------- /equity/compiler/checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/checks_test.go -------------------------------------------------------------------------------- /equity/compiler/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/compile.go -------------------------------------------------------------------------------- /equity/compiler/compile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/compile_test.go -------------------------------------------------------------------------------- /equity/compiler/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/doc.go -------------------------------------------------------------------------------- /equity/compiler/environ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/environ.go -------------------------------------------------------------------------------- /equity/compiler/optimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/optimize.go -------------------------------------------------------------------------------- /equity/compiler/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/parse.go -------------------------------------------------------------------------------- /equity/compiler/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/stack.go -------------------------------------------------------------------------------- /equity/compiler/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/compiler/types.go -------------------------------------------------------------------------------- /equity/equity/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/equity/main.go -------------------------------------------------------------------------------- /equity/equity/util/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/equity/util/instance.go -------------------------------------------------------------------------------- /equity/equity/util/shift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/equity/equity/util/shift.go -------------------------------------------------------------------------------- /errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/errors/doc.go -------------------------------------------------------------------------------- /errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/errors/errors.go -------------------------------------------------------------------------------- /errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/errors/errors_test.go -------------------------------------------------------------------------------- /errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/errors/stack.go -------------------------------------------------------------------------------- /errors/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/errors/writer.go -------------------------------------------------------------------------------- /errors/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/errors/writer_test.go -------------------------------------------------------------------------------- /event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/event/event.go -------------------------------------------------------------------------------- /event/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/event/event_test.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/log/log.go -------------------------------------------------------------------------------- /math/algorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/math/algorithm.go -------------------------------------------------------------------------------- /math/checked/checked.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/math/checked/checked.go -------------------------------------------------------------------------------- /math/checked/checked_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/math/checked/checked_test.go -------------------------------------------------------------------------------- /net/http/authn/authn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/authn/authn.go -------------------------------------------------------------------------------- /net/http/authn/authn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/authn/authn_test.go -------------------------------------------------------------------------------- /net/http/authn/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/authn/context.go -------------------------------------------------------------------------------- /net/http/gzip/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/gzip/gzip.go -------------------------------------------------------------------------------- /net/http/gzip/gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/gzip/gzip_test.go -------------------------------------------------------------------------------- /net/http/httperror/httperror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httperror/httperror.go -------------------------------------------------------------------------------- /net/http/httperror/httperror_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httperror/httperror_test.go -------------------------------------------------------------------------------- /net/http/httpjson/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httpjson/context.go -------------------------------------------------------------------------------- /net/http/httpjson/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httpjson/context_test.go -------------------------------------------------------------------------------- /net/http/httpjson/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httpjson/doc.go -------------------------------------------------------------------------------- /net/http/httpjson/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httpjson/handler.go -------------------------------------------------------------------------------- /net/http/httpjson/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httpjson/handler_test.go -------------------------------------------------------------------------------- /net/http/httpjson/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httpjson/io.go -------------------------------------------------------------------------------- /net/http/httpjson/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/httpjson/io_test.go -------------------------------------------------------------------------------- /net/http/static/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/http/static/static.go -------------------------------------------------------------------------------- /net/websocket/wsclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/websocket/wsclient.go -------------------------------------------------------------------------------- /net/websocket/wsjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/websocket/wsjson.go -------------------------------------------------------------------------------- /net/websocket/wsnotificationmaneger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/net/websocket/wsnotificationmaneger.go -------------------------------------------------------------------------------- /netsync/chainmgr/block_keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/block_keeper.go -------------------------------------------------------------------------------- /netsync/chainmgr/block_keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/block_keeper_test.go -------------------------------------------------------------------------------- /netsync/chainmgr/block_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/block_process.go -------------------------------------------------------------------------------- /netsync/chainmgr/block_process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/block_process_test.go -------------------------------------------------------------------------------- /netsync/chainmgr/fast_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/fast_sync.go -------------------------------------------------------------------------------- /netsync/chainmgr/fast_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/fast_sync_test.go -------------------------------------------------------------------------------- /netsync/chainmgr/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/handle.go -------------------------------------------------------------------------------- /netsync/chainmgr/msg_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/msg_fetcher.go -------------------------------------------------------------------------------- /netsync/chainmgr/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/peers.go -------------------------------------------------------------------------------- /netsync/chainmgr/peers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/peers_test.go -------------------------------------------------------------------------------- /netsync/chainmgr/protocol_reactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/protocol_reactor.go -------------------------------------------------------------------------------- /netsync/chainmgr/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/storage.go -------------------------------------------------------------------------------- /netsync/chainmgr/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/storage_test.go -------------------------------------------------------------------------------- /netsync/chainmgr/tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/tool_test.go -------------------------------------------------------------------------------- /netsync/chainmgr/tx_keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/tx_keeper.go -------------------------------------------------------------------------------- /netsync/chainmgr/tx_keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/chainmgr/tx_keeper_test.go -------------------------------------------------------------------------------- /netsync/consensusmgr/block_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/consensusmgr/block_fetcher.go -------------------------------------------------------------------------------- /netsync/consensusmgr/broadcast_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/consensusmgr/broadcast_msg.go -------------------------------------------------------------------------------- /netsync/consensusmgr/consensus_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/consensusmgr/consensus_msg.go -------------------------------------------------------------------------------- /netsync/consensusmgr/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/consensusmgr/handle.go -------------------------------------------------------------------------------- /netsync/consensusmgr/handle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/consensusmgr/handle_test.go -------------------------------------------------------------------------------- /netsync/consensusmgr/reactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/consensusmgr/reactor.go -------------------------------------------------------------------------------- /netsync/messages/chain_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/messages/chain_msg.go -------------------------------------------------------------------------------- /netsync/messages/chain_msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/messages/chain_msg_test.go -------------------------------------------------------------------------------- /netsync/peers/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/peers/peer.go -------------------------------------------------------------------------------- /netsync/peers/peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/peers/peer_test.go -------------------------------------------------------------------------------- /netsync/sync_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/netsync/sync_manager.go -------------------------------------------------------------------------------- /node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/node/node.go -------------------------------------------------------------------------------- /node/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/node/node_test.go -------------------------------------------------------------------------------- /p2p/base_reactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/base_reactor.go -------------------------------------------------------------------------------- /p2p/connection/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/connection/channel.go -------------------------------------------------------------------------------- /p2p/connection/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/connection/connection.go -------------------------------------------------------------------------------- /p2p/connection/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/connection/connection_test.go -------------------------------------------------------------------------------- /p2p/connection/secret_connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/connection/secret_connection.go -------------------------------------------------------------------------------- /p2p/discover/dht/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/database.go -------------------------------------------------------------------------------- /p2p/discover/dht/database_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/database_test.go -------------------------------------------------------------------------------- /p2p/discover/dht/dns_seeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/dns_seeds.go -------------------------------------------------------------------------------- /p2p/discover/dht/dns_seeds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/dns_seeds_test.go -------------------------------------------------------------------------------- /p2p/discover/dht/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/net.go -------------------------------------------------------------------------------- /p2p/discover/dht/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/net_test.go -------------------------------------------------------------------------------- /p2p/discover/dht/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/node.go -------------------------------------------------------------------------------- /p2p/discover/dht/nodeevent_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/nodeevent_string.go -------------------------------------------------------------------------------- /p2p/discover/dht/sim_run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/sim_run_test.go -------------------------------------------------------------------------------- /p2p/discover/dht/sim_testmain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/sim_testmain_test.go -------------------------------------------------------------------------------- /p2p/discover/dht/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/table.go -------------------------------------------------------------------------------- /p2p/discover/dht/ticket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/ticket.go -------------------------------------------------------------------------------- /p2p/discover/dht/topic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/topic.go -------------------------------------------------------------------------------- /p2p/discover/dht/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/udp.go -------------------------------------------------------------------------------- /p2p/discover/dht/udp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/dht/udp_test.go -------------------------------------------------------------------------------- /p2p/discover/mdns/lan_discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/mdns/lan_discover.go -------------------------------------------------------------------------------- /p2p/discover/mdns/lan_discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/mdns/lan_discover_test.go -------------------------------------------------------------------------------- /p2p/discover/mdns/mdns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/discover/mdns/mdns.go -------------------------------------------------------------------------------- /p2p/external_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/external_ip.go -------------------------------------------------------------------------------- /p2p/external_ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/external_ip_test.go -------------------------------------------------------------------------------- /p2p/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/listener.go -------------------------------------------------------------------------------- /p2p/listener_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/listener_test.go -------------------------------------------------------------------------------- /p2p/netaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/netaddress.go -------------------------------------------------------------------------------- /p2p/netaddress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/netaddress_test.go -------------------------------------------------------------------------------- /p2p/netutil/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/netutil/error.go -------------------------------------------------------------------------------- /p2p/netutil/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/netutil/net.go -------------------------------------------------------------------------------- /p2p/node_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/node_info.go -------------------------------------------------------------------------------- /p2p/node_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/node_info_test.go -------------------------------------------------------------------------------- /p2p/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/peer.go -------------------------------------------------------------------------------- /p2p/peer_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/peer_set.go -------------------------------------------------------------------------------- /p2p/peer_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/peer_set_test.go -------------------------------------------------------------------------------- /p2p/peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/peer_test.go -------------------------------------------------------------------------------- /p2p/security/banscore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/security/banscore.go -------------------------------------------------------------------------------- /p2p/security/banscore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/security/banscore_test.go -------------------------------------------------------------------------------- /p2p/security/blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/security/blacklist.go -------------------------------------------------------------------------------- /p2p/security/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/security/filter.go -------------------------------------------------------------------------------- /p2p/security/score.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/security/score.go -------------------------------------------------------------------------------- /p2p/security/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/security/security.go -------------------------------------------------------------------------------- /p2p/signlib/chainkd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/signlib/chainkd.go -------------------------------------------------------------------------------- /p2p/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/switch.go -------------------------------------------------------------------------------- /p2p/switch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/switch_test.go -------------------------------------------------------------------------------- /p2p/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/test_util.go -------------------------------------------------------------------------------- /p2p/upnp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/upnp/README.md -------------------------------------------------------------------------------- /p2p/upnp/probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/upnp/probe.go -------------------------------------------------------------------------------- /p2p/upnp/upnp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/p2p/upnp/upnp.go -------------------------------------------------------------------------------- /proposal/blockproposer/blockproposer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/proposal/blockproposer/blockproposer.go -------------------------------------------------------------------------------- /proposal/proposal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/proposal/proposal.go -------------------------------------------------------------------------------- /proposal/proposal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/proposal/proposal_test.go -------------------------------------------------------------------------------- /proposal/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/proposal/sort.go -------------------------------------------------------------------------------- /protocol/asset_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/asset_filter.go -------------------------------------------------------------------------------- /protocol/asset_filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/asset_filter_test.go -------------------------------------------------------------------------------- /protocol/bbft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bbft.go -------------------------------------------------------------------------------- /protocol/bc/asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/asset.go -------------------------------------------------------------------------------- /protocol/bc/bc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/bc.pb.go -------------------------------------------------------------------------------- /protocol/bc/bc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/bc.proto -------------------------------------------------------------------------------- /protocol/bc/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/block.go -------------------------------------------------------------------------------- /protocol/bc/blockheader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/blockheader.go -------------------------------------------------------------------------------- /protocol/bc/coinbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/coinbase.go -------------------------------------------------------------------------------- /protocol/bc/crosschain_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/crosschain_input.go -------------------------------------------------------------------------------- /protocol/bc/crosschain_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/crosschain_output.go -------------------------------------------------------------------------------- /protocol/bc/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/entry.go -------------------------------------------------------------------------------- /protocol/bc/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/entry_test.go -------------------------------------------------------------------------------- /protocol/bc/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/hash.go -------------------------------------------------------------------------------- /protocol/bc/intrachain_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/intrachain_output.go -------------------------------------------------------------------------------- /protocol/bc/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/mux.go -------------------------------------------------------------------------------- /protocol/bc/retirement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/retirement.go -------------------------------------------------------------------------------- /protocol/bc/spend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/spend.go -------------------------------------------------------------------------------- /protocol/bc/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/tx.go -------------------------------------------------------------------------------- /protocol/bc/tx_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/tx_status.go -------------------------------------------------------------------------------- /protocol/bc/tx_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/tx_status_test.go -------------------------------------------------------------------------------- /protocol/bc/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/tx_test.go -------------------------------------------------------------------------------- /protocol/bc/txheader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/txheader.go -------------------------------------------------------------------------------- /protocol/bc/types/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/block.go -------------------------------------------------------------------------------- /protocol/bc/types/block_commitment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/block_commitment.go -------------------------------------------------------------------------------- /protocol/bc/types/block_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/block_header.go -------------------------------------------------------------------------------- /protocol/bc/types/block_header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/block_header_test.go -------------------------------------------------------------------------------- /protocol/bc/types/block_witness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/block_witness.go -------------------------------------------------------------------------------- /protocol/bc/types/block_witness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/block_witness_test.go -------------------------------------------------------------------------------- /protocol/bc/types/coinbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/coinbase.go -------------------------------------------------------------------------------- /protocol/bc/types/crosschain_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/crosschain_input.go -------------------------------------------------------------------------------- /protocol/bc/types/crosschain_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/crosschain_output.go -------------------------------------------------------------------------------- /protocol/bc/types/intrachain_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/intrachain_output.go -------------------------------------------------------------------------------- /protocol/bc/types/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/map.go -------------------------------------------------------------------------------- /protocol/bc/types/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/map_test.go -------------------------------------------------------------------------------- /protocol/bc/types/merkle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/merkle.go -------------------------------------------------------------------------------- /protocol/bc/types/merkle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/merkle_test.go -------------------------------------------------------------------------------- /protocol/bc/types/output_commitment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/output_commitment.go -------------------------------------------------------------------------------- /protocol/bc/types/spend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/spend.go -------------------------------------------------------------------------------- /protocol/bc/types/spend_commitment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/spend_commitment.go -------------------------------------------------------------------------------- /protocol/bc/types/spend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/spend_test.go -------------------------------------------------------------------------------- /protocol/bc/types/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/transaction.go -------------------------------------------------------------------------------- /protocol/bc/types/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/transaction_test.go -------------------------------------------------------------------------------- /protocol/bc/types/txinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/txinput.go -------------------------------------------------------------------------------- /protocol/bc/types/txinput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/txinput_test.go -------------------------------------------------------------------------------- /protocol/bc/types/txoutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/txoutput.go -------------------------------------------------------------------------------- /protocol/bc/types/txoutput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/txoutput_test.go -------------------------------------------------------------------------------- /protocol/bc/types/veto_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/veto_input.go -------------------------------------------------------------------------------- /protocol/bc/types/vote_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/types/vote_output.go -------------------------------------------------------------------------------- /protocol/bc/veto_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/veto_input.go -------------------------------------------------------------------------------- /protocol/bc/vote_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/bc/vote_output.go -------------------------------------------------------------------------------- /protocol/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/block.go -------------------------------------------------------------------------------- /protocol/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/block_test.go -------------------------------------------------------------------------------- /protocol/consensus_node_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/consensus_node_manager.go -------------------------------------------------------------------------------- /protocol/consensus_node_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/consensus_node_manager_test.go -------------------------------------------------------------------------------- /protocol/orphan_manage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/orphan_manage.go -------------------------------------------------------------------------------- /protocol/orphan_manage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/orphan_manage_test.go -------------------------------------------------------------------------------- /protocol/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/protocol.go -------------------------------------------------------------------------------- /protocol/state/consensus_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/state/consensus_result.go -------------------------------------------------------------------------------- /protocol/state/consensus_result_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/state/consensus_result_test.go -------------------------------------------------------------------------------- /protocol/state/utxo_view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/state/utxo_view.go -------------------------------------------------------------------------------- /protocol/state/utxo_view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/state/utxo_view_test.go -------------------------------------------------------------------------------- /protocol/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/store.go -------------------------------------------------------------------------------- /protocol/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/tx.go -------------------------------------------------------------------------------- /protocol/txpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/txpool.go -------------------------------------------------------------------------------- /protocol/txpool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/txpool_test.go -------------------------------------------------------------------------------- /protocol/validation/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/validation/block.go -------------------------------------------------------------------------------- /protocol/validation/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/validation/block_test.go -------------------------------------------------------------------------------- /protocol/validation/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/validation/tx.go -------------------------------------------------------------------------------- /protocol/validation/tx_scene_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/validation/tx_scene_test.go -------------------------------------------------------------------------------- /protocol/validation/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/validation/tx_test.go -------------------------------------------------------------------------------- /protocol/validation/vmcontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/validation/vmcontext.go -------------------------------------------------------------------------------- /protocol/validation/vmcontext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/validation/vmcontext_test.go -------------------------------------------------------------------------------- /protocol/vm/assemble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/assemble.go -------------------------------------------------------------------------------- /protocol/vm/assemble_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/assemble_test.go -------------------------------------------------------------------------------- /protocol/vm/bitwise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/bitwise.go -------------------------------------------------------------------------------- /protocol/vm/bitwise_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/bitwise_test.go -------------------------------------------------------------------------------- /protocol/vm/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/context.go -------------------------------------------------------------------------------- /protocol/vm/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/control.go -------------------------------------------------------------------------------- /protocol/vm/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/control_test.go -------------------------------------------------------------------------------- /protocol/vm/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/crypto.go -------------------------------------------------------------------------------- /protocol/vm/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/crypto_test.go -------------------------------------------------------------------------------- /protocol/vm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/errors.go -------------------------------------------------------------------------------- /protocol/vm/introspection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/introspection.go -------------------------------------------------------------------------------- /protocol/vm/introspection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/introspection_test.go -------------------------------------------------------------------------------- /protocol/vm/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/numeric.go -------------------------------------------------------------------------------- /protocol/vm/numeric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/numeric_test.go -------------------------------------------------------------------------------- /protocol/vm/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/ops.go -------------------------------------------------------------------------------- /protocol/vm/ops_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/ops_test.go -------------------------------------------------------------------------------- /protocol/vm/pushdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/pushdata.go -------------------------------------------------------------------------------- /protocol/vm/pushdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/pushdata_test.go -------------------------------------------------------------------------------- /protocol/vm/splice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/splice.go -------------------------------------------------------------------------------- /protocol/vm/splice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/splice_test.go -------------------------------------------------------------------------------- /protocol/vm/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/stack.go -------------------------------------------------------------------------------- /protocol/vm/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/stack_test.go -------------------------------------------------------------------------------- /protocol/vm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/types.go -------------------------------------------------------------------------------- /protocol/vm/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/types_test.go -------------------------------------------------------------------------------- /protocol/vm/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/vm.go -------------------------------------------------------------------------------- /protocol/vm/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/vm_test.go -------------------------------------------------------------------------------- /protocol/vm/vmutil/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/vmutil/builder.go -------------------------------------------------------------------------------- /protocol/vm/vmutil/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/vmutil/builder_test.go -------------------------------------------------------------------------------- /protocol/vm/vmutil/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/vmutil/script.go -------------------------------------------------------------------------------- /protocol/vm/vmutil/script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/protocol/vm/vmutil/script_test.go -------------------------------------------------------------------------------- /test/accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/accounts_test.go -------------------------------------------------------------------------------- /test/bench_blockchain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/bench_blockchain_test.go -------------------------------------------------------------------------------- /test/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/block_test.go -------------------------------------------------------------------------------- /test/block_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/block_test_util.go -------------------------------------------------------------------------------- /test/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/builder_test.go -------------------------------------------------------------------------------- /test/chain_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/chain_test_util.go -------------------------------------------------------------------------------- /test/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/init_test.go -------------------------------------------------------------------------------- /test/integration/bash_rpc/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/integration/bash_rpc/account.json -------------------------------------------------------------------------------- /test/integration/bash_rpc/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/integration/bash_rpc/key.json -------------------------------------------------------------------------------- /test/integration/bash_rpc/net-info.sh: -------------------------------------------------------------------------------- 1 | curl -X POST http://localhost:9889/net-info -d '{}' 2 | -------------------------------------------------------------------------------- /test/integration/main.go: -------------------------------------------------------------------------------- 1 | package integration 2 | -------------------------------------------------------------------------------- /test/integration/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/integration/run_test.go -------------------------------------------------------------------------------- /test/mock/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/mock/chain.go -------------------------------------------------------------------------------- /test/mock/crosschain_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/mock/crosschain_tx.go -------------------------------------------------------------------------------- /test/mock/mempool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/mock/mempool.go -------------------------------------------------------------------------------- /test/performance/mining_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/performance/mining_test.go -------------------------------------------------------------------------------- /test/performance/rpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/performance/rpc_test.go -------------------------------------------------------------------------------- /test/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/protocol_test.go -------------------------------------------------------------------------------- /test/protocol_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/protocol_test_util.go -------------------------------------------------------------------------------- /test/rollback_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/rollback_test.go -------------------------------------------------------------------------------- /test/subprotocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/subprotocol_test.go -------------------------------------------------------------------------------- /test/tx_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/tx_test_util.go -------------------------------------------------------------------------------- /test/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/util.go -------------------------------------------------------------------------------- /test/utxo_view/utxo_view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/utxo_view/utxo_view_test.go -------------------------------------------------------------------------------- /test/utxo_view/utxo_view_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/utxo_view/utxo_view_test_util.go -------------------------------------------------------------------------------- /test/wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/wallet_test.go -------------------------------------------------------------------------------- /test/wallet_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/test/wallet_test_util.go -------------------------------------------------------------------------------- /testutil/deepequal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/testutil/deepequal.go -------------------------------------------------------------------------------- /testutil/deepequal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/testutil/deepequal_test.go -------------------------------------------------------------------------------- /testutil/hex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/testutil/hex.go -------------------------------------------------------------------------------- /testutil/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/testutil/keys.go -------------------------------------------------------------------------------- /toolbar/apinode/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/account.go -------------------------------------------------------------------------------- /toolbar/apinode/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/account_test.go -------------------------------------------------------------------------------- /toolbar/apinode/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/block.go -------------------------------------------------------------------------------- /toolbar/apinode/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/node.go -------------------------------------------------------------------------------- /toolbar/apinode/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/node_test.go -------------------------------------------------------------------------------- /toolbar/apinode/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/query.go -------------------------------------------------------------------------------- /toolbar/apinode/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/query_test.go -------------------------------------------------------------------------------- /toolbar/apinode/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/apinode/transaction.go -------------------------------------------------------------------------------- /toolbar/common/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/common/address.go -------------------------------------------------------------------------------- /toolbar/common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/common/config.go -------------------------------------------------------------------------------- /toolbar/common/consensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/common/consensus.go -------------------------------------------------------------------------------- /toolbar/common/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/common/db.go -------------------------------------------------------------------------------- /toolbar/common/http_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/common/http_util.go -------------------------------------------------------------------------------- /toolbar/common/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/common/types.go -------------------------------------------------------------------------------- /toolbar/federation/api/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/federation/api/handler.go -------------------------------------------------------------------------------- /toolbar/federation/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/federation/api/server.go -------------------------------------------------------------------------------- /toolbar/federation/common/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/federation/common/const.go -------------------------------------------------------------------------------- /toolbar/federation/common/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/federation/common/util.go -------------------------------------------------------------------------------- /toolbar/federation/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/federation/config/config.go -------------------------------------------------------------------------------- /toolbar/federation/service/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/federation/service/node.go -------------------------------------------------------------------------------- /toolbar/federation/synchron/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/federation/synchron/errors.go -------------------------------------------------------------------------------- /toolbar/measure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/measure/README.md -------------------------------------------------------------------------------- /toolbar/measure/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/measure/method.go -------------------------------------------------------------------------------- /toolbar/measure/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/measure/timer.go -------------------------------------------------------------------------------- /toolbar/mergeutxo/merger_utxo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/mergeutxo/merger_utxo.go -------------------------------------------------------------------------------- /toolbar/osssync/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/Dockerfile -------------------------------------------------------------------------------- /toolbar/osssync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/README.md -------------------------------------------------------------------------------- /toolbar/osssync/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/cmd/main.go -------------------------------------------------------------------------------- /toolbar/osssync/download/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/download/download.go -------------------------------------------------------------------------------- /toolbar/osssync/download/oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/download/oss.go -------------------------------------------------------------------------------- /toolbar/osssync/upload/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/upload/config.go -------------------------------------------------------------------------------- /toolbar/osssync/upload/oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/upload/oss.go -------------------------------------------------------------------------------- /toolbar/osssync/upload/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/upload/upload.go -------------------------------------------------------------------------------- /toolbar/osssync/util/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/util/file.go -------------------------------------------------------------------------------- /toolbar/osssync/util/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/util/gzip.go -------------------------------------------------------------------------------- /toolbar/osssync/util/infofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/util/infofile.go -------------------------------------------------------------------------------- /toolbar/osssync/util/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/osssync/util/json.go -------------------------------------------------------------------------------- /toolbar/precognitive/api/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/precognitive/api/handler.go -------------------------------------------------------------------------------- /toolbar/precognitive/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/precognitive/api/server.go -------------------------------------------------------------------------------- /toolbar/precognitive/common/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/precognitive/common/const.go -------------------------------------------------------------------------------- /toolbar/precognitive/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/precognitive/config/config.go -------------------------------------------------------------------------------- /toolbar/precognitive/monitor/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/precognitive/monitor/mock.go -------------------------------------------------------------------------------- /toolbar/precognitive/monitor/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/precognitive/monitor/monitor.go -------------------------------------------------------------------------------- /toolbar/precognitive/monitor/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/precognitive/monitor/stats.go -------------------------------------------------------------------------------- /toolbar/server/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/server/common.go -------------------------------------------------------------------------------- /toolbar/server/display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/server/display.go -------------------------------------------------------------------------------- /toolbar/server/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/server/errors.go -------------------------------------------------------------------------------- /toolbar/server/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/server/handle.go -------------------------------------------------------------------------------- /toolbar/server/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/server/pagination.go -------------------------------------------------------------------------------- /toolbar/server/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/server/response.go -------------------------------------------------------------------------------- /toolbar/vote_reward/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/toolbar/vote_reward/config/config.go -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/util/util.go -------------------------------------------------------------------------------- /vendor/github.com/bytom/common/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/bytom/common/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/bytom/common/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/bytom/common/sort.go -------------------------------------------------------------------------------- /vendor/github.com/bytom/common/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/bytom/common/types.go -------------------------------------------------------------------------------- /vendor/github.com/bytom/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/bytom/errors/doc.go -------------------------------------------------------------------------------- /vendor/github.com/bytom/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/bytom/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/cespare/cp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/cespare/cp/README.md -------------------------------------------------------------------------------- /vendor/github.com/cespare/cp/cp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/cespare/cp/cp.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/auth.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/fs.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/gin.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/mode.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/path.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/gin-gonic/gin/tree.go -------------------------------------------------------------------------------- /vendor/github.com/gin-gonic/gin/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/default -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/grandcat/zeroconf/examples/proxyservice/.gitignore: -------------------------------------------------------------------------------- 1 | proxyservice 2 | -------------------------------------------------------------------------------- /vendor/github.com/grandcat/zeroconf/examples/register/.gitignore: -------------------------------------------------------------------------------- 1 | register 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/grandcat/zeroconf/examples/resolv/.gitignore: -------------------------------------------------------------------------------- 1 | resolv 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/.hidden.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/dir.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/file.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/good.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_lastline.hcl: -------------------------------------------------------------------------------- 1 | #foo -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/git_crypt.hcl: -------------------------------------------------------------------------------- 1 | GITCRYPT 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/key_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/object_key_assign_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo { 2 | bar = 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/object_key_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo { 2 | bar 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/testdata/comment_newline.golden: -------------------------------------------------------------------------------- 1 | # Hello 2 | # World 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/testdata/comment_newline.input: -------------------------------------------------------------------------------- 1 | # Hello 2 | # World 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/parser/test-fixtures/bad_input_128.json: -------------------------------------------------------------------------------- 1 | {:{ 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/parser/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl: -------------------------------------------------------------------------------- 1 | count = "3" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/block_assign.hcl: -------------------------------------------------------------------------------- 1 | environment = "aws" { 2 | } 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/flat.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | Key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl: -------------------------------------------------------------------------------- 1 | a = 1.02 2 | b = 2 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/git_crypt.hcl: -------------------------------------------------------------------------------- 1 | GITCRYPT 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/list_of_lists.hcl: -------------------------------------------------------------------------------- 1 | foo = [["foo"], ["bar"]] 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar\nbaz" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal.hcl: -------------------------------------------------------------------------------- 1 | multiline_literal = "hello 2 | world" -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal_with_hil.hcl: -------------------------------------------------------------------------------- 1 | multiline_literal_with_hil = "${hello 2 | world}" -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl: -------------------------------------------------------------------------------- 1 | foo = << 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/structure_list_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl: -------------------------------------------------------------------------------- 1 | /* 2 | Foo 3 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/.gitignore: -------------------------------------------------------------------------------- 1 | documents 2 | _book 3 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/License -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/README.md -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/errors.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/field.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/logger.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/main.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/model.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/naming.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/scope.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/search.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/jinzhu/gorm/utils.go -------------------------------------------------------------------------------- /vendor/github.com/johngb/langreg/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/default -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/README.md -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/client.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/dane.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/defaults.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/format.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/generate.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/labels.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/reverse.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/sanitize.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan_rr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/scan_rr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/server.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/smimea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/smimea.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/update.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/version.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/viper/nohup.out -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/tendermint/go-wire/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ugorji/go/codec 2 | 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/README -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/text/README -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/golang.org/x/time/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/time/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/time 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.please-update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/fatih/set.v0/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/fatih/set.v0/set.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/version/version.go -------------------------------------------------------------------------------- /version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/version/version_test.go -------------------------------------------------------------------------------- /wallet/annotated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/annotated.go -------------------------------------------------------------------------------- /wallet/indexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/indexer.go -------------------------------------------------------------------------------- /wallet/mnemonic/mnemonic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/mnemonic/mnemonic.go -------------------------------------------------------------------------------- /wallet/mnemonic/mnemonic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/mnemonic/mnemonic_test.go -------------------------------------------------------------------------------- /wallet/mnemonic/wordlists/english.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/mnemonic/wordlists/english.go -------------------------------------------------------------------------------- /wallet/mnemonic/wordlists/italian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/mnemonic/wordlists/italian.go -------------------------------------------------------------------------------- /wallet/mnemonic/wordlists/korean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/mnemonic/wordlists/korean.go -------------------------------------------------------------------------------- /wallet/mnemonic/wordlists/spanish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/mnemonic/wordlists/spanish.go -------------------------------------------------------------------------------- /wallet/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/recovery.go -------------------------------------------------------------------------------- /wallet/recovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/recovery_test.go -------------------------------------------------------------------------------- /wallet/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/store.go -------------------------------------------------------------------------------- /wallet/unconfirmed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/unconfirmed.go -------------------------------------------------------------------------------- /wallet/unconfirmed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/unconfirmed_test.go -------------------------------------------------------------------------------- /wallet/utxo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/utxo.go -------------------------------------------------------------------------------- /wallet/utxo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/utxo_test.go -------------------------------------------------------------------------------- /wallet/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/wallet.go -------------------------------------------------------------------------------- /wallet/wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytomDAO/vapor/HEAD/wallet/wallet_test.go --------------------------------------------------------------------------------