ERC-1155
Overview
Max Total Supply
43 DGN
Holders
43
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DGN
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT /* 8 888888888o. ,o888888o. b. 8 8 8888 `^888. 8888 `88. 888o. 8 8 8888 `88. ,8 8888 `8. Y88888o. 8 8 8888 `88 88 8888 .`Y888888o. 8 8 8888 88 88 8888 8o. `Y888888o. 8 8 8888 88 88 8888 8`Y8o. `Y88888o8 8 8888 ,88 88 8888 8888888 8 `Y8o. `Y8888 8 8888 ,88' `8 8888 .8' 8 `Y8o. `Y8 8 8888 ,o88P' 8888 ,88' 8 `Y8o.` 8 888888888P' `8888888P' 8 `Yo ERC1155 Builder Created by DGNs https://twitter.com/dgn_alpha */ pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract DGN is ERC1155, Ownable { //Used in struct MintInformation. enum MintStatus { Paused, //0 Whitelist, //1 Public //2 } //Used after token(s) are set. If paused, no tokens can be minted. enum ContractStatus { Paused, //0 Active //1 } //maxSupply and publicMintLimit are set in 2 different functions. _setTokenSupply & _setPublicMintLimit. struct TokenInformation { uint currentSupply; uint maxSupply; string tokenUri; } struct MintInformation { MintStatus status; uint publicMintLimit; } string public name; string public symbol; mapping(uint => TokenInformation) public tokenInfo; mapping(uint => MintInformation) public mintInfo; mapping(address => uint) public tokenWhitelist; //Limits address to publicMintLimit per token. mapping(address => mapping(uint256 => uint256)) private addressData; ContractStatus private contractStatus = ContractStatus.Paused; constructor() ERC1155("") { name = "DGN"; symbol = "DGN"; } //Public and whitelist mint function. function mint(uint _id) public { require(msg.sender == tx.origin, "No transaction from smart contracts!"); require(contractStatus != ContractStatus.Paused, "Mint is paused."); require(mintInfo[_id].status != MintStatus.Paused, "Mint must be active for specified ID"); require(tokenInfo[_id].currentSupply + 1 <= tokenInfo[_id].maxSupply, "Must not exceed max supply!"); if (mintInfo[_id].status == MintStatus.Whitelist) { require(tokenWhitelist[msg.sender] == _id, "Must be whitelisted for specified ID"); tokenWhitelist[msg.sender] = 0; } else { require(addressData[msg.sender][_id] < mintInfo[_id].publicMintLimit, "Public mint limit reached"); addressData[msg.sender][_id]++; } tokenInfo[_id].currentSupply++; _mint(msg.sender, _id, 1, ""); } //Batch mint x amount of specified token ID. function ownerBatchMint(uint _id, address _to, uint _amount) external onlyOwner { require(_amount + tokenInfo[_id].currentSupply <= tokenInfo[_id].maxSupply, "Must not exceed max supply of ID!" ); tokenInfo[_id].currentSupply += _amount; _mint(_to, _id, _amount, ""); } //Sets URI for specified token ID. function _setTokenURI(uint _id, string memory _uri) external onlyOwner { tokenInfo[_id].tokenUri = _uri; emit URI(_uri, _id); } //Sets whitelist for specified token ID. function _setTokenWhitelist(address[] calldata addresses, uint8 _id) external onlyOwner { require(tokenInfo[_id].maxSupply != 0, "Cannot set whitelist for token that does not exist."); for (uint256 i = 0; i < addresses.length; i++) { tokenWhitelist[addresses[i]] = _id; } } /*Set max supply for specified token ID. Tokens will not be mintable UNTIL you specify ID and max supply.*/ function _setTokenSupply(uint _id, uint _maxSupply) external onlyOwner { require(tokenInfo[_id].currentSupply < _maxSupply, "Current supply exceeds new supply"); tokenInfo[_id].maxSupply = _maxSupply; } //Sets public mint limit for a specified token ID. function _setPublicMintLimit(uint _id, uint _publicMintLimit) external onlyOwner { require(tokenInfo[_id].maxSupply != 0, "Cannot set public mint limit for token ID that doesnt exist."); mintInfo[_id].publicMintLimit = _publicMintLimit; } /*Sets mint info of specified token ID. Sets mint status (0: Paused, 1: Whitelist, 2: Public) for specified token ID.*/ function _setMintInfo(uint _id, MintStatus _status) external onlyOwner { mintInfo[_id].status = _status; } //Sets contract status (0: Paused, 1: Active) function _setContractStatus(ContractStatus _status) external onlyOwner { contractStatus = _status; } //Returns URI of specified token ID. function getTokenURI(uint _id) public view returns (string memory) { return tokenInfo[_id].tokenUri; } //Returns max supply of specified token ID. function getTokenMaxSupply(uint _id) public view returns (uint) { return tokenInfo[_id].maxSupply; } //Returns current supply of specified token ID. function getTokenCurrentSupply(uint _id) public view returns (uint) { return tokenInfo[_id].currentSupply; } //Returns publice mint limit of specified token ID. function getTokenPublicMintLimit (uint _id) public view returns (uint) { return mintInfo[_id].publicMintLimit; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"enum DGN.ContractStatus","name":"_status","type":"uint8"}],"name":"_setContractStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"enum DGN.MintStatus","name":"_status","type":"uint8"}],"name":"_setMintInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_publicMintLimit","type":"uint256"}],"name":"_setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"_setTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"_setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"_id","type":"uint8"}],"name":"_setTokenWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTokenCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTokenPublicMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintInfo","outputs":[{"internalType":"enum DGN.MintStatus","name":"status","type":"uint8"},{"internalType":"uint256","name":"publicMintLimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenInfo","outputs":[{"internalType":"uint256","name":"currentSupply","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"tokenUri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff021916908360018111156200002d576200002c620002f4565b5b02179055503480156200003f57600080fd5b506040518060200160405280600081525062000061816200012460201b60201c565b5062000082620000766200014060201b60201c565b6200014860201b60201c565b6040518060400160405280600381526020017f44474e000000000000000000000000000000000000000000000000000000000081525060049080519060200190620000cf9291906200020e565b506040518060400160405280600381526020017f44474e0000000000000000000000000000000000000000000000000000000000815250600590805190602001906200011d9291906200020e565b5062000352565b80600290805190602001906200013c9291906200020e565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021c90620002be565b90600052602060002090601f0160209004810192826200024057600085556200028c565b82601f106200025b57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028b5782518255916020019190600101906200026e565b5b5090506200029b91906200029f565b5090565b5b80821115620002ba576000816000905550600101620002a0565b5090565b60006002820490506001821680620002d757607f821691505b60208210811415620002ee57620002ed62000323565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147eb80620003626000396000f3fe608060405234801561001057600080fd5b50600436106101c35760003560e01c80638854696a116100f9578063cc33c87511610097578063f242432a11610071578063f242432a14610527578063f2fde38b14610543578063fae3a45d1461055f578063fbe25d0e1461058f576101c3565b8063cc33c875146104a9578063e6a30385146104db578063e985e9c5146104f7576101c3565b8063a000de4e116100d3578063a000de4e14610425578063a0712d6814610441578063a22cb4651461045d578063b45105ec14610479576101c3565b80638854696a146103cd5780638da5cb5b146103e957806395d89b4114610407576101c3565b80632eb2c2d6116101665780634e1273f4116101405780634e1273f414610347578063715018a614610377578063753d75631461038157806386470b4b146103b1576101c3565b80632eb2c2d6146102ca5780633bb3a24d146102e6578063443aa53314610316576101c3565b806306fdde03116101a257806306fdde03146102445780630e89341c14610262578063156477d6146102925780632b466a37146102ae576101c3565b8062fdd58e146101c857806301538868146101f857806301ffc9a714610214575b600080fd5b6101e260048036038101906101dd9190612f23565b6105bf565b6040516101ef9190613af2565b60405180910390f35b610212600480360381019061020d9190613182565b610688565b005b61022e6004803603810190610229919061303b565b61076b565b60405161023b91906137ac565b60405180910390f35b61024c61084d565b60405161025991906137f0565b60405180910390f35b61027c600480360381019061027791906130c2565b6108db565b60405161028991906137f0565b60405180910390f35b6102ac60048036038101906102a79190613095565b61096f565b005b6102c860048036038101906102c391906131de565b610a18565b005b6102e460048036038101906102df9190612d7d565b610b0b565b005b61030060048036038101906102fb91906130c2565b610bac565b60405161030d91906137f0565b60405180910390f35b610330600480360381019061032b91906130c2565b610c54565b60405161033e9291906137c7565b60405180910390f35b610361600480360381019061035c9190612fc3565b610c85565b60405161036e9190613753565b60405180910390f35b61037f610d9e565b005b61039b60048036038101906103969190612d10565b610e26565b6040516103a89190613af2565b60405180910390f35b6103cb60048036038101906103c691906130ef565b610e3e565b005b6103e760048036038101906103e291906131de565b610f81565b005b6103f1611076565b6040516103fe9190613676565b60405180910390f35b61040f6110a0565b60405161041c91906137f0565b60405180910390f35b61043f600480360381019061043a9190613142565b61112e565b005b61045b600480360381019061045691906130c2565b6111ec565b005b61047760048036038101906104729190612ee3565b61164c565b005b610493600480360381019061048e91906130c2565b611662565b6040516104a09190613af2565b60405180910390f35b6104c360048036038101906104be91906130c2565b611682565b6040516104d293929190613b36565b60405180910390f35b6104f560048036038101906104f09190612f63565b611734565b005b610511600480360381019061050c9190612d3d565b6118a2565b60405161051e91906137ac565b60405180910390f35b610541600480360381019061053c9190612e4c565b611936565b005b61055d60048036038101906105589190612d10565b6119d7565b005b610579600480360381019061057491906130c2565b611acf565b6040516105869190613af2565b60405180910390f35b6105a960048036038101906105a491906130c2565b611aef565b6040516105b69190613af2565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610627906138b2565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610690611b0f565b73ffffffffffffffffffffffffffffffffffffffff166106ae611076565b73ffffffffffffffffffffffffffffffffffffffff1614610704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fb906139f2565b60405180910390fd5b8060066000848152602001908152602001600020600201908051906020019061072e929190612953565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161075f91906137f0565b60405180910390a25050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610846575061084582611b17565b5b9050919050565b6004805461085a90613e02565b80601f016020809104026020016040519081016040528092919081815260200182805461088690613e02565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b505050505081565b6060600280546108ea90613e02565b80601f016020809104026020016040519081016040528092919081815260200182805461091690613e02565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b50505050509050919050565b610977611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610995611076565b73ffffffffffffffffffffffffffffffffffffffff16146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e2906139f2565b60405180910390fd5b80600a60006101000a81548160ff02191690836001811115610a1057610a0f613edd565b5b021790555050565b610a20611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610a3e611076565b73ffffffffffffffffffffffffffffffffffffffff1614610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906139f2565b60405180910390fd5b80600660008481526020019081526020016000206000015410610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613912565b60405180910390fd5b8060066000848152602001908152602001600020600101819055505050565b610b13611b0f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b595750610b5885610b53611b0f565b6118a2565b5b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613992565b60405180910390fd5b610ba58585858585611b81565b5050505050565b6060600660008381526020019081526020016000206002018054610bcf90613e02565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb90613e02565b8015610c485780601f10610c1d57610100808354040283529160200191610c48565b820191906000526020600020905b815481529060010190602001808311610c2b57829003601f168201915b50505050509050919050565b60076020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154905082565b60608151835114610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290613a92565b60405180910390fd5b6000835167ffffffffffffffff811115610ce857610ce7613f6a565b5b604051908082528060200260200182016040528015610d165781602001602082028036833780820191505090505b50905060005b8451811015610d9357610d63858281518110610d3b57610d3a613f3b565b5b6020026020010151858381518110610d5657610d55613f3b565b5b60200260200101516105bf565b828281518110610d7657610d75613f3b565b5b60200260200101818152505080610d8c90613e65565b9050610d1c565b508091505092915050565b610da6611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610dc4611076565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e11906139f2565b60405180910390fd5b610e246000611e95565b565b60086020528060005260406000206000915090505481565b610e46611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610e64611076565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906139f2565b60405180910390fd5b6006600084815260200190815260200160002060010154600660008581526020019081526020016000206000015482610ef39190613cc4565b1115610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906139b2565b60405180910390fd5b80600660008581526020019081526020016000206000016000828254610f5a9190613cc4565b92505081905550610f7c82848360405180602001604052806000815250611f5b565b505050565b610f89611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610fa7611076565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906139f2565b60405180910390fd5b600060066000848152602001908152602001600020600101541415611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613952565b60405180910390fd5b8060076000848152602001908152602001600020600101819055505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600580546110ad90613e02565b80601f01602080910402602001604051908101604052809291908181526020018280546110d990613e02565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505081565b611136611b0f565b73ffffffffffffffffffffffffffffffffffffffff16611154611076565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a1906139f2565b60405180910390fd5b806007600084815260200190815260200160002060000160006101000a81548160ff021916908360028111156111e3576111e2613edd565b5b02179055505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613a52565b60405180910390fd5b6000600181111561126e5761126d613edd565b5b600a60009054906101000a900460ff1660018111156112905761128f613edd565b5b14156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906138d2565b60405180910390fd5b600060028111156112e5576112e4613edd565b5b6007600083815260200190815260200160002060000160009054906101000a900460ff16600281111561131b5761131a613edd565b5b141561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613a32565b60405180910390fd5b6006600082815260200190815260200160002060010154600160066000848152602001908152602001600020600001546113969190613cc4565b11156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613a12565b60405180910390fd5b600160028111156113eb576113ea613edd565b5b6007600083815260200190815260200160002060000160009054906101000a900460ff16600281111561142157611420613edd565b5b14156114f25780600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613852565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611601565b6007600082815260200190815260200160002060010154600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020541061159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613892565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060008154809291906115fb90613e65565b91905055505b60066000828152602001908152602001600020600001600081548092919061162890613e65565b91905055506116493382600160405180602001604052806000815250611f5b565b50565b61165e611657611b0f565b83836120f1565b5050565b600060066000838152602001908152602001600020600001549050919050565b60066020528060005260406000206000915090508060000154908060010154908060020180546116b190613e02565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90613e02565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b5050505050905083565b61173c611b0f565b73ffffffffffffffffffffffffffffffffffffffff1661175a611076565b73ffffffffffffffffffffffffffffffffffffffff16146117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906139f2565b60405180910390fd5b6000600660008360ff16815260200190815260200160002060010154141561180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613872565b60405180910390fd5b60005b8383905081101561189c578160ff166008600086868581811061183657611835613f3b565b5b905060200201602081019061184b9190612d10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061189490613e65565b915050611810565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61193e611b0f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061198457506119838561197e611b0f565b6118a2565b5b6119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90613932565b60405180910390fd5b6119d0858585858561225e565b5050505050565b6119df611b0f565b73ffffffffffffffffffffffffffffffffffffffff166119fd611076565b73ffffffffffffffffffffffffffffffffffffffff1614611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906138f2565b60405180910390fd5b611acc81611e95565b50565b600060076000838152602001908152602001600020600101549050919050565b600060066000838152602001908152602001600020600101549050919050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8151835114611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90613ab2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613972565b60405180910390fd5b6000611c3f611b0f565b9050611c4f8187878787876124e0565b60005b8451811015611e00576000858281518110611c7057611c6f613f3b565b5b602002602001015190506000858381518110611c8f57611c8e613f3b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906139d2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de59190613cc4565b9250508190555050505080611df990613e65565b9050611c52565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e77929190613775565b60405180910390a4611e8d8187878787876124e8565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290613ad2565b60405180910390fd5b6000611fd5611b0f565b9050611ff681600087611fe7886126cf565b611ff0886126cf565b876124e0565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120559190613cc4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516120d3929190613b0d565b60405180910390a46120ea81600087878787612749565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790613a72565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161225191906137ac565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590613972565b60405180910390fd5b60006122d8611b0f565b90506122f88187876122e9886126cf565b6122f2886126cf565b876124e0565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561238f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612386906139d2565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124449190613cc4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516124c1929190613b0d565b60405180910390a46124d7828888888888612749565b50505050505050565b505050505050565b6125078473ffffffffffffffffffffffffffffffffffffffff16612930565b156126c7578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161254d959493929190613691565b602060405180830381600087803b15801561256757600080fd5b505af192505050801561259857506040513d601f19601f820116820180604052508101906125959190613068565b60015b61263e576125a4613f99565b806308c379a0141561260157506125b9614678565b806125c45750612603565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f891906137f0565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590613812565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90613832565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156126ee576126ed613f6a565b5b60405190808252806020026020018201604052801561271c5781602001602082028036833780820191505090505b509050828160008151811061273457612733613f3b565b5b60200260200101818152505080915050919050565b6127688473ffffffffffffffffffffffffffffffffffffffff16612930565b15612928578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016127ae9594939291906136f9565b602060405180830381600087803b1580156127c857600080fd5b505af19250505080156127f957506040513d601f19601f820116820180604052508101906127f69190613068565b60015b61289f57612805613f99565b806308c379a01415612862575061281a614678565b806128255750612864565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285991906137f0565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289690613812565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d90613832565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461295f90613e02565b90600052602060002090601f01602090048101928261298157600085556129c8565b82601f1061299a57805160ff19168380011785556129c8565b828001600101855582156129c8579182015b828111156129c75782518255916020019190600101906129ac565b5b5090506129d591906129d9565b5090565b5b808211156129f25760008160009055506001016129da565b5090565b6000612a09612a0484613b99565b613b74565b90508083825260208201905082856020860282011115612a2c57612a2b613fc5565b5b60005b85811015612a5c5781612a428882612b5a565b845260208401935060208301925050600181019050612a2f565b5050509392505050565b6000612a79612a7484613bc5565b613b74565b90508083825260208201905082856020860282011115612a9c57612a9b613fc5565b5b60005b85811015612acc5781612ab28882612ce6565b845260208401935060208301925050600181019050612a9f565b5050509392505050565b6000612ae9612ae484613bf1565b613b74565b905082815260208101848484011115612b0557612b04613fca565b5b612b10848285613dc0565b509392505050565b6000612b2b612b2684613c22565b613b74565b905082815260208101848484011115612b4757612b46613fca565b5b612b52848285613dc0565b509392505050565b600081359050612b6981614722565b92915050565b60008083601f840112612b8557612b84613fc0565b5b8235905067ffffffffffffffff811115612ba257612ba1613fbb565b5b602083019150836020820283011115612bbe57612bbd613fc5565b5b9250929050565b600082601f830112612bda57612bd9613fc0565b5b8135612bea8482602086016129f6565b91505092915050565b600082601f830112612c0857612c07613fc0565b5b8135612c18848260208601612a66565b91505092915050565b600081359050612c3081614739565b92915050565b600081359050612c4581614750565b92915050565b600081519050612c5a81614750565b92915050565b600082601f830112612c7557612c74613fc0565b5b8135612c85848260208601612ad6565b91505092915050565b600081359050612c9d81614767565b92915050565b600081359050612cb281614777565b92915050565b600082601f830112612ccd57612ccc613fc0565b5b8135612cdd848260208601612b18565b91505092915050565b600081359050612cf581614787565b92915050565b600081359050612d0a8161479e565b92915050565b600060208284031215612d2657612d25613fd4565b5b6000612d3484828501612b5a565b91505092915050565b60008060408385031215612d5457612d53613fd4565b5b6000612d6285828601612b5a565b9250506020612d7385828601612b5a565b9150509250929050565b600080600080600060a08688031215612d9957612d98613fd4565b5b6000612da788828901612b5a565b9550506020612db888828901612b5a565b945050604086013567ffffffffffffffff811115612dd957612dd8613fcf565b5b612de588828901612bf3565b935050606086013567ffffffffffffffff811115612e0657612e05613fcf565b5b612e1288828901612bf3565b925050608086013567ffffffffffffffff811115612e3357612e32613fcf565b5b612e3f88828901612c60565b9150509295509295909350565b600080600080600060a08688031215612e6857612e67613fd4565b5b6000612e7688828901612b5a565b9550506020612e8788828901612b5a565b9450506040612e9888828901612ce6565b9350506060612ea988828901612ce6565b925050608086013567ffffffffffffffff811115612eca57612ec9613fcf565b5b612ed688828901612c60565b9150509295509295909350565b60008060408385031215612efa57612ef9613fd4565b5b6000612f0885828601612b5a565b9250506020612f1985828601612c21565b9150509250929050565b60008060408385031215612f3a57612f39613fd4565b5b6000612f4885828601612b5a565b9250506020612f5985828601612ce6565b9150509250929050565b600080600060408486031215612f7c57612f7b613fd4565b5b600084013567ffffffffffffffff811115612f9a57612f99613fcf565b5b612fa686828701612b6f565b93509350506020612fb986828701612cfb565b9150509250925092565b60008060408385031215612fda57612fd9613fd4565b5b600083013567ffffffffffffffff811115612ff857612ff7613fcf565b5b61300485828601612bc5565b925050602083013567ffffffffffffffff81111561302557613024613fcf565b5b61303185828601612bf3565b9150509250929050565b60006020828403121561305157613050613fd4565b5b600061305f84828501612c36565b91505092915050565b60006020828403121561307e5761307d613fd4565b5b600061308c84828501612c4b565b91505092915050565b6000602082840312156130ab576130aa613fd4565b5b60006130b984828501612c8e565b91505092915050565b6000602082840312156130d8576130d7613fd4565b5b60006130e684828501612ce6565b91505092915050565b60008060006060848603121561310857613107613fd4565b5b600061311686828701612ce6565b935050602061312786828701612b5a565b925050604061313886828701612ce6565b9150509250925092565b6000806040838503121561315957613158613fd4565b5b600061316785828601612ce6565b925050602061317885828601612ca3565b9150509250929050565b6000806040838503121561319957613198613fd4565b5b60006131a785828601612ce6565b925050602083013567ffffffffffffffff8111156131c8576131c7613fcf565b5b6131d485828601612cb8565b9150509250929050565b600080604083850312156131f5576131f4613fd4565b5b600061320385828601612ce6565b925050602061321485828601612ce6565b9150509250929050565b600061322a8383613658565b60208301905092915050565b61323f81613d1a565b82525050565b600061325082613c63565b61325a8185613c91565b935061326583613c53565b8060005b8381101561329657815161327d888261321e565b975061328883613c84565b925050600181019050613269565b5085935050505092915050565b6132ac81613d2c565b82525050565b60006132bd82613c6e565b6132c78185613ca2565b93506132d7818560208601613dcf565b6132e081613fd9565b840191505092915050565b6132f481613dae565b82525050565b600061330582613c79565b61330f8185613cb3565b935061331f818560208601613dcf565b61332881613fd9565b840191505092915050565b6000613340603483613cb3565b915061334b82613ff7565b604082019050919050565b6000613363602883613cb3565b915061336e82614046565b604082019050919050565b6000613386602483613cb3565b915061339182614095565b604082019050919050565b60006133a9603383613cb3565b91506133b4826140e4565b604082019050919050565b60006133cc601983613cb3565b91506133d782614133565b602082019050919050565b60006133ef602b83613cb3565b91506133fa8261415c565b604082019050919050565b6000613412600f83613cb3565b915061341d826141ab565b602082019050919050565b6000613435602683613cb3565b9150613440826141d4565b604082019050919050565b6000613458602183613cb3565b915061346382614223565b604082019050919050565b600061347b602983613cb3565b915061348682614272565b604082019050919050565b600061349e603c83613cb3565b91506134a9826142c1565b604082019050919050565b60006134c1602583613cb3565b91506134cc82614310565b604082019050919050565b60006134e4603283613cb3565b91506134ef8261435f565b604082019050919050565b6000613507602183613cb3565b9150613512826143ae565b604082019050919050565b600061352a602a83613cb3565b9150613535826143fd565b604082019050919050565b600061354d602083613cb3565b91506135588261444c565b602082019050919050565b6000613570601b83613cb3565b915061357b82614475565b602082019050919050565b6000613593602483613cb3565b915061359e8261449e565b604082019050919050565b60006135b6602483613cb3565b91506135c1826144ed565b604082019050919050565b60006135d9602983613cb3565b91506135e48261453c565b604082019050919050565b60006135fc602983613cb3565b91506136078261458b565b604082019050919050565b600061361f602883613cb3565b915061362a826145da565b604082019050919050565b6000613642602183613cb3565b915061364d82614629565b604082019050919050565b61366181613d97565b82525050565b61367081613d97565b82525050565b600060208201905061368b6000830184613236565b92915050565b600060a0820190506136a66000830188613236565b6136b36020830187613236565b81810360408301526136c58186613245565b905081810360608301526136d98185613245565b905081810360808301526136ed81846132b2565b90509695505050505050565b600060a08201905061370e6000830188613236565b61371b6020830187613236565b6137286040830186613667565b6137356060830185613667565b818103608083015261374781846132b2565b90509695505050505050565b6000602082019050818103600083015261376d8184613245565b905092915050565b6000604082019050818103600083015261378f8185613245565b905081810360208301526137a38184613245565b90509392505050565b60006020820190506137c160008301846132a3565b92915050565b60006040820190506137dc60008301856132eb565b6137e96020830184613667565b9392505050565b6000602082019050818103600083015261380a81846132fa565b905092915050565b6000602082019050818103600083015261382b81613333565b9050919050565b6000602082019050818103600083015261384b81613356565b9050919050565b6000602082019050818103600083015261386b81613379565b9050919050565b6000602082019050818103600083015261388b8161339c565b9050919050565b600060208201905081810360008301526138ab816133bf565b9050919050565b600060208201905081810360008301526138cb816133e2565b9050919050565b600060208201905081810360008301526138eb81613405565b9050919050565b6000602082019050818103600083015261390b81613428565b9050919050565b6000602082019050818103600083015261392b8161344b565b9050919050565b6000602082019050818103600083015261394b8161346e565b9050919050565b6000602082019050818103600083015261396b81613491565b9050919050565b6000602082019050818103600083015261398b816134b4565b9050919050565b600060208201905081810360008301526139ab816134d7565b9050919050565b600060208201905081810360008301526139cb816134fa565b9050919050565b600060208201905081810360008301526139eb8161351d565b9050919050565b60006020820190508181036000830152613a0b81613540565b9050919050565b60006020820190508181036000830152613a2b81613563565b9050919050565b60006020820190508181036000830152613a4b81613586565b9050919050565b60006020820190508181036000830152613a6b816135a9565b9050919050565b60006020820190508181036000830152613a8b816135cc565b9050919050565b60006020820190508181036000830152613aab816135ef565b9050919050565b60006020820190508181036000830152613acb81613612565b9050919050565b60006020820190508181036000830152613aeb81613635565b9050919050565b6000602082019050613b076000830184613667565b92915050565b6000604082019050613b226000830185613667565b613b2f6020830184613667565b9392505050565b6000606082019050613b4b6000830186613667565b613b586020830185613667565b8181036040830152613b6a81846132fa565b9050949350505050565b6000613b7e613b8f565b9050613b8a8282613e34565b919050565b6000604051905090565b600067ffffffffffffffff821115613bb457613bb3613f6a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613be057613bdf613f6a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c0c57613c0b613f6a565b5b613c1582613fd9565b9050602081019050919050565b600067ffffffffffffffff821115613c3d57613c3c613f6a565b5b613c4682613fd9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ccf82613d97565b9150613cda83613d97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0f57613d0e613eae565b5b828201905092915050565b6000613d2582613d77565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613d728261470e565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613db982613d64565b9050919050565b82818337600083830152505050565b60005b83811015613ded578082015181840152602081019050613dd2565b83811115613dfc576000848401525b50505050565b60006002820490506001821680613e1a57607f821691505b60208210811415613e2e57613e2d613f0c565b5b50919050565b613e3d82613fd9565b810181811067ffffffffffffffff82111715613e5c57613e5b613f6a565b5b80604052505050565b6000613e7082613d97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ea357613ea2613eae565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613fb85760046000803e613fb5600051613fea565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4d7573742062652077686974656c697374656420666f7220737065636966696560008201527f6420494400000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207365742077686974656c69737420666f7220746f6b656e207460008201527f68617420646f6573206e6f742065786973742e00000000000000000000000000602082015250565b7f5075626c6963206d696e74206c696d6974207265616368656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d696e74206973207061757365642e0000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43757272656e7420737570706c792065786365656473206e657720737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420736574207075626c6963206d696e74206c696d697420666f7260008201527f20746f6b656e204944207468617420646f65736e742065786973742e00000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206e6f7420657863656564206d617820737570706c79206f6620494460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d757374206e6f7420657863656564206d617820737570706c79210000000000600082015250565b7f4d696e74206d7573742062652061637469766520666f7220737065636966696560008201527f6420494400000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156146885761470b565b614690613b8f565b60043d036004823e80513d602482011167ffffffffffffffff821117156146b857505061470b565b808201805167ffffffffffffffff8111156146d6575050505061470b565b80602083010160043d0385018111156146f357505050505061470b565b61470282602001850186613e34565b82955050505050505b90565b6003811061471f5761471e613edd565b5b50565b61472b81613d1a565b811461473657600080fd5b50565b61474281613d2c565b811461474d57600080fd5b50565b61475981613d38565b811461476457600080fd5b50565b6002811061477457600080fd5b50565b6003811061478457600080fd5b50565b61479081613d97565b811461479b57600080fd5b50565b6147a781613da1565b81146147b257600080fd5b5056fea2646970667358221220d06ad587a27496a44f26fc788c37a7a3d72faf5e7be616732d875b54c35d01e764736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c35760003560e01c80638854696a116100f9578063cc33c87511610097578063f242432a11610071578063f242432a14610527578063f2fde38b14610543578063fae3a45d1461055f578063fbe25d0e1461058f576101c3565b8063cc33c875146104a9578063e6a30385146104db578063e985e9c5146104f7576101c3565b8063a000de4e116100d3578063a000de4e14610425578063a0712d6814610441578063a22cb4651461045d578063b45105ec14610479576101c3565b80638854696a146103cd5780638da5cb5b146103e957806395d89b4114610407576101c3565b80632eb2c2d6116101665780634e1273f4116101405780634e1273f414610347578063715018a614610377578063753d75631461038157806386470b4b146103b1576101c3565b80632eb2c2d6146102ca5780633bb3a24d146102e6578063443aa53314610316576101c3565b806306fdde03116101a257806306fdde03146102445780630e89341c14610262578063156477d6146102925780632b466a37146102ae576101c3565b8062fdd58e146101c857806301538868146101f857806301ffc9a714610214575b600080fd5b6101e260048036038101906101dd9190612f23565b6105bf565b6040516101ef9190613af2565b60405180910390f35b610212600480360381019061020d9190613182565b610688565b005b61022e6004803603810190610229919061303b565b61076b565b60405161023b91906137ac565b60405180910390f35b61024c61084d565b60405161025991906137f0565b60405180910390f35b61027c600480360381019061027791906130c2565b6108db565b60405161028991906137f0565b60405180910390f35b6102ac60048036038101906102a79190613095565b61096f565b005b6102c860048036038101906102c391906131de565b610a18565b005b6102e460048036038101906102df9190612d7d565b610b0b565b005b61030060048036038101906102fb91906130c2565b610bac565b60405161030d91906137f0565b60405180910390f35b610330600480360381019061032b91906130c2565b610c54565b60405161033e9291906137c7565b60405180910390f35b610361600480360381019061035c9190612fc3565b610c85565b60405161036e9190613753565b60405180910390f35b61037f610d9e565b005b61039b60048036038101906103969190612d10565b610e26565b6040516103a89190613af2565b60405180910390f35b6103cb60048036038101906103c691906130ef565b610e3e565b005b6103e760048036038101906103e291906131de565b610f81565b005b6103f1611076565b6040516103fe9190613676565b60405180910390f35b61040f6110a0565b60405161041c91906137f0565b60405180910390f35b61043f600480360381019061043a9190613142565b61112e565b005b61045b600480360381019061045691906130c2565b6111ec565b005b61047760048036038101906104729190612ee3565b61164c565b005b610493600480360381019061048e91906130c2565b611662565b6040516104a09190613af2565b60405180910390f35b6104c360048036038101906104be91906130c2565b611682565b6040516104d293929190613b36565b60405180910390f35b6104f560048036038101906104f09190612f63565b611734565b005b610511600480360381019061050c9190612d3d565b6118a2565b60405161051e91906137ac565b60405180910390f35b610541600480360381019061053c9190612e4c565b611936565b005b61055d60048036038101906105589190612d10565b6119d7565b005b610579600480360381019061057491906130c2565b611acf565b6040516105869190613af2565b60405180910390f35b6105a960048036038101906105a491906130c2565b611aef565b6040516105b69190613af2565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610627906138b2565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610690611b0f565b73ffffffffffffffffffffffffffffffffffffffff166106ae611076565b73ffffffffffffffffffffffffffffffffffffffff1614610704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fb906139f2565b60405180910390fd5b8060066000848152602001908152602001600020600201908051906020019061072e929190612953565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161075f91906137f0565b60405180910390a25050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610846575061084582611b17565b5b9050919050565b6004805461085a90613e02565b80601f016020809104026020016040519081016040528092919081815260200182805461088690613e02565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b505050505081565b6060600280546108ea90613e02565b80601f016020809104026020016040519081016040528092919081815260200182805461091690613e02565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b50505050509050919050565b610977611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610995611076565b73ffffffffffffffffffffffffffffffffffffffff16146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e2906139f2565b60405180910390fd5b80600a60006101000a81548160ff02191690836001811115610a1057610a0f613edd565b5b021790555050565b610a20611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610a3e611076565b73ffffffffffffffffffffffffffffffffffffffff1614610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906139f2565b60405180910390fd5b80600660008481526020019081526020016000206000015410610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613912565b60405180910390fd5b8060066000848152602001908152602001600020600101819055505050565b610b13611b0f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b595750610b5885610b53611b0f565b6118a2565b5b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613992565b60405180910390fd5b610ba58585858585611b81565b5050505050565b6060600660008381526020019081526020016000206002018054610bcf90613e02565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb90613e02565b8015610c485780601f10610c1d57610100808354040283529160200191610c48565b820191906000526020600020905b815481529060010190602001808311610c2b57829003601f168201915b50505050509050919050565b60076020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154905082565b60608151835114610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290613a92565b60405180910390fd5b6000835167ffffffffffffffff811115610ce857610ce7613f6a565b5b604051908082528060200260200182016040528015610d165781602001602082028036833780820191505090505b50905060005b8451811015610d9357610d63858281518110610d3b57610d3a613f3b565b5b6020026020010151858381518110610d5657610d55613f3b565b5b60200260200101516105bf565b828281518110610d7657610d75613f3b565b5b60200260200101818152505080610d8c90613e65565b9050610d1c565b508091505092915050565b610da6611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610dc4611076565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e11906139f2565b60405180910390fd5b610e246000611e95565b565b60086020528060005260406000206000915090505481565b610e46611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610e64611076565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906139f2565b60405180910390fd5b6006600084815260200190815260200160002060010154600660008581526020019081526020016000206000015482610ef39190613cc4565b1115610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906139b2565b60405180910390fd5b80600660008581526020019081526020016000206000016000828254610f5a9190613cc4565b92505081905550610f7c82848360405180602001604052806000815250611f5b565b505050565b610f89611b0f565b73ffffffffffffffffffffffffffffffffffffffff16610fa7611076565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906139f2565b60405180910390fd5b600060066000848152602001908152602001600020600101541415611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613952565b60405180910390fd5b8060076000848152602001908152602001600020600101819055505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600580546110ad90613e02565b80601f01602080910402602001604051908101604052809291908181526020018280546110d990613e02565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505081565b611136611b0f565b73ffffffffffffffffffffffffffffffffffffffff16611154611076565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a1906139f2565b60405180910390fd5b806007600084815260200190815260200160002060000160006101000a81548160ff021916908360028111156111e3576111e2613edd565b5b02179055505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613a52565b60405180910390fd5b6000600181111561126e5761126d613edd565b5b600a60009054906101000a900460ff1660018111156112905761128f613edd565b5b14156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906138d2565b60405180910390fd5b600060028111156112e5576112e4613edd565b5b6007600083815260200190815260200160002060000160009054906101000a900460ff16600281111561131b5761131a613edd565b5b141561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613a32565b60405180910390fd5b6006600082815260200190815260200160002060010154600160066000848152602001908152602001600020600001546113969190613cc4565b11156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613a12565b60405180910390fd5b600160028111156113eb576113ea613edd565b5b6007600083815260200190815260200160002060000160009054906101000a900460ff16600281111561142157611420613edd565b5b14156114f25780600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613852565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611601565b6007600082815260200190815260200160002060010154600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020541061159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613892565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060008154809291906115fb90613e65565b91905055505b60066000828152602001908152602001600020600001600081548092919061162890613e65565b91905055506116493382600160405180602001604052806000815250611f5b565b50565b61165e611657611b0f565b83836120f1565b5050565b600060066000838152602001908152602001600020600001549050919050565b60066020528060005260406000206000915090508060000154908060010154908060020180546116b190613e02565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90613e02565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b5050505050905083565b61173c611b0f565b73ffffffffffffffffffffffffffffffffffffffff1661175a611076565b73ffffffffffffffffffffffffffffffffffffffff16146117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906139f2565b60405180910390fd5b6000600660008360ff16815260200190815260200160002060010154141561180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613872565b60405180910390fd5b60005b8383905081101561189c578160ff166008600086868581811061183657611835613f3b565b5b905060200201602081019061184b9190612d10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061189490613e65565b915050611810565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61193e611b0f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061198457506119838561197e611b0f565b6118a2565b5b6119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90613932565b60405180910390fd5b6119d0858585858561225e565b5050505050565b6119df611b0f565b73ffffffffffffffffffffffffffffffffffffffff166119fd611076565b73ffffffffffffffffffffffffffffffffffffffff1614611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906138f2565b60405180910390fd5b611acc81611e95565b50565b600060076000838152602001908152602001600020600101549050919050565b600060066000838152602001908152602001600020600101549050919050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8151835114611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90613ab2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613972565b60405180910390fd5b6000611c3f611b0f565b9050611c4f8187878787876124e0565b60005b8451811015611e00576000858281518110611c7057611c6f613f3b565b5b602002602001015190506000858381518110611c8f57611c8e613f3b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906139d2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de59190613cc4565b9250508190555050505080611df990613e65565b9050611c52565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e77929190613775565b60405180910390a4611e8d8187878787876124e8565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290613ad2565b60405180910390fd5b6000611fd5611b0f565b9050611ff681600087611fe7886126cf565b611ff0886126cf565b876124e0565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120559190613cc4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516120d3929190613b0d565b60405180910390a46120ea81600087878787612749565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790613a72565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161225191906137ac565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590613972565b60405180910390fd5b60006122d8611b0f565b90506122f88187876122e9886126cf565b6122f2886126cf565b876124e0565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561238f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612386906139d2565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124449190613cc4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516124c1929190613b0d565b60405180910390a46124d7828888888888612749565b50505050505050565b505050505050565b6125078473ffffffffffffffffffffffffffffffffffffffff16612930565b156126c7578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161254d959493929190613691565b602060405180830381600087803b15801561256757600080fd5b505af192505050801561259857506040513d601f19601f820116820180604052508101906125959190613068565b60015b61263e576125a4613f99565b806308c379a0141561260157506125b9614678565b806125c45750612603565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f891906137f0565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590613812565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90613832565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156126ee576126ed613f6a565b5b60405190808252806020026020018201604052801561271c5781602001602082028036833780820191505090505b509050828160008151811061273457612733613f3b565b5b60200260200101818152505080915050919050565b6127688473ffffffffffffffffffffffffffffffffffffffff16612930565b15612928578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016127ae9594939291906136f9565b602060405180830381600087803b1580156127c857600080fd5b505af19250505080156127f957506040513d601f19601f820116820180604052508101906127f69190613068565b60015b61289f57612805613f99565b806308c379a01415612862575061281a614678565b806128255750612864565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285991906137f0565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289690613812565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d90613832565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461295f90613e02565b90600052602060002090601f01602090048101928261298157600085556129c8565b82601f1061299a57805160ff19168380011785556129c8565b828001600101855582156129c8579182015b828111156129c75782518255916020019190600101906129ac565b5b5090506129d591906129d9565b5090565b5b808211156129f25760008160009055506001016129da565b5090565b6000612a09612a0484613b99565b613b74565b90508083825260208201905082856020860282011115612a2c57612a2b613fc5565b5b60005b85811015612a5c5781612a428882612b5a565b845260208401935060208301925050600181019050612a2f565b5050509392505050565b6000612a79612a7484613bc5565b613b74565b90508083825260208201905082856020860282011115612a9c57612a9b613fc5565b5b60005b85811015612acc5781612ab28882612ce6565b845260208401935060208301925050600181019050612a9f565b5050509392505050565b6000612ae9612ae484613bf1565b613b74565b905082815260208101848484011115612b0557612b04613fca565b5b612b10848285613dc0565b509392505050565b6000612b2b612b2684613c22565b613b74565b905082815260208101848484011115612b4757612b46613fca565b5b612b52848285613dc0565b509392505050565b600081359050612b6981614722565b92915050565b60008083601f840112612b8557612b84613fc0565b5b8235905067ffffffffffffffff811115612ba257612ba1613fbb565b5b602083019150836020820283011115612bbe57612bbd613fc5565b5b9250929050565b600082601f830112612bda57612bd9613fc0565b5b8135612bea8482602086016129f6565b91505092915050565b600082601f830112612c0857612c07613fc0565b5b8135612c18848260208601612a66565b91505092915050565b600081359050612c3081614739565b92915050565b600081359050612c4581614750565b92915050565b600081519050612c5a81614750565b92915050565b600082601f830112612c7557612c74613fc0565b5b8135612c85848260208601612ad6565b91505092915050565b600081359050612c9d81614767565b92915050565b600081359050612cb281614777565b92915050565b600082601f830112612ccd57612ccc613fc0565b5b8135612cdd848260208601612b18565b91505092915050565b600081359050612cf581614787565b92915050565b600081359050612d0a8161479e565b92915050565b600060208284031215612d2657612d25613fd4565b5b6000612d3484828501612b5a565b91505092915050565b60008060408385031215612d5457612d53613fd4565b5b6000612d6285828601612b5a565b9250506020612d7385828601612b5a565b9150509250929050565b600080600080600060a08688031215612d9957612d98613fd4565b5b6000612da788828901612b5a565b9550506020612db888828901612b5a565b945050604086013567ffffffffffffffff811115612dd957612dd8613fcf565b5b612de588828901612bf3565b935050606086013567ffffffffffffffff811115612e0657612e05613fcf565b5b612e1288828901612bf3565b925050608086013567ffffffffffffffff811115612e3357612e32613fcf565b5b612e3f88828901612c60565b9150509295509295909350565b600080600080600060a08688031215612e6857612e67613fd4565b5b6000612e7688828901612b5a565b9550506020612e8788828901612b5a565b9450506040612e9888828901612ce6565b9350506060612ea988828901612ce6565b925050608086013567ffffffffffffffff811115612eca57612ec9613fcf565b5b612ed688828901612c60565b9150509295509295909350565b60008060408385031215612efa57612ef9613fd4565b5b6000612f0885828601612b5a565b9250506020612f1985828601612c21565b9150509250929050565b60008060408385031215612f3a57612f39613fd4565b5b6000612f4885828601612b5a565b9250506020612f5985828601612ce6565b9150509250929050565b600080600060408486031215612f7c57612f7b613fd4565b5b600084013567ffffffffffffffff811115612f9a57612f99613fcf565b5b612fa686828701612b6f565b93509350506020612fb986828701612cfb565b9150509250925092565b60008060408385031215612fda57612fd9613fd4565b5b600083013567ffffffffffffffff811115612ff857612ff7613fcf565b5b61300485828601612bc5565b925050602083013567ffffffffffffffff81111561302557613024613fcf565b5b61303185828601612bf3565b9150509250929050565b60006020828403121561305157613050613fd4565b5b600061305f84828501612c36565b91505092915050565b60006020828403121561307e5761307d613fd4565b5b600061308c84828501612c4b565b91505092915050565b6000602082840312156130ab576130aa613fd4565b5b60006130b984828501612c8e565b91505092915050565b6000602082840312156130d8576130d7613fd4565b5b60006130e684828501612ce6565b91505092915050565b60008060006060848603121561310857613107613fd4565b5b600061311686828701612ce6565b935050602061312786828701612b5a565b925050604061313886828701612ce6565b9150509250925092565b6000806040838503121561315957613158613fd4565b5b600061316785828601612ce6565b925050602061317885828601612ca3565b9150509250929050565b6000806040838503121561319957613198613fd4565b5b60006131a785828601612ce6565b925050602083013567ffffffffffffffff8111156131c8576131c7613fcf565b5b6131d485828601612cb8565b9150509250929050565b600080604083850312156131f5576131f4613fd4565b5b600061320385828601612ce6565b925050602061321485828601612ce6565b9150509250929050565b600061322a8383613658565b60208301905092915050565b61323f81613d1a565b82525050565b600061325082613c63565b61325a8185613c91565b935061326583613c53565b8060005b8381101561329657815161327d888261321e565b975061328883613c84565b925050600181019050613269565b5085935050505092915050565b6132ac81613d2c565b82525050565b60006132bd82613c6e565b6132c78185613ca2565b93506132d7818560208601613dcf565b6132e081613fd9565b840191505092915050565b6132f481613dae565b82525050565b600061330582613c79565b61330f8185613cb3565b935061331f818560208601613dcf565b61332881613fd9565b840191505092915050565b6000613340603483613cb3565b915061334b82613ff7565b604082019050919050565b6000613363602883613cb3565b915061336e82614046565b604082019050919050565b6000613386602483613cb3565b915061339182614095565b604082019050919050565b60006133a9603383613cb3565b91506133b4826140e4565b604082019050919050565b60006133cc601983613cb3565b91506133d782614133565b602082019050919050565b60006133ef602b83613cb3565b91506133fa8261415c565b604082019050919050565b6000613412600f83613cb3565b915061341d826141ab565b602082019050919050565b6000613435602683613cb3565b9150613440826141d4565b604082019050919050565b6000613458602183613cb3565b915061346382614223565b604082019050919050565b600061347b602983613cb3565b915061348682614272565b604082019050919050565b600061349e603c83613cb3565b91506134a9826142c1565b604082019050919050565b60006134c1602583613cb3565b91506134cc82614310565b604082019050919050565b60006134e4603283613cb3565b91506134ef8261435f565b604082019050919050565b6000613507602183613cb3565b9150613512826143ae565b604082019050919050565b600061352a602a83613cb3565b9150613535826143fd565b604082019050919050565b600061354d602083613cb3565b91506135588261444c565b602082019050919050565b6000613570601b83613cb3565b915061357b82614475565b602082019050919050565b6000613593602483613cb3565b915061359e8261449e565b604082019050919050565b60006135b6602483613cb3565b91506135c1826144ed565b604082019050919050565b60006135d9602983613cb3565b91506135e48261453c565b604082019050919050565b60006135fc602983613cb3565b91506136078261458b565b604082019050919050565b600061361f602883613cb3565b915061362a826145da565b604082019050919050565b6000613642602183613cb3565b915061364d82614629565b604082019050919050565b61366181613d97565b82525050565b61367081613d97565b82525050565b600060208201905061368b6000830184613236565b92915050565b600060a0820190506136a66000830188613236565b6136b36020830187613236565b81810360408301526136c58186613245565b905081810360608301526136d98185613245565b905081810360808301526136ed81846132b2565b90509695505050505050565b600060a08201905061370e6000830188613236565b61371b6020830187613236565b6137286040830186613667565b6137356060830185613667565b818103608083015261374781846132b2565b90509695505050505050565b6000602082019050818103600083015261376d8184613245565b905092915050565b6000604082019050818103600083015261378f8185613245565b905081810360208301526137a38184613245565b90509392505050565b60006020820190506137c160008301846132a3565b92915050565b60006040820190506137dc60008301856132eb565b6137e96020830184613667565b9392505050565b6000602082019050818103600083015261380a81846132fa565b905092915050565b6000602082019050818103600083015261382b81613333565b9050919050565b6000602082019050818103600083015261384b81613356565b9050919050565b6000602082019050818103600083015261386b81613379565b9050919050565b6000602082019050818103600083015261388b8161339c565b9050919050565b600060208201905081810360008301526138ab816133bf565b9050919050565b600060208201905081810360008301526138cb816133e2565b9050919050565b600060208201905081810360008301526138eb81613405565b9050919050565b6000602082019050818103600083015261390b81613428565b9050919050565b6000602082019050818103600083015261392b8161344b565b9050919050565b6000602082019050818103600083015261394b8161346e565b9050919050565b6000602082019050818103600083015261396b81613491565b9050919050565b6000602082019050818103600083015261398b816134b4565b9050919050565b600060208201905081810360008301526139ab816134d7565b9050919050565b600060208201905081810360008301526139cb816134fa565b9050919050565b600060208201905081810360008301526139eb8161351d565b9050919050565b60006020820190508181036000830152613a0b81613540565b9050919050565b60006020820190508181036000830152613a2b81613563565b9050919050565b60006020820190508181036000830152613a4b81613586565b9050919050565b60006020820190508181036000830152613a6b816135a9565b9050919050565b60006020820190508181036000830152613a8b816135cc565b9050919050565b60006020820190508181036000830152613aab816135ef565b9050919050565b60006020820190508181036000830152613acb81613612565b9050919050565b60006020820190508181036000830152613aeb81613635565b9050919050565b6000602082019050613b076000830184613667565b92915050565b6000604082019050613b226000830185613667565b613b2f6020830184613667565b9392505050565b6000606082019050613b4b6000830186613667565b613b586020830185613667565b8181036040830152613b6a81846132fa565b9050949350505050565b6000613b7e613b8f565b9050613b8a8282613e34565b919050565b6000604051905090565b600067ffffffffffffffff821115613bb457613bb3613f6a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613be057613bdf613f6a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c0c57613c0b613f6a565b5b613c1582613fd9565b9050602081019050919050565b600067ffffffffffffffff821115613c3d57613c3c613f6a565b5b613c4682613fd9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ccf82613d97565b9150613cda83613d97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0f57613d0e613eae565b5b828201905092915050565b6000613d2582613d77565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613d728261470e565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613db982613d64565b9050919050565b82818337600083830152505050565b60005b83811015613ded578082015181840152602081019050613dd2565b83811115613dfc576000848401525b50505050565b60006002820490506001821680613e1a57607f821691505b60208210811415613e2e57613e2d613f0c565b5b50919050565b613e3d82613fd9565b810181811067ffffffffffffffff82111715613e5c57613e5b613f6a565b5b80604052505050565b6000613e7082613d97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ea357613ea2613eae565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613fb85760046000803e613fb5600051613fea565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4d7573742062652077686974656c697374656420666f7220737065636966696560008201527f6420494400000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207365742077686974656c69737420666f7220746f6b656e207460008201527f68617420646f6573206e6f742065786973742e00000000000000000000000000602082015250565b7f5075626c6963206d696e74206c696d6974207265616368656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d696e74206973207061757365642e0000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43757272656e7420737570706c792065786365656473206e657720737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420736574207075626c6963206d696e74206c696d697420666f7260008201527f20746f6b656e204944207468617420646f65736e742065786973742e00000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206e6f7420657863656564206d617820737570706c79206f6620494460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d757374206e6f7420657863656564206d617820737570706c79210000000000600082015250565b7f4d696e74206d7573742062652061637469766520666f7220737065636966696560008201527f6420494400000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156146885761470b565b614690613b8f565b60043d036004823e80513d602482011167ffffffffffffffff821117156146b857505061470b565b808201805167ffffffffffffffff8111156146d6575050505061470b565b80602083010160043d0385018111156146f357505050505061470b565b61470282602001850186613e34565b82955050505050505b90565b6003811061471f5761471e613edd565b5b50565b61472b81613d1a565b811461473657600080fd5b50565b61474281613d2c565b811461474d57600080fd5b50565b61475981613d38565b811461476457600080fd5b50565b6002811061477457600080fd5b50565b6003811061478457600080fd5b50565b61479081613d97565b811461479b57600080fd5b50565b6147a781613da1565b81146147b257600080fd5b5056fea2646970667358221220d06ad587a27496a44f26fc788c37a7a3d72faf5e7be616732d875b54c35d01e764736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.