ERC-1155
NFT
Overview
Max Total Supply
360 CryptoFish
Holders
294
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:
CryptoFish
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: UNLICENSED pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; contract CryptoFish is ERC1155, Ownable, ERC1155Burnable { // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri = "https://www.muratsayginer.com/nfts/cryptofish/"; uint256 public nftPrice = 500000000000000000 wei; // 0.5 Eth uint256 public amountMinted = 0; uint256 public amountMintable = 0; // Mapping from token ID to max mint mapping(uint256 => uint256) private _mintedMint; mapping(uint256 => uint256) private _maxMint; uint256 private maxToken = 29; constructor() ERC1155(_uri) {} function setURI(string memory newuri) public onlyOwner { _setURI(newuri); _uri = newuri; } function mint() public payable { require(nftPrice == msg.value, "Ether value sent is incorrect"); uint256[] memory _available = new uint256[](maxToken); uint256 len = 0; for (uint256 i=0; i < maxToken; i++) { //for loop example if(_mintedMint[i] < _maxMint[i]) { _available[len] = i; len++; } } require(len > 0, "ERC1155: No fish available to mint."); uint256 id = _available[_getRandom() % len]; _mint(msg.sender, id, 1, ""); _mintedMint[id] += 1; amountMinted += 1; } function mintOwner(address account, uint256 id, uint256 amount, bytes memory data) public onlyOwner { _mint(account, id, amount, data); _mintedMint[id] += amount; amountMinted += amount; if(_mintedMint[id] > _maxMint[id]) { amountMintable += _mintedMint[id] - _maxMint[id]; _maxMint[id] = _mintedMint[id]; } } function mintOwnerBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public onlyOwner { for (uint256 i = 0; i < ids.length; i++) { mintOwner(to, ids[i], amounts[i], data); } } function getPrice() public view returns (uint256 price) { return nftPrice; } function getAmountMinted(uint256 id) public view returns (uint256 amount) { return _mintedMint[id]; } function setTokenSettingsOwner(uint256 minid, uint256 maxid, uint256 maxAmount) public onlyOwner { for (uint256 id = minid; id <= maxid; id++) { amountMintable += maxAmount; amountMintable -= _maxMint[id]; _maxMint[id] = maxAmount; } } function setSettingsOwner(uint256 max, uint256 price) public onlyOwner { maxToken = max; nftPrice = price; } function uri(uint256 tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(super.uri(tokenId), "{id}/metadata.json")); } function withdraw(uint256 amount) external onlyOwner { require(amount <= address(this).balance, 'Insufficient balance'); payable(msg.sender).transfer(amount); } function withdrawAll() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function contractURI() public view returns (string memory) { return string(abi.encodePacked(_uri, "metadata.json")); } /* Internal functions */ function _getRandom() internal view returns (uint256) { return uint256(blockhash(block.number - 1)); } }
// SPDX-License-Identifier: MIT 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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, 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 account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT 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 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. 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. 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 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 pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 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 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 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":[],"name":"amountMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getAmountMinted","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"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":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintOwnerBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSettingsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minid","type":"uint256"},{"internalType":"uint256","name":"maxid","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"setTokenSettingsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602e815260200162004b3a602e9139600490805190602001906200003592919062000214565b506706f05b59d3b2000060055560006006556000600755601d600a553480156200005e57600080fd5b50600480546200006e90620002c4565b80601f01602080910402602001604051908101604052809291908181526020018280546200009c90620002c4565b8015620000ed5780601f10620000c157610100808354040283529160200191620000ed565b820191906000526020600020905b815481529060010190602001808311620000cf57829003601f168201915b505050505062000103816200012a60201b60201c565b5062000124620001186200014660201b60201c565b6200014e60201b60201c565b62000329565b80600290805190602001906200014292919062000214565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022290620002c4565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b60006002820490506001821680620002dd57607f821691505b60208210811415620002f457620002f3620002fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61480180620003396000396000f3fe60806040526004361061019b5760003560e01c8063715018a6116100ec578063a49feed61161008a578063e985e9c511610064578063e985e9c51461057c578063f242432a146105b9578063f2fde38b146105e2578063f5298aca1461060b5761019b565b8063a49feed6146104fd578063e4991b6b14610528578063e8a3d485146105515761019b565b80638b79f965116100c65780638b79f965146104555780638da5cb5b1461047e57806398d5fdca146104a9578063a22cb465146104d45761019b565b8063715018a6146103fc5780637af284d514610413578063853828b61461043e5761019b565b80631249c58b116101595780633a07fb24116101335780633a07fb24146103445780634e1273f41461036d578063585b0241146103aa5780636b20c454146103d35761019b565b80631249c58b146102e85780632e1a7d4d146102f25780632eb2c2d61461031b5761019b565b8062fdd58e146101a057806301ffc9a7146101dd57806302fe53051461021a5780630d39fc81146102435780630e89341c1461026e5780630fafc2be146102ab575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c291906130de565b610634565b6040516101d49190613c56565b60405180910390f35b3480156101e957600080fd5b5061020460048036038101906101ff919061326c565b6106fd565b60405161021191906139d9565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c91906132c6565b6107df565b005b34801561024f57600080fd5b5061025861087e565b6040516102659190613c56565b60405180910390f35b34801561027a57600080fd5b506102956004803603810190610290919061330f565b610884565b6040516102a291906139f4565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061330f565b6108b5565b6040516102df9190613c56565b60405180910390f35b6102f06108d2565b005b3480156102fe57600080fd5b506103196004803603810190610314919061330f565b610abe565b005b34801561032757600080fd5b50610342600480360381019061033d9190612df2565b610bc7565b005b34801561035057600080fd5b5061036b6004803603810190610366919061333c565b610c68565b005b34801561037957600080fd5b50610394600480360381019061038f91906131f4565b610cf6565b6040516103a19190613980565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc919061337c565b610e0f565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612f58565b610f0e565b005b34801561040857600080fd5b50610411610fab565b005b34801561041f57600080fd5b50610428611033565b6040516104359190613c56565b60405180910390f35b34801561044a57600080fd5b50610453611039565b005b34801561046157600080fd5b5061047c60048036038101906104779190612fe3565b6110fe565b005b34801561048a57600080fd5b506104936111e0565b6040516104a091906138a3565b60405180910390f35b3480156104b557600080fd5b506104be61120a565b6040516104cb9190613c56565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f6919061309e565b611214565b005b34801561050957600080fd5b50610512611395565b60405161051f9190613c56565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613171565b61139b565b005b34801561055d57600080fd5b50610566611510565b60405161057391906139f4565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612db2565b611538565b6040516105b091906139d9565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190612ec1565b6115cc565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612d85565b61166d565b005b34801561061757600080fd5b50610632600480360381019061062d919061311e565b611765565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90613a56565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d857506107d782611802565b5b9050919050565b6107e761186c565b73ffffffffffffffffffffffffffffffffffffffff166108056111e0565b73ffffffffffffffffffffffffffffffffffffffff161461085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290613b96565b60405180910390fd5b61086481611874565b806004908051906020019061087a929190612a5d565b5050565b60055481565b606061088f8261188e565b60405160200161089f919061385f565b6040516020818303038152906040529050919050565b600060086000838152602001908152602001600020549050919050565b3460055414610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90613ad6565b60405180910390fd5b6000600a5467ffffffffffffffff811115610934576109336140e3565b5b6040519080825280602002602001820160405280156109625781602001602082028036833780820191505090505b5090506000805b600a548110156109e3576009600082815260200190815260200160002054600860008381526020019081526020016000205410156109d057808383815181106109b5576109b46140b4565b5b60200260200101818152505081806109cc90613fad565b9250505b80806109db90613fad565b915050610969565b5060008111610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613bf6565b60405180910390fd5b60008282610a33611922565b610a3d9190613ff6565b81518110610a4e57610a4d6140b4565b5b60200260200101519050610a74338260016040518060200160405280600081525061193a565b6001600860008381526020019081526020016000206000828254610a989190613e0a565b92505081905550600160066000828254610ab29190613e0a565b92505081905550505050565b610ac661186c565b73ffffffffffffffffffffffffffffffffffffffff16610ae46111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613b96565b60405180910390fd5b47811115610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613af6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bc3573d6000803e3d6000fd5b5050565b610bcf61186c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c155750610c1485610c0f61186c565b611538565b5b610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613b36565b60405180910390fd5b610c618585858585611ad0565b5050505050565b610c7061186c565b73ffffffffffffffffffffffffffffffffffffffff16610c8e6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613b96565b60405180910390fd5b81600a81905550806005819055505050565b60608151835114610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613bd6565b60405180910390fd5b6000835167ffffffffffffffff811115610d5957610d586140e3565b5b604051908082528060200260200182016040528015610d875781602001602082028036833780820191505090505b50905060005b8451811015610e0457610dd4858281518110610dac57610dab6140b4565b5b6020026020010151858381518110610dc757610dc66140b4565b5b6020026020010151610634565b828281518110610de757610de66140b4565b5b60200260200101818152505080610dfd90613fad565b9050610d8d565b508091505092915050565b610e1761186c565b73ffffffffffffffffffffffffffffffffffffffff16610e356111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613b96565b60405180910390fd5b60008390505b828111610f08578160076000828254610eaa9190613e0a565b92505081905550600960008281526020019081526020016000205460076000828254610ed69190613e60565b925050819055508160096000838152602001908152602001600020819055508080610f0090613fad565b915050610e91565b50505050565b610f1661186c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f5c5750610f5b83610f5661186c565b611538565b5b610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290613ab6565b60405180910390fd5b610fa6838383611de4565b505050565b610fb361186c565b73ffffffffffffffffffffffffffffffffffffffff16610fd16111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613b96565b60405180910390fd5b6110316000612095565b565b60065481565b61104161186c565b73ffffffffffffffffffffffffffffffffffffffff1661105f6111e0565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613b96565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110fb573d6000803e3d6000fd5b50565b61110661186c565b73ffffffffffffffffffffffffffffffffffffffff166111246111e0565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613b96565b60405180910390fd5b60005b83518110156111d9576111c68585838151811061119d5761119c6140b4565b5b60200260200101518584815181106111b8576111b76140b4565b5b60200260200101518561139b565b80806111d190613fad565b91505061117d565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600554905090565b8173ffffffffffffffffffffffffffffffffffffffff1661123361186c565b73ffffffffffffffffffffffffffffffffffffffff16141561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613bb6565b60405180910390fd5b806001600061129761186c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134461186c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138991906139d9565b60405180910390a35050565b60075481565b6113a361186c565b73ffffffffffffffffffffffffffffffffffffffff166113c16111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90613b96565b60405180910390fd5b6114238484848461193a565b816008600085815260200190815260200160002060008282546114469190613e0a565b92505081905550816006600082825461145f9190613e0a565b9250508190555060096000848152602001908152602001600020546008600085815260200190815260200160002054111561150a57600960008481526020019081526020016000205460086000858152602001908152602001600020546114c69190613e60565b600760008282546114d79190613e0a565b92505081905550600860008481526020019081526020016000205460096000858152602001908152602001600020819055505b50505050565b606060046040516020016115249190613881565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d461186c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061161a57506116198561161461186c565b611538565b5b611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613ab6565b60405180910390fd5b611666858585858561215b565b5050505050565b61167561186c565b73ffffffffffffffffffffffffffffffffffffffff166116936111e0565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613b96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613a76565b60405180910390fd5b61176281612095565b50565b61176d61186c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117b357506117b2836117ad61186c565b611538565b5b6117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990613ab6565b60405180910390fd5b6117fd8383836123dd565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061188a929190612a5d565b5050565b60606002805461189d90613f4a565b80601f01602080910402602001604051908101604052809291908181526020018280546118c990613f4a565b80156119165780601f106118eb57610100808354040283529160200191611916565b820191906000526020600020905b8154815290600101906020018083116118f957829003601f168201915b50505050509050919050565b60006001436119319190613e60565b4060001c905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190613c36565b60405180910390fd5b60006119b461186c565b90506119d5816000876119c6886125fa565b6119cf886125fa565b87612674565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a349190613e0a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611ab2929190613c71565b60405180910390a4611ac98160008787878761267c565b5050505050565b8151835114611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90613c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613b16565b60405180910390fd5b6000611b8e61186c565b9050611b9e818787878787612674565b60005b8451811015611d4f576000858281518110611bbf57611bbe6140b4565b5b602002602001015190506000858381518110611bde57611bdd6140b4565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690613b76565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d349190613e0a565b9250508190555050505080611d4890613fad565b9050611ba1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611dc69291906139a2565b60405180910390a4611ddc818787878787612863565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90613b56565b60405180910390fd5b8051825114611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613c16565b60405180910390fd5b6000611ea261186c565b9050611ec281856000868660405180602001604052806000815250612674565b60005b835181101561200f576000848281518110611ee357611ee26140b4565b5b602002602001015190506000848381518110611f0257611f016140b4565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613a96565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061200790613fad565b915050611ec5565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516120879291906139a2565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290613b16565b60405180910390fd5b60006121d561186c565b90506121f58187876121e6886125fa565b6121ef886125fa565b87612674565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390613b76565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123419190613e0a565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516123be929190613c71565b60405180910390a46123d482888888888861267c565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244490613b56565b60405180910390fd5b600061245761186c565b905061248781856000612469876125fa565b612472876125fa565b60405180602001604052806000815250612674565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590613a96565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125eb929190613c71565b60405180910390a45050505050565b60606000600167ffffffffffffffff811115612619576126186140e3565b5b6040519080825280602002602001820160405280156126475781602001602082028036833780820191505090505b509050828160008151811061265f5761265e6140b4565b5b60200260200101818152505080915050919050565b505050505050565b61269b8473ffffffffffffffffffffffffffffffffffffffff16612a4a565b1561285b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126e1959493929190613926565b602060405180830381600087803b1580156126fb57600080fd5b505af192505050801561272c57506040513d601f19601f820116820180604052508101906127299190613299565b60015b6127d257612738614112565b806308c379a01415612795575061274d6146d9565b806127585750612797565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c91906139f4565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990613a16565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090613a36565b60405180910390fd5b505b505050505050565b6128828473ffffffffffffffffffffffffffffffffffffffff16612a4a565b15612a42578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128c89594939291906138be565b602060405180830381600087803b1580156128e257600080fd5b505af192505050801561291357506040513d601f19601f820116820180604052508101906129109190613299565b60015b6129b95761291f614112565b806308c379a0141561297c57506129346146d9565b8061293f575061297e565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297391906139f4565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090613a16565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3790613a36565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054612a6990613f4a565b90600052602060002090601f016020900481019282612a8b5760008555612ad2565b82601f10612aa457805160ff1916838001178555612ad2565b82800160010185558215612ad2579182015b82811115612ad1578251825591602001919060010190612ab6565b5b509050612adf9190612ae3565b5090565b5b80821115612afc576000816000905550600101612ae4565b5090565b6000612b13612b0e84613cbf565b613c9a565b90508083825260208201905082856020860282011115612b3657612b35614139565b5b60005b85811015612b665781612b4c8882612c64565b845260208401935060208301925050600181019050612b39565b5050509392505050565b6000612b83612b7e84613ceb565b613c9a565b90508083825260208201905082856020860282011115612ba657612ba5614139565b5b60005b85811015612bd65781612bbc8882612d70565b845260208401935060208301925050600181019050612ba9565b5050509392505050565b6000612bf3612bee84613d17565b613c9a565b905082815260208101848484011115612c0f57612c0e61413e565b5b612c1a848285613f08565b509392505050565b6000612c35612c3084613d48565b613c9a565b905082815260208101848484011115612c5157612c5061413e565b5b612c5c848285613f08565b509392505050565b600081359050612c738161476f565b92915050565b600082601f830112612c8e57612c8d614134565b5b8135612c9e848260208601612b00565b91505092915050565b600082601f830112612cbc57612cbb614134565b5b8135612ccc848260208601612b70565b91505092915050565b600081359050612ce481614786565b92915050565b600081359050612cf98161479d565b92915050565b600081519050612d0e8161479d565b92915050565b600082601f830112612d2957612d28614134565b5b8135612d39848260208601612be0565b91505092915050565b600082601f830112612d5757612d56614134565b5b8135612d67848260208601612c22565b91505092915050565b600081359050612d7f816147b4565b92915050565b600060208284031215612d9b57612d9a614148565b5b6000612da984828501612c64565b91505092915050565b60008060408385031215612dc957612dc8614148565b5b6000612dd785828601612c64565b9250506020612de885828601612c64565b9150509250929050565b600080600080600060a08688031215612e0e57612e0d614148565b5b6000612e1c88828901612c64565b9550506020612e2d88828901612c64565b945050604086013567ffffffffffffffff811115612e4e57612e4d614143565b5b612e5a88828901612ca7565b935050606086013567ffffffffffffffff811115612e7b57612e7a614143565b5b612e8788828901612ca7565b925050608086013567ffffffffffffffff811115612ea857612ea7614143565b5b612eb488828901612d14565b9150509295509295909350565b600080600080600060a08688031215612edd57612edc614148565b5b6000612eeb88828901612c64565b9550506020612efc88828901612c64565b9450506040612f0d88828901612d70565b9350506060612f1e88828901612d70565b925050608086013567ffffffffffffffff811115612f3f57612f3e614143565b5b612f4b88828901612d14565b9150509295509295909350565b600080600060608486031215612f7157612f70614148565b5b6000612f7f86828701612c64565b935050602084013567ffffffffffffffff811115612fa057612f9f614143565b5b612fac86828701612ca7565b925050604084013567ffffffffffffffff811115612fcd57612fcc614143565b5b612fd986828701612ca7565b9150509250925092565b60008060008060808587031215612ffd57612ffc614148565b5b600061300b87828801612c64565b945050602085013567ffffffffffffffff81111561302c5761302b614143565b5b61303887828801612ca7565b935050604085013567ffffffffffffffff81111561305957613058614143565b5b61306587828801612ca7565b925050606085013567ffffffffffffffff81111561308657613085614143565b5b61309287828801612d14565b91505092959194509250565b600080604083850312156130b5576130b4614148565b5b60006130c385828601612c64565b92505060206130d485828601612cd5565b9150509250929050565b600080604083850312156130f5576130f4614148565b5b600061310385828601612c64565b925050602061311485828601612d70565b9150509250929050565b60008060006060848603121561313757613136614148565b5b600061314586828701612c64565b935050602061315686828701612d70565b925050604061316786828701612d70565b9150509250925092565b6000806000806080858703121561318b5761318a614148565b5b600061319987828801612c64565b94505060206131aa87828801612d70565b93505060406131bb87828801612d70565b925050606085013567ffffffffffffffff8111156131dc576131db614143565b5b6131e887828801612d14565b91505092959194509250565b6000806040838503121561320b5761320a614148565b5b600083013567ffffffffffffffff81111561322957613228614143565b5b61323585828601612c79565b925050602083013567ffffffffffffffff81111561325657613255614143565b5b61326285828601612ca7565b9150509250929050565b60006020828403121561328257613281614148565b5b600061329084828501612cea565b91505092915050565b6000602082840312156132af576132ae614148565b5b60006132bd84828501612cff565b91505092915050565b6000602082840312156132dc576132db614148565b5b600082013567ffffffffffffffff8111156132fa576132f9614143565b5b61330684828501612d42565b91505092915050565b60006020828403121561332557613324614148565b5b600061333384828501612d70565b91505092915050565b6000806040838503121561335357613352614148565b5b600061336185828601612d70565b925050602061337285828601612d70565b9150509250929050565b60008060006060848603121561339557613394614148565b5b60006133a386828701612d70565b93505060206133b486828701612d70565b92505060406133c586828701612d70565b9150509250925092565b60006133db8383613841565b60208301905092915050565b6133f081613e94565b82525050565b600061340182613d9e565b61340b8185613dcc565b935061341683613d79565b8060005b8381101561344757815161342e88826133cf565b975061343983613dbf565b92505060018101905061341a565b5085935050505092915050565b61345d81613ea6565b82525050565b600061346e82613da9565b6134788185613ddd565b9350613488818560208601613f17565b6134918161414d565b840191505092915050565b60006134a782613db4565b6134b18185613dee565b93506134c1818560208601613f17565b6134ca8161414d565b840191505092915050565b60006134e082613db4565b6134ea8185613dff565b93506134fa818560208601613f17565b80840191505092915050565b6000815461351381613f4a565b61351d8186613dff565b9450600182166000811461353857600181146135495761357c565b60ff1983168652818601935061357c565b61355285613d89565b60005b8381101561357457815481890152600182019150602081019050613555565b838801955050505b50505092915050565b6000613592603483613dee565b915061359d8261416b565b604082019050919050565b60006135b5602883613dee565b91506135c0826141ba565b604082019050919050565b60006135d8602b83613dee565b91506135e382614209565b604082019050919050565b60006135fb602683613dee565b915061360682614258565b604082019050919050565b600061361e602483613dee565b9150613629826142a7565b604082019050919050565b6000613641602983613dee565b915061364c826142f6565b604082019050919050565b6000613664601d83613dee565b915061366f82614345565b602082019050919050565b6000613687601483613dee565b91506136928261436e565b602082019050919050565b60006136aa601283613dff565b91506136b582614397565b601282019050919050565b60006136cd602583613dee565b91506136d8826143c0565b604082019050919050565b60006136f0603283613dee565b91506136fb8261440f565b604082019050919050565b6000613713602383613dee565b915061371e8261445e565b604082019050919050565b6000613736602a83613dee565b9150613741826144ad565b604082019050919050565b6000613759602083613dee565b9150613764826144fc565b602082019050919050565b600061377c602983613dee565b915061378782614525565b604082019050919050565b600061379f602983613dee565b91506137aa82614574565b604082019050919050565b60006137c2602383613dee565b91506137cd826145c3565b604082019050919050565b60006137e5602883613dee565b91506137f082614612565b604082019050919050565b6000613808602183613dee565b915061381382614661565b604082019050919050565b600061382b600d83613dff565b9150613836826146b0565b600d82019050919050565b61384a81613efe565b82525050565b61385981613efe565b82525050565b600061386b82846134d5565b91506138768261369d565b915081905092915050565b600061388d8284613506565b91506138988261381e565b915081905092915050565b60006020820190506138b860008301846133e7565b92915050565b600060a0820190506138d360008301886133e7565b6138e060208301876133e7565b81810360408301526138f281866133f6565b9050818103606083015261390681856133f6565b9050818103608083015261391a8184613463565b90509695505050505050565b600060a08201905061393b60008301886133e7565b61394860208301876133e7565b6139556040830186613850565b6139626060830185613850565b81810360808301526139748184613463565b90509695505050505050565b6000602082019050818103600083015261399a81846133f6565b905092915050565b600060408201905081810360008301526139bc81856133f6565b905081810360208301526139d081846133f6565b90509392505050565b60006020820190506139ee6000830184613454565b92915050565b60006020820190508181036000830152613a0e818461349c565b905092915050565b60006020820190508181036000830152613a2f81613585565b9050919050565b60006020820190508181036000830152613a4f816135a8565b9050919050565b60006020820190508181036000830152613a6f816135cb565b9050919050565b60006020820190508181036000830152613a8f816135ee565b9050919050565b60006020820190508181036000830152613aaf81613611565b9050919050565b60006020820190508181036000830152613acf81613634565b9050919050565b60006020820190508181036000830152613aef81613657565b9050919050565b60006020820190508181036000830152613b0f8161367a565b9050919050565b60006020820190508181036000830152613b2f816136c0565b9050919050565b60006020820190508181036000830152613b4f816136e3565b9050919050565b60006020820190508181036000830152613b6f81613706565b9050919050565b60006020820190508181036000830152613b8f81613729565b9050919050565b60006020820190508181036000830152613baf8161374c565b9050919050565b60006020820190508181036000830152613bcf8161376f565b9050919050565b60006020820190508181036000830152613bef81613792565b9050919050565b60006020820190508181036000830152613c0f816137b5565b9050919050565b60006020820190508181036000830152613c2f816137d8565b9050919050565b60006020820190508181036000830152613c4f816137fb565b9050919050565b6000602082019050613c6b6000830184613850565b92915050565b6000604082019050613c866000830185613850565b613c936020830184613850565b9392505050565b6000613ca4613cb5565b9050613cb08282613f7c565b919050565b6000604051905090565b600067ffffffffffffffff821115613cda57613cd96140e3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0657613d056140e3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d3257613d316140e3565b5b613d3b8261414d565b9050602081019050919050565b600067ffffffffffffffff821115613d6357613d626140e3565b5b613d6c8261414d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1582613efe565b9150613e2083613efe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5557613e54614027565b5b828201905092915050565b6000613e6b82613efe565b9150613e7683613efe565b925082821015613e8957613e88614027565b5b828203905092915050565b6000613e9f82613ede565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f35578082015181840152602081019050613f1a565b83811115613f44576000848401525b50505050565b60006002820490506001821680613f6257607f821691505b60208210811415613f7657613f75614085565b5b50919050565b613f858261414d565b810181811067ffffffffffffffff82111715613fa457613fa36140e3565b5b80604052505050565b6000613fb882613efe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613feb57613fea614027565b5b600182019050919050565b600061400182613efe565b915061400c83613efe565b92508261401c5761401b614056565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141315760046000803e61412e60005161415e565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e7420697320696e636f7272656374000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f7b69647d2f6d657461646174612e6a736f6e0000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a204e6f206669736820617661696c61626c6520746f206d6960008201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d657461646174612e6a736f6e00000000000000000000000000000000000000600082015250565b600060443d10156146e95761476c565b6146f1613cb5565b60043d036004823e80513d602482011167ffffffffffffffff8211171561471957505061476c565b808201805167ffffffffffffffff811115614737575050505061476c565b80602083010160043d03850181111561475457505050505061476c565b61476382602001850186613f7c565b82955050505050505b90565b61477881613e94565b811461478357600080fd5b50565b61478f81613ea6565b811461479a57600080fd5b50565b6147a681613eb2565b81146147b157600080fd5b50565b6147bd81613efe565b81146147c857600080fd5b5056fea2646970667358221220a4ad0678dff94ff317123e57e46ab51a37be9ad256fa1b5d939a570a8138ad1364736f6c6343000807003368747470733a2f2f7777772e6d7572617473617967696e65722e636f6d2f6e6674732f63727970746f666973682f
Deployed Bytecode
0x60806040526004361061019b5760003560e01c8063715018a6116100ec578063a49feed61161008a578063e985e9c511610064578063e985e9c51461057c578063f242432a146105b9578063f2fde38b146105e2578063f5298aca1461060b5761019b565b8063a49feed6146104fd578063e4991b6b14610528578063e8a3d485146105515761019b565b80638b79f965116100c65780638b79f965146104555780638da5cb5b1461047e57806398d5fdca146104a9578063a22cb465146104d45761019b565b8063715018a6146103fc5780637af284d514610413578063853828b61461043e5761019b565b80631249c58b116101595780633a07fb24116101335780633a07fb24146103445780634e1273f41461036d578063585b0241146103aa5780636b20c454146103d35761019b565b80631249c58b146102e85780632e1a7d4d146102f25780632eb2c2d61461031b5761019b565b8062fdd58e146101a057806301ffc9a7146101dd57806302fe53051461021a5780630d39fc81146102435780630e89341c1461026e5780630fafc2be146102ab575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c291906130de565b610634565b6040516101d49190613c56565b60405180910390f35b3480156101e957600080fd5b5061020460048036038101906101ff919061326c565b6106fd565b60405161021191906139d9565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c91906132c6565b6107df565b005b34801561024f57600080fd5b5061025861087e565b6040516102659190613c56565b60405180910390f35b34801561027a57600080fd5b506102956004803603810190610290919061330f565b610884565b6040516102a291906139f4565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061330f565b6108b5565b6040516102df9190613c56565b60405180910390f35b6102f06108d2565b005b3480156102fe57600080fd5b506103196004803603810190610314919061330f565b610abe565b005b34801561032757600080fd5b50610342600480360381019061033d9190612df2565b610bc7565b005b34801561035057600080fd5b5061036b6004803603810190610366919061333c565b610c68565b005b34801561037957600080fd5b50610394600480360381019061038f91906131f4565b610cf6565b6040516103a19190613980565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc919061337c565b610e0f565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612f58565b610f0e565b005b34801561040857600080fd5b50610411610fab565b005b34801561041f57600080fd5b50610428611033565b6040516104359190613c56565b60405180910390f35b34801561044a57600080fd5b50610453611039565b005b34801561046157600080fd5b5061047c60048036038101906104779190612fe3565b6110fe565b005b34801561048a57600080fd5b506104936111e0565b6040516104a091906138a3565b60405180910390f35b3480156104b557600080fd5b506104be61120a565b6040516104cb9190613c56565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f6919061309e565b611214565b005b34801561050957600080fd5b50610512611395565b60405161051f9190613c56565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613171565b61139b565b005b34801561055d57600080fd5b50610566611510565b60405161057391906139f4565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612db2565b611538565b6040516105b091906139d9565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190612ec1565b6115cc565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612d85565b61166d565b005b34801561061757600080fd5b50610632600480360381019061062d919061311e565b611765565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90613a56565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d857506107d782611802565b5b9050919050565b6107e761186c565b73ffffffffffffffffffffffffffffffffffffffff166108056111e0565b73ffffffffffffffffffffffffffffffffffffffff161461085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290613b96565b60405180910390fd5b61086481611874565b806004908051906020019061087a929190612a5d565b5050565b60055481565b606061088f8261188e565b60405160200161089f919061385f565b6040516020818303038152906040529050919050565b600060086000838152602001908152602001600020549050919050565b3460055414610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90613ad6565b60405180910390fd5b6000600a5467ffffffffffffffff811115610934576109336140e3565b5b6040519080825280602002602001820160405280156109625781602001602082028036833780820191505090505b5090506000805b600a548110156109e3576009600082815260200190815260200160002054600860008381526020019081526020016000205410156109d057808383815181106109b5576109b46140b4565b5b60200260200101818152505081806109cc90613fad565b9250505b80806109db90613fad565b915050610969565b5060008111610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613bf6565b60405180910390fd5b60008282610a33611922565b610a3d9190613ff6565b81518110610a4e57610a4d6140b4565b5b60200260200101519050610a74338260016040518060200160405280600081525061193a565b6001600860008381526020019081526020016000206000828254610a989190613e0a565b92505081905550600160066000828254610ab29190613e0a565b92505081905550505050565b610ac661186c565b73ffffffffffffffffffffffffffffffffffffffff16610ae46111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613b96565b60405180910390fd5b47811115610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613af6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bc3573d6000803e3d6000fd5b5050565b610bcf61186c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c155750610c1485610c0f61186c565b611538565b5b610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613b36565b60405180910390fd5b610c618585858585611ad0565b5050505050565b610c7061186c565b73ffffffffffffffffffffffffffffffffffffffff16610c8e6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613b96565b60405180910390fd5b81600a81905550806005819055505050565b60608151835114610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613bd6565b60405180910390fd5b6000835167ffffffffffffffff811115610d5957610d586140e3565b5b604051908082528060200260200182016040528015610d875781602001602082028036833780820191505090505b50905060005b8451811015610e0457610dd4858281518110610dac57610dab6140b4565b5b6020026020010151858381518110610dc757610dc66140b4565b5b6020026020010151610634565b828281518110610de757610de66140b4565b5b60200260200101818152505080610dfd90613fad565b9050610d8d565b508091505092915050565b610e1761186c565b73ffffffffffffffffffffffffffffffffffffffff16610e356111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613b96565b60405180910390fd5b60008390505b828111610f08578160076000828254610eaa9190613e0a565b92505081905550600960008281526020019081526020016000205460076000828254610ed69190613e60565b925050819055508160096000838152602001908152602001600020819055508080610f0090613fad565b915050610e91565b50505050565b610f1661186c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f5c5750610f5b83610f5661186c565b611538565b5b610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290613ab6565b60405180910390fd5b610fa6838383611de4565b505050565b610fb361186c565b73ffffffffffffffffffffffffffffffffffffffff16610fd16111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613b96565b60405180910390fd5b6110316000612095565b565b60065481565b61104161186c565b73ffffffffffffffffffffffffffffffffffffffff1661105f6111e0565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613b96565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110fb573d6000803e3d6000fd5b50565b61110661186c565b73ffffffffffffffffffffffffffffffffffffffff166111246111e0565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613b96565b60405180910390fd5b60005b83518110156111d9576111c68585838151811061119d5761119c6140b4565b5b60200260200101518584815181106111b8576111b76140b4565b5b60200260200101518561139b565b80806111d190613fad565b91505061117d565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600554905090565b8173ffffffffffffffffffffffffffffffffffffffff1661123361186c565b73ffffffffffffffffffffffffffffffffffffffff16141561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613bb6565b60405180910390fd5b806001600061129761186c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134461186c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138991906139d9565b60405180910390a35050565b60075481565b6113a361186c565b73ffffffffffffffffffffffffffffffffffffffff166113c16111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90613b96565b60405180910390fd5b6114238484848461193a565b816008600085815260200190815260200160002060008282546114469190613e0a565b92505081905550816006600082825461145f9190613e0a565b9250508190555060096000848152602001908152602001600020546008600085815260200190815260200160002054111561150a57600960008481526020019081526020016000205460086000858152602001908152602001600020546114c69190613e60565b600760008282546114d79190613e0a565b92505081905550600860008481526020019081526020016000205460096000858152602001908152602001600020819055505b50505050565b606060046040516020016115249190613881565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d461186c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061161a57506116198561161461186c565b611538565b5b611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613ab6565b60405180910390fd5b611666858585858561215b565b5050505050565b61167561186c565b73ffffffffffffffffffffffffffffffffffffffff166116936111e0565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613b96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613a76565b60405180910390fd5b61176281612095565b50565b61176d61186c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117b357506117b2836117ad61186c565b611538565b5b6117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990613ab6565b60405180910390fd5b6117fd8383836123dd565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061188a929190612a5d565b5050565b60606002805461189d90613f4a565b80601f01602080910402602001604051908101604052809291908181526020018280546118c990613f4a565b80156119165780601f106118eb57610100808354040283529160200191611916565b820191906000526020600020905b8154815290600101906020018083116118f957829003601f168201915b50505050509050919050565b60006001436119319190613e60565b4060001c905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190613c36565b60405180910390fd5b60006119b461186c565b90506119d5816000876119c6886125fa565b6119cf886125fa565b87612674565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a349190613e0a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611ab2929190613c71565b60405180910390a4611ac98160008787878761267c565b5050505050565b8151835114611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90613c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613b16565b60405180910390fd5b6000611b8e61186c565b9050611b9e818787878787612674565b60005b8451811015611d4f576000858281518110611bbf57611bbe6140b4565b5b602002602001015190506000858381518110611bde57611bdd6140b4565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690613b76565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d349190613e0a565b9250508190555050505080611d4890613fad565b9050611ba1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611dc69291906139a2565b60405180910390a4611ddc818787878787612863565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90613b56565b60405180910390fd5b8051825114611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613c16565b60405180910390fd5b6000611ea261186c565b9050611ec281856000868660405180602001604052806000815250612674565b60005b835181101561200f576000848281518110611ee357611ee26140b4565b5b602002602001015190506000848381518110611f0257611f016140b4565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613a96565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061200790613fad565b915050611ec5565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516120879291906139a2565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290613b16565b60405180910390fd5b60006121d561186c565b90506121f58187876121e6886125fa565b6121ef886125fa565b87612674565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390613b76565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123419190613e0a565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516123be929190613c71565b60405180910390a46123d482888888888861267c565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244490613b56565b60405180910390fd5b600061245761186c565b905061248781856000612469876125fa565b612472876125fa565b60405180602001604052806000815250612674565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590613a96565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125eb929190613c71565b60405180910390a45050505050565b60606000600167ffffffffffffffff811115612619576126186140e3565b5b6040519080825280602002602001820160405280156126475781602001602082028036833780820191505090505b509050828160008151811061265f5761265e6140b4565b5b60200260200101818152505080915050919050565b505050505050565b61269b8473ffffffffffffffffffffffffffffffffffffffff16612a4a565b1561285b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126e1959493929190613926565b602060405180830381600087803b1580156126fb57600080fd5b505af192505050801561272c57506040513d601f19601f820116820180604052508101906127299190613299565b60015b6127d257612738614112565b806308c379a01415612795575061274d6146d9565b806127585750612797565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c91906139f4565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990613a16565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090613a36565b60405180910390fd5b505b505050505050565b6128828473ffffffffffffffffffffffffffffffffffffffff16612a4a565b15612a42578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128c89594939291906138be565b602060405180830381600087803b1580156128e257600080fd5b505af192505050801561291357506040513d601f19601f820116820180604052508101906129109190613299565b60015b6129b95761291f614112565b806308c379a0141561297c57506129346146d9565b8061293f575061297e565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297391906139f4565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090613a16565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3790613a36565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054612a6990613f4a565b90600052602060002090601f016020900481019282612a8b5760008555612ad2565b82601f10612aa457805160ff1916838001178555612ad2565b82800160010185558215612ad2579182015b82811115612ad1578251825591602001919060010190612ab6565b5b509050612adf9190612ae3565b5090565b5b80821115612afc576000816000905550600101612ae4565b5090565b6000612b13612b0e84613cbf565b613c9a565b90508083825260208201905082856020860282011115612b3657612b35614139565b5b60005b85811015612b665781612b4c8882612c64565b845260208401935060208301925050600181019050612b39565b5050509392505050565b6000612b83612b7e84613ceb565b613c9a565b90508083825260208201905082856020860282011115612ba657612ba5614139565b5b60005b85811015612bd65781612bbc8882612d70565b845260208401935060208301925050600181019050612ba9565b5050509392505050565b6000612bf3612bee84613d17565b613c9a565b905082815260208101848484011115612c0f57612c0e61413e565b5b612c1a848285613f08565b509392505050565b6000612c35612c3084613d48565b613c9a565b905082815260208101848484011115612c5157612c5061413e565b5b612c5c848285613f08565b509392505050565b600081359050612c738161476f565b92915050565b600082601f830112612c8e57612c8d614134565b5b8135612c9e848260208601612b00565b91505092915050565b600082601f830112612cbc57612cbb614134565b5b8135612ccc848260208601612b70565b91505092915050565b600081359050612ce481614786565b92915050565b600081359050612cf98161479d565b92915050565b600081519050612d0e8161479d565b92915050565b600082601f830112612d2957612d28614134565b5b8135612d39848260208601612be0565b91505092915050565b600082601f830112612d5757612d56614134565b5b8135612d67848260208601612c22565b91505092915050565b600081359050612d7f816147b4565b92915050565b600060208284031215612d9b57612d9a614148565b5b6000612da984828501612c64565b91505092915050565b60008060408385031215612dc957612dc8614148565b5b6000612dd785828601612c64565b9250506020612de885828601612c64565b9150509250929050565b600080600080600060a08688031215612e0e57612e0d614148565b5b6000612e1c88828901612c64565b9550506020612e2d88828901612c64565b945050604086013567ffffffffffffffff811115612e4e57612e4d614143565b5b612e5a88828901612ca7565b935050606086013567ffffffffffffffff811115612e7b57612e7a614143565b5b612e8788828901612ca7565b925050608086013567ffffffffffffffff811115612ea857612ea7614143565b5b612eb488828901612d14565b9150509295509295909350565b600080600080600060a08688031215612edd57612edc614148565b5b6000612eeb88828901612c64565b9550506020612efc88828901612c64565b9450506040612f0d88828901612d70565b9350506060612f1e88828901612d70565b925050608086013567ffffffffffffffff811115612f3f57612f3e614143565b5b612f4b88828901612d14565b9150509295509295909350565b600080600060608486031215612f7157612f70614148565b5b6000612f7f86828701612c64565b935050602084013567ffffffffffffffff811115612fa057612f9f614143565b5b612fac86828701612ca7565b925050604084013567ffffffffffffffff811115612fcd57612fcc614143565b5b612fd986828701612ca7565b9150509250925092565b60008060008060808587031215612ffd57612ffc614148565b5b600061300b87828801612c64565b945050602085013567ffffffffffffffff81111561302c5761302b614143565b5b61303887828801612ca7565b935050604085013567ffffffffffffffff81111561305957613058614143565b5b61306587828801612ca7565b925050606085013567ffffffffffffffff81111561308657613085614143565b5b61309287828801612d14565b91505092959194509250565b600080604083850312156130b5576130b4614148565b5b60006130c385828601612c64565b92505060206130d485828601612cd5565b9150509250929050565b600080604083850312156130f5576130f4614148565b5b600061310385828601612c64565b925050602061311485828601612d70565b9150509250929050565b60008060006060848603121561313757613136614148565b5b600061314586828701612c64565b935050602061315686828701612d70565b925050604061316786828701612d70565b9150509250925092565b6000806000806080858703121561318b5761318a614148565b5b600061319987828801612c64565b94505060206131aa87828801612d70565b93505060406131bb87828801612d70565b925050606085013567ffffffffffffffff8111156131dc576131db614143565b5b6131e887828801612d14565b91505092959194509250565b6000806040838503121561320b5761320a614148565b5b600083013567ffffffffffffffff81111561322957613228614143565b5b61323585828601612c79565b925050602083013567ffffffffffffffff81111561325657613255614143565b5b61326285828601612ca7565b9150509250929050565b60006020828403121561328257613281614148565b5b600061329084828501612cea565b91505092915050565b6000602082840312156132af576132ae614148565b5b60006132bd84828501612cff565b91505092915050565b6000602082840312156132dc576132db614148565b5b600082013567ffffffffffffffff8111156132fa576132f9614143565b5b61330684828501612d42565b91505092915050565b60006020828403121561332557613324614148565b5b600061333384828501612d70565b91505092915050565b6000806040838503121561335357613352614148565b5b600061336185828601612d70565b925050602061337285828601612d70565b9150509250929050565b60008060006060848603121561339557613394614148565b5b60006133a386828701612d70565b93505060206133b486828701612d70565b92505060406133c586828701612d70565b9150509250925092565b60006133db8383613841565b60208301905092915050565b6133f081613e94565b82525050565b600061340182613d9e565b61340b8185613dcc565b935061341683613d79565b8060005b8381101561344757815161342e88826133cf565b975061343983613dbf565b92505060018101905061341a565b5085935050505092915050565b61345d81613ea6565b82525050565b600061346e82613da9565b6134788185613ddd565b9350613488818560208601613f17565b6134918161414d565b840191505092915050565b60006134a782613db4565b6134b18185613dee565b93506134c1818560208601613f17565b6134ca8161414d565b840191505092915050565b60006134e082613db4565b6134ea8185613dff565b93506134fa818560208601613f17565b80840191505092915050565b6000815461351381613f4a565b61351d8186613dff565b9450600182166000811461353857600181146135495761357c565b60ff1983168652818601935061357c565b61355285613d89565b60005b8381101561357457815481890152600182019150602081019050613555565b838801955050505b50505092915050565b6000613592603483613dee565b915061359d8261416b565b604082019050919050565b60006135b5602883613dee565b91506135c0826141ba565b604082019050919050565b60006135d8602b83613dee565b91506135e382614209565b604082019050919050565b60006135fb602683613dee565b915061360682614258565b604082019050919050565b600061361e602483613dee565b9150613629826142a7565b604082019050919050565b6000613641602983613dee565b915061364c826142f6565b604082019050919050565b6000613664601d83613dee565b915061366f82614345565b602082019050919050565b6000613687601483613dee565b91506136928261436e565b602082019050919050565b60006136aa601283613dff565b91506136b582614397565b601282019050919050565b60006136cd602583613dee565b91506136d8826143c0565b604082019050919050565b60006136f0603283613dee565b91506136fb8261440f565b604082019050919050565b6000613713602383613dee565b915061371e8261445e565b604082019050919050565b6000613736602a83613dee565b9150613741826144ad565b604082019050919050565b6000613759602083613dee565b9150613764826144fc565b602082019050919050565b600061377c602983613dee565b915061378782614525565b604082019050919050565b600061379f602983613dee565b91506137aa82614574565b604082019050919050565b60006137c2602383613dee565b91506137cd826145c3565b604082019050919050565b60006137e5602883613dee565b91506137f082614612565b604082019050919050565b6000613808602183613dee565b915061381382614661565b604082019050919050565b600061382b600d83613dff565b9150613836826146b0565b600d82019050919050565b61384a81613efe565b82525050565b61385981613efe565b82525050565b600061386b82846134d5565b91506138768261369d565b915081905092915050565b600061388d8284613506565b91506138988261381e565b915081905092915050565b60006020820190506138b860008301846133e7565b92915050565b600060a0820190506138d360008301886133e7565b6138e060208301876133e7565b81810360408301526138f281866133f6565b9050818103606083015261390681856133f6565b9050818103608083015261391a8184613463565b90509695505050505050565b600060a08201905061393b60008301886133e7565b61394860208301876133e7565b6139556040830186613850565b6139626060830185613850565b81810360808301526139748184613463565b90509695505050505050565b6000602082019050818103600083015261399a81846133f6565b905092915050565b600060408201905081810360008301526139bc81856133f6565b905081810360208301526139d081846133f6565b90509392505050565b60006020820190506139ee6000830184613454565b92915050565b60006020820190508181036000830152613a0e818461349c565b905092915050565b60006020820190508181036000830152613a2f81613585565b9050919050565b60006020820190508181036000830152613a4f816135a8565b9050919050565b60006020820190508181036000830152613a6f816135cb565b9050919050565b60006020820190508181036000830152613a8f816135ee565b9050919050565b60006020820190508181036000830152613aaf81613611565b9050919050565b60006020820190508181036000830152613acf81613634565b9050919050565b60006020820190508181036000830152613aef81613657565b9050919050565b60006020820190508181036000830152613b0f8161367a565b9050919050565b60006020820190508181036000830152613b2f816136c0565b9050919050565b60006020820190508181036000830152613b4f816136e3565b9050919050565b60006020820190508181036000830152613b6f81613706565b9050919050565b60006020820190508181036000830152613b8f81613729565b9050919050565b60006020820190508181036000830152613baf8161374c565b9050919050565b60006020820190508181036000830152613bcf8161376f565b9050919050565b60006020820190508181036000830152613bef81613792565b9050919050565b60006020820190508181036000830152613c0f816137b5565b9050919050565b60006020820190508181036000830152613c2f816137d8565b9050919050565b60006020820190508181036000830152613c4f816137fb565b9050919050565b6000602082019050613c6b6000830184613850565b92915050565b6000604082019050613c866000830185613850565b613c936020830184613850565b9392505050565b6000613ca4613cb5565b9050613cb08282613f7c565b919050565b6000604051905090565b600067ffffffffffffffff821115613cda57613cd96140e3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0657613d056140e3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d3257613d316140e3565b5b613d3b8261414d565b9050602081019050919050565b600067ffffffffffffffff821115613d6357613d626140e3565b5b613d6c8261414d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1582613efe565b9150613e2083613efe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5557613e54614027565b5b828201905092915050565b6000613e6b82613efe565b9150613e7683613efe565b925082821015613e8957613e88614027565b5b828203905092915050565b6000613e9f82613ede565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f35578082015181840152602081019050613f1a565b83811115613f44576000848401525b50505050565b60006002820490506001821680613f6257607f821691505b60208210811415613f7657613f75614085565b5b50919050565b613f858261414d565b810181811067ffffffffffffffff82111715613fa457613fa36140e3565b5b80604052505050565b6000613fb882613efe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613feb57613fea614027565b5b600182019050919050565b600061400182613efe565b915061400c83613efe565b92508261401c5761401b614056565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141315760046000803e61412e60005161415e565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e7420697320696e636f7272656374000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f7b69647d2f6d657461646174612e6a736f6e0000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a204e6f206669736820617661696c61626c6520746f206d6960008201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d657461646174612e6a736f6e00000000000000000000000000000000000000600082015250565b600060443d10156146e95761476c565b6146f1613cb5565b60043d036004823e80513d602482011167ffffffffffffffff8211171561471957505061476c565b808201805167ffffffffffffffff811115614737575050505061476c565b80602083010160043d03850181111561475457505050505061476c565b61476382602001850186613f7c565b82955050505050505b90565b61477881613e94565b811461478357600080fd5b50565b61478f81613ea6565b811461479a57600080fd5b50565b6147a681613eb2565b81146147b157600080fd5b50565b6147bd81613efe565b81146147c857600080fd5b5056fea2646970667358221220a4ad0678dff94ff317123e57e46ab51a37be9ad256fa1b5d939a570a8138ad1364736f6c63430008070033
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.