ERC-721
Overview
Max Total Supply
0 ETHPSW
Holders
75
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Filtered by Token Holder
Kate the Cursed 1155 Editions: DeployerBalance
2 ETHPSWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EtherpoemsSpokenWord
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract EtherpoemsSpokenWord is ERC721, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(string => uint256) public myTokenURI; mapping(string => Poem) public poemIDNFIDMap; // poem hash id to token id map mapping(uint256 => Poem) public poems; mapping(uint256 => uint256) public EtherpomsNFTClaimed; uint256 public constant MAX_NFT_SUPPLY = 732; uint256 public currentPrice = 420000000000000000; // .42 ETH address internal paymentSplitter; bool private reentrancyLock = false; struct Poem { uint256 tokenID; string name; string text; string author; string id; string tokenURI; bool minted; } event TokenBought( string id, uint256 mintedTokenID, string poemName, string poemText, string author, string tokenURI ); modifier reentrancyGuard { if (reentrancyLock) { revert(); } reentrancyLock = true; _; reentrancyLock = false; } constructor(address _paymentSplitter) public ERC721("EtherpoemsSpokenWord", "ETHPSW") { paymentSplitter = _paymentSplitter; } function mint( string memory _poemID, string memory _myTokenURI, string memory _poemName, string memory _poemText, string memory _poemAuthor ) external payable reentrancyGuard { // Validate token to be minted _validateTokenToBeMinted(_myTokenURI, _poemID); require(getNFTPrice() == msg.value, "Ether value sent is not correct"); // Split payment with Authors (bool sent, ) = paymentSplitter.call{ value: msg.value }(""); require(sent, "Failed to send Ether to payment splitter."); // Mint the token _mint(_poemID, _myTokenURI, _poemName, _poemText, _poemAuthor); } function _mint( string memory _poemID, string memory _myTokenURI, string memory _poemName, string memory _poemText, string memory _poemAuthor ) internal { // mark token URI as minted myTokenURI[_myTokenURI] = 1; // new token id uint256 newItemId = _tokenIds.current(); // save poem hash id to token id mapping // save poem on chain poems[newItemId].tokenID = newItemId; poems[newItemId].text = _poemText; poems[newItemId].name = _poemName; poems[newItemId].author = _poemAuthor; poems[newItemId].id = _poemID; poems[newItemId].tokenURI = _myTokenURI; poems[newItemId].minted = true; // map poem id to NF struct poemIDNFIDMap[_poemID] = poems[newItemId]; // mint token && assign ownership of token to msg.sender _safeMint(msg.sender, newItemId); // emit TokenBought event emit TokenBought( _poemID, newItemId, _poemName, _poemText, _poemAuthor, _myTokenURI ); // increment token counter for sold token _tokenIds.increment(); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return poems[tokenId].tokenURI; } // The owner can mint without paying function ownerMint( string memory _poemID, string memory _myTokenURI, string memory _poemName, string memory _poemText, string memory _poemAuthor ) external reentrancyGuard onlyOwner { _validateTokenToBeMinted(_myTokenURI, _poemID); _mint(_poemID, _myTokenURI, _poemName, _poemText, _poemAuthor); } function _validateTokenToBeMinted( string memory _myTokenURI, string memory _poemID ) internal view { require(_tokenIds.current() < MAX_NFT_SUPPLY, "Sale has already ended."); require(myTokenURI[_myTokenURI] != 1, "Token URI is already minted."); require(poemIDNFIDMap[_poemID].minted != true, "Poem is already minted."); } function withdraw() public payable onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function getPoem(uint256 _tokenID) public view returns (string memory) { require(_tokenID <= _tokenIds.current()); return (poems[_tokenID].text); } function getName(uint256 _tokenID) public view returns (string memory) { require(_tokenID <= _tokenIds.current()); return (poems[_tokenID].name); } function getAuthor(uint256 _tokenID) public view returns (string memory) { require(_tokenID <= _tokenIds.current()); return (poems[_tokenID].author); } function getPoemIDNFID(string memory _poemID) public view returns (uint256) { require( poemIDNFIDMap[_poemID].minted, "Given Etherpoem id is not yet minted." ); return poemIDNFIDMap[_poemID].tokenID; } function getNFTPrice() public view returns (uint256) { return currentPrice; } function setNFTPrice(uint256 _currentPrice) external onlyOwner { currentPrice = _currentPrice; } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// 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", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_paymentSplitter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":false,"internalType":"string","name":"id","type":"string"},{"indexed":false,"internalType":"uint256","name":"mintedTokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"poemName","type":"string"},{"indexed":false,"internalType":"string","name":"poemText","type":"string"},{"indexed":false,"internalType":"string","name":"author","type":"string"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"TokenBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"EtherpomsNFTClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getAuthor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getPoem","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_poemID","type":"string"}],"name":"getPoemIDNFID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_poemID","type":"string"},{"internalType":"string","name":"_myTokenURI","type":"string"},{"internalType":"string","name":"_poemName","type":"string"},{"internalType":"string","name":"_poemText","type":"string"},{"internalType":"string","name":"_poemAuthor","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"myTokenURI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_poemID","type":"string"},{"internalType":"string","name":"_myTokenURI","type":"string"},{"internalType":"string","name":"_poemName","type":"string"},{"internalType":"string","name":"_poemText","type":"string"},{"internalType":"string","name":"_poemAuthor","type":"string"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"poemIDNFIDMap","outputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"text","type":"string"},{"internalType":"string","name":"author","type":"string"},{"internalType":"string","name":"id","type":"string"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"bool","name":"minted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poems","outputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"text","type":"string"},{"internalType":"string","name":"author","type":"string"},{"internalType":"string","name":"id","type":"string"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"bool","name":"minted","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"_currentPrice","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526705d423c655aa0000600c556000600d60146101000a81548160ff0219169083151502179055503480156200003857600080fd5b50604051620049d9380380620049d983398181016040528101906200005e9190620002c6565b6040518060400160405280601481526020017f4574686572706f656d7353706f6b656e576f72640000000000000000000000008152506040518060400160405280600681526020017f45544850535700000000000000000000000000000000000000000000000000008152508160009080519060200190620000e2929190620001ff565b508060019080519060200190620000fb929190620001ff565b505050600062000110620001f760201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620003b0565b600033905090565b8280546200020d906200032c565b90600052602060002090601f0160209004810192826200023157600085556200027d565b82601f106200024c57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027c5782518255916020019190600101906200025f565b5b5090506200028c919062000290565b5090565b5b80821115620002ab57600081600090555060010162000291565b5090565b600081519050620002c08162000396565b92915050565b600060208284031215620002df57620002de62000391565b5b6000620002ef84828501620002af565b91505092915050565b600062000305826200030c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200034557607f821691505b602082108114156200035c576200035b62000362565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003a181620002f8565b8114620003ad57600080fd5b50565b61461980620003c06000396000f3fe6080604052600436106101dc5760003560e01c806381530b6811610102578063b88d4fde11610095578063e3f68bda11610064578063e3f68bda14610703578063e985e9c514610740578063f2fde38b1461077d578063fb107a4f146107a6576101e3565b8063b88d4fde14610631578063c2caf4f51461065a578063c5a7a2c714610683578063c87b56dd146106c6576101e3565b80639d1b464a116100d15780639d1b464a146105755780639e2b8488146105a0578063a22cb465146105dd578063b5077f4414610606576101e3565b806381530b68146104da57806386833e91146105035780638da5cb5b1461051f57806395d89b411461054a576101e3565b80633ccfd60b1161017a5780636b8ff574116101495780636b8ff5741461040c57806370a0823114610449578063715018a61461048657806378c6c1641461049d576101e3565b80633ccfd60b1461035957806342842e0e146103635780635b93f2701461038c5780636352211e146103cf576101e3565b8063070b72b4116101b6578063070b72b41461028d578063081812fc146102ca578063095ea7b31461030757806323b872dd14610330576101e3565b806301ffc9a7146101e8578063059564d61461022557806306fdde0314610262576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613233565b6107d1565b60405161021c9190613892565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061328d565b6108b3565b6040516102599190613c13565b60405180910390f35b34801561026e57600080fd5b5061027761094c565b60405161028491906138ad565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906133dd565b6109de565b6040516102c19190613c13565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906133dd565b6109f6565b6040516102fe919061382b565b60405180910390f35b34801561031357600080fd5b5061032e600480360381019061032991906131f3565b610a7b565b005b34801561033c57600080fd5b50610357600480360381019061035291906130dd565b610b93565b005b610361610bf3565b005b34801561036f57600080fd5b5061038a600480360381019061038591906130dd565b610cbe565b005b34801561039857600080fd5b506103b360048036038101906103ae91906133dd565b610cde565b6040516103c69796959493929190613c2e565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906133dd565b610fd5565b604051610403919061382b565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906133dd565b611087565b60405161044091906138ad565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613070565b611145565b60405161047d9190613c13565b60405180910390f35b34801561049257600080fd5b5061049b6111fd565b005b3480156104a957600080fd5b506104c460048036038101906104bf919061328d565b61133a565b6040516104d19190613c13565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906133dd565b611368565b005b61051d600480360381019061051891906132d6565b6113ee565b005b34801561052b57600080fd5b50610534611574565b604051610541919061382b565b60405180910390f35b34801561055657600080fd5b5061055f61159e565b60405161056c91906138ad565b60405180910390f35b34801561058157600080fd5b5061058a611630565b6040516105979190613c13565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c291906133dd565b611636565b6040516105d491906138ad565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff91906131b3565b6116f4565b005b34801561061257600080fd5b5061061b611875565b6040516106289190613c13565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190613130565b61187b565b005b34801561066657600080fd5b50610681600480360381019061067c91906132d6565b6118dd565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061328d565b6119c7565b6040516106bd9796959493929190613c2e565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e891906133dd565b611cd4565b6040516106fa91906138ad565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906133dd565b611dc4565b60405161073791906138ad565b60405180910390f35b34801561074c57600080fd5b506107676004803603810190610762919061309d565b611e82565b6040516107749190613892565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613070565b611f16565b005b3480156107b257600080fd5b506107bb6120c2565b6040516107c89190613c13565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ac57506108ab826120cc565b5b9050919050565b60006009826040516108c591906137ff565b908152602001604051809103902060060160009054906101000a900460ff16610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613953565b60405180910390fd5b60098260405161093391906137ff565b9081526020016040518091039020600001549050919050565b60606000805461095b90613ed5565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613ed5565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b600b6020528060005260406000206000915090505481565b6000610a0182612136565b610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3790613b13565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8682610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613b93565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b166121a2565b73ffffffffffffffffffffffffffffffffffffffff161480610b455750610b4481610b3f6121a2565b611e82565b5b610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613a93565b60405180910390fd5b610b8e83836121aa565b505050565b610ba4610b9e6121a2565b82612263565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613bf3565b60405180910390fd5b610bee838383612341565b505050565b610bfb6121a2565b73ffffffffffffffffffffffffffffffffffffffff16610c19611574565b73ffffffffffffffffffffffffffffffffffffffff1614610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690613b33565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cba573d6000803e3d6000fd5b5050565b610cd98383836040518060200160405280600081525061187b565b505050565b600a602052806000526040600020600091509050806000015490806001018054610d0790613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3390613ed5565b8015610d805780601f10610d5557610100808354040283529160200191610d80565b820191906000526020600020905b815481529060010190602001808311610d6357829003601f168201915b505050505090806002018054610d9590613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc190613ed5565b8015610e0e5780601f10610de357610100808354040283529160200191610e0e565b820191906000526020600020905b815481529060010190602001808311610df157829003601f168201915b505050505090806003018054610e2390613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90613ed5565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505090806004018054610eb190613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd90613ed5565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b505050505090806005018054610f3f90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6b90613ed5565b8015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b5050505050908060060160009054906101000a900460ff16905087565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590613ad3565b60405180910390fd5b80915050919050565b6060611093600761259d565b82111561109f57600080fd5b600a600083815260200190815260200160002060010180546110c090613ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546110ec90613ed5565b80156111395780601f1061110e57610100808354040283529160200191611139565b820191906000526020600020905b81548152906001019060200180831161111c57829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613ab3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112056121a2565b73ffffffffffffffffffffffffffffffffffffffff16611223611574565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6008818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6113706121a2565b73ffffffffffffffffffffffffffffffffffffffff1661138e611574565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613b33565b60405180910390fd5b80600c8190555050565b600d60149054906101000a900460ff161561140857600080fd5b6001600d60146101000a81548160ff02191690831515021790555061142d84866125ab565b346114366120c2565b14611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613a53565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16346040516114be90613816565b60006040518083038185875af1925050503d80600081146114fb576040519150601f19603f3d011682016040523d82523d6000602084013e611500565b606091505b5050905080611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613bd3565b60405180910390fd5b61155186868686866126d4565b506000600d60146101000a81548160ff0219169083151502179055505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115ad90613ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546115d990613ed5565b80156116265780601f106115fb57610100808354040283529160200191611626565b820191906000526020600020905b81548152906001019060200180831161160957829003601f168201915b5050505050905090565b600c5481565b6060611642600761259d565b82111561164e57600080fd5b600a6000838152602001908152602001600020600301805461166f90613ed5565b80601f016020809104026020016040519081016040528092919081815260200182805461169b90613ed5565b80156116e85780601f106116bd576101008083540402835291602001916116e8565b820191906000526020600020905b8154815290600101906020018083116116cb57829003601f168201915b50505050509050919050565b6116fc6121a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613a13565b60405180910390fd5b80600560006117776121a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118246121a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118699190613892565b60405180910390a35050565b6102dc81565b61188c6118866121a2565b83612263565b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613bf3565b60405180910390fd5b6118d78484848461298f565b50505050565b600d60149054906101000a900460ff16156118f757600080fd5b6001600d60146101000a81548160ff02191690831515021790555061191a6121a2565b73ffffffffffffffffffffffffffffffffffffffff16611938611574565b73ffffffffffffffffffffffffffffffffffffffff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613b33565b60405180910390fd5b61199884866125ab565b6119a585858585856126d4565b6000600d60146101000a81548160ff0219169083151502179055505050505050565b600981805160208101820180518482526020830160208501208183528095505050505050600091509050806000015490806001018054611a0690613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3290613ed5565b8015611a7f5780601f10611a5457610100808354040283529160200191611a7f565b820191906000526020600020905b815481529060010190602001808311611a6257829003601f168201915b505050505090806002018054611a9490613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac090613ed5565b8015611b0d5780601f10611ae257610100808354040283529160200191611b0d565b820191906000526020600020905b815481529060010190602001808311611af057829003601f168201915b505050505090806003018054611b2290613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4e90613ed5565b8015611b9b5780601f10611b7057610100808354040283529160200191611b9b565b820191906000526020600020905b815481529060010190602001808311611b7e57829003601f168201915b505050505090806004018054611bb090613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdc90613ed5565b8015611c295780601f10611bfe57610100808354040283529160200191611c29565b820191906000526020600020905b815481529060010190602001808311611c0c57829003601f168201915b505050505090806005018054611c3e90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6a90613ed5565b8015611cb75780601f10611c8c57610100808354040283529160200191611cb7565b820191906000526020600020905b815481529060010190602001808311611c9a57829003601f168201915b5050505050908060060160009054906101000a900460ff16905087565b6060611cdf82612136565b611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613b73565b60405180910390fd5b600a60008381526020019081526020016000206005018054611d3f90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6b90613ed5565b8015611db85780601f10611d8d57610100808354040283529160200191611db8565b820191906000526020600020905b815481529060010190602001808311611d9b57829003601f168201915b50505050509050919050565b6060611dd0600761259d565b821115611ddc57600080fd5b600a60008381526020019081526020016000206002018054611dfd90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2990613ed5565b8015611e765780601f10611e4b57610100808354040283529160200191611e76565b820191906000526020600020905b815481529060010190602001808311611e5957829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f1e6121a2565b73ffffffffffffffffffffffffffffffffffffffff16611f3c611574565b73ffffffffffffffffffffffffffffffffffffffff1614611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff9906139b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661221d83610fd5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061226e82612136565b6122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490613a73565b60405180910390fd5b60006122b883610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061232757508373ffffffffffffffffffffffffffffffffffffffff1661230f846109f6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061233857506123378185611e82565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661236182610fd5565b73ffffffffffffffffffffffffffffffffffffffff16146123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90613b53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e906139f3565b60405180910390fd5b6124328383836129eb565b61243d6000826121aa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248d9190613deb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e49190613d95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6102dc6125b8600761259d565b106125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef90613bb3565b60405180910390fd5b600160088360405161260a91906137ff565b908152602001604051809103902054141561265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190613a33565b60405180910390fd5b6001151560098260405161266e91906137ff565b908152602001604051809103902060060160009054906101000a900460ff16151514156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790613973565b60405180910390fd5b5050565b60016008856040516126e691906137ff565b9081526020016040518091039020819055506000612704600761259d565b905080600a60008381526020019081526020016000206000018190555082600a6000838152602001908152602001600020600201908051906020019061274b929190612df7565b5083600a60008381526020019081526020016000206001019080519060200190612776929190612df7565b5081600a600083815260200190815260200160002060030190805190602001906127a1929190612df7565b5085600a600083815260200190815260200160002060040190805190602001906127cc929190612df7565b5084600a600083815260200190815260200160002060050190805190602001906127f7929190612df7565b506001600a600083815260200190815260200160002060060160006101000a81548160ff021916908315150217905550600a600082815260200190815260200160002060098760405161284a91906137ff565b908152602001604051809103902060008201548160000155600182018160010190805461287690613ed5565b612881929190612e7d565b50600282018160020190805461289690613ed5565b6128a1929190612e7d565b5060038201816003019080546128b690613ed5565b6128c1929190612e7d565b5060048201816004019080546128d690613ed5565b6128e1929190612e7d565b5060058201816005019080546128f690613ed5565b612901929190612e7d565b506006820160009054906101000a900460ff168160060160006101000a81548160ff02191690831515021790555090505061293c33826129f0565b7f90657744574911f5f8d739b9da7b925f10fb66819fee08a85163c9eac924daf086828686868a604051612975969594939291906138cf565b60405180910390a16129876007612a0e565b505050505050565b61299a848484612341565b6129a684848484612a24565b6129e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dc90613993565b60405180910390fd5b50505050565b505050565b612a0a828260405180602001604052806000815250612bbb565b5050565b6001816000016000828254019250508190555050565b6000612a458473ffffffffffffffffffffffffffffffffffffffff16612c16565b15612bae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a6e6121a2565b8786866040518563ffffffff1660e01b8152600401612a909493929190613846565b602060405180830381600087803b158015612aaa57600080fd5b505af1925050508015612adb57506040513d601f19601f82011682018060405250810190612ad89190613260565b60015b612b5e573d8060008114612b0b576040519150601f19603f3d011682016040523d82523d6000602084013e612b10565b606091505b50600081511415612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d90613993565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bb3565b600190505b949350505050565b612bc58383612c29565b612bd26000848484612a24565b612c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0890613993565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9090613af3565b60405180910390fd5b612ca281612136565b15612ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd9906139d3565b60405180910390fd5b612cee600083836129eb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d3e9190613d95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e0390613ed5565b90600052602060002090601f016020900481019282612e255760008555612e6c565b82601f10612e3e57805160ff1916838001178555612e6c565b82800160010185558215612e6c579182015b82811115612e6b578251825591602001919060010190612e50565b5b509050612e799190612f0a565b5090565b828054612e8990613ed5565b90600052602060002090601f016020900481019282612eab5760008555612ef9565b82601f10612ebc5780548555612ef9565b82800160010185558215612ef957600052602060002091601f016020900482015b82811115612ef8578254825591600101919060010190612edd565b5b509050612f069190612f0a565b5090565b5b80821115612f23576000816000905550600101612f0b565b5090565b6000612f3a612f3584613ce5565b613cc0565b905082815260208101848484011115612f5657612f55613fca565b5b612f61848285613e93565b509392505050565b6000612f7c612f7784613d16565b613cc0565b905082815260208101848484011115612f9857612f97613fca565b5b612fa3848285613e93565b509392505050565b600081359050612fba81614587565b92915050565b600081359050612fcf8161459e565b92915050565b600081359050612fe4816145b5565b92915050565b600081519050612ff9816145b5565b92915050565b600082601f83011261301457613013613fc5565b5b8135613024848260208601612f27565b91505092915050565b600082601f83011261304257613041613fc5565b5b8135613052848260208601612f69565b91505092915050565b60008135905061306a816145cc565b92915050565b60006020828403121561308657613085613fd4565b5b600061309484828501612fab565b91505092915050565b600080604083850312156130b4576130b3613fd4565b5b60006130c285828601612fab565b92505060206130d385828601612fab565b9150509250929050565b6000806000606084860312156130f6576130f5613fd4565b5b600061310486828701612fab565b935050602061311586828701612fab565b92505060406131268682870161305b565b9150509250925092565b6000806000806080858703121561314a57613149613fd4565b5b600061315887828801612fab565b945050602061316987828801612fab565b935050604061317a8782880161305b565b925050606085013567ffffffffffffffff81111561319b5761319a613fcf565b5b6131a787828801612fff565b91505092959194509250565b600080604083850312156131ca576131c9613fd4565b5b60006131d885828601612fab565b92505060206131e985828601612fc0565b9150509250929050565b6000806040838503121561320a57613209613fd4565b5b600061321885828601612fab565b92505060206132298582860161305b565b9150509250929050565b60006020828403121561324957613248613fd4565b5b600061325784828501612fd5565b91505092915050565b60006020828403121561327657613275613fd4565b5b600061328484828501612fea565b91505092915050565b6000602082840312156132a3576132a2613fd4565b5b600082013567ffffffffffffffff8111156132c1576132c0613fcf565b5b6132cd8482850161302d565b91505092915050565b600080600080600060a086880312156132f2576132f1613fd4565b5b600086013567ffffffffffffffff8111156133105761330f613fcf565b5b61331c8882890161302d565b955050602086013567ffffffffffffffff81111561333d5761333c613fcf565b5b6133498882890161302d565b945050604086013567ffffffffffffffff81111561336a57613369613fcf565b5b6133768882890161302d565b935050606086013567ffffffffffffffff81111561339757613396613fcf565b5b6133a38882890161302d565b925050608086013567ffffffffffffffff8111156133c4576133c3613fcf565b5b6133d08882890161302d565b9150509295509295909350565b6000602082840312156133f3576133f2613fd4565b5b60006134018482850161305b565b91505092915050565b61341381613e1f565b82525050565b61342281613e31565b82525050565b600061343382613d47565b61343d8185613d5d565b935061344d818560208601613ea2565b61345681613fd9565b840191505092915050565b600061346c82613d52565b6134768185613d79565b9350613486818560208601613ea2565b61348f81613fd9565b840191505092915050565b60006134a582613d52565b6134af8185613d8a565b93506134bf818560208601613ea2565b80840191505092915050565b60006134d8602583613d79565b91506134e382613fea565b604082019050919050565b60006134fb601783613d79565b915061350682614039565b602082019050919050565b600061351e603283613d79565b915061352982614062565b604082019050919050565b6000613541602683613d79565b915061354c826140b1565b604082019050919050565b6000613564601c83613d79565b915061356f82614100565b602082019050919050565b6000613587602483613d79565b915061359282614129565b604082019050919050565b60006135aa601983613d79565b91506135b582614178565b602082019050919050565b60006135cd601c83613d79565b91506135d8826141a1565b602082019050919050565b60006135f0601f83613d79565b91506135fb826141ca565b602082019050919050565b6000613613602c83613d79565b915061361e826141f3565b604082019050919050565b6000613636603883613d79565b915061364182614242565b604082019050919050565b6000613659602a83613d79565b915061366482614291565b604082019050919050565b600061367c602983613d79565b9150613687826142e0565b604082019050919050565b600061369f602083613d79565b91506136aa8261432f565b602082019050919050565b60006136c2602c83613d79565b91506136cd82614358565b604082019050919050565b60006136e5602083613d79565b91506136f0826143a7565b602082019050919050565b6000613708602983613d79565b9150613713826143d0565b604082019050919050565b600061372b602f83613d79565b91506137368261441f565b604082019050919050565b600061374e602183613d79565b91506137598261446e565b604082019050919050565b6000613771601783613d79565b915061377c826144bd565b602082019050919050565b6000613794600083613d6e565b915061379f826144e6565b600082019050919050565b60006137b7602983613d79565b91506137c2826144e9565b604082019050919050565b60006137da603183613d79565b91506137e582614538565b604082019050919050565b6137f981613e89565b82525050565b600061380b828461349a565b915081905092915050565b600061382182613787565b9150819050919050565b6000602082019050613840600083018461340a565b92915050565b600060808201905061385b600083018761340a565b613868602083018661340a565b61387560408301856137f0565b81810360608301526138878184613428565b905095945050505050565b60006020820190506138a76000830184613419565b92915050565b600060208201905081810360008301526138c78184613461565b905092915050565b600060c08201905081810360008301526138e98189613461565b90506138f860208301886137f0565b818103604083015261390a8187613461565b9050818103606083015261391e8186613461565b905081810360808301526139328185613461565b905081810360a08301526139468184613461565b9050979650505050505050565b6000602082019050818103600083015261396c816134cb565b9050919050565b6000602082019050818103600083015261398c816134ee565b9050919050565b600060208201905081810360008301526139ac81613511565b9050919050565b600060208201905081810360008301526139cc81613534565b9050919050565b600060208201905081810360008301526139ec81613557565b9050919050565b60006020820190508181036000830152613a0c8161357a565b9050919050565b60006020820190508181036000830152613a2c8161359d565b9050919050565b60006020820190508181036000830152613a4c816135c0565b9050919050565b60006020820190508181036000830152613a6c816135e3565b9050919050565b60006020820190508181036000830152613a8c81613606565b9050919050565b60006020820190508181036000830152613aac81613629565b9050919050565b60006020820190508181036000830152613acc8161364c565b9050919050565b60006020820190508181036000830152613aec8161366f565b9050919050565b60006020820190508181036000830152613b0c81613692565b9050919050565b60006020820190508181036000830152613b2c816136b5565b9050919050565b60006020820190508181036000830152613b4c816136d8565b9050919050565b60006020820190508181036000830152613b6c816136fb565b9050919050565b60006020820190508181036000830152613b8c8161371e565b9050919050565b60006020820190508181036000830152613bac81613741565b9050919050565b60006020820190508181036000830152613bcc81613764565b9050919050565b60006020820190508181036000830152613bec816137aa565b9050919050565b60006020820190508181036000830152613c0c816137cd565b9050919050565b6000602082019050613c2860008301846137f0565b92915050565b600060e082019050613c43600083018a6137f0565b8181036020830152613c558189613461565b90508181036040830152613c698188613461565b90508181036060830152613c7d8187613461565b90508181036080830152613c918186613461565b905081810360a0830152613ca58185613461565b9050613cb460c0830184613419565b98975050505050505050565b6000613cca613cdb565b9050613cd68282613f07565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0057613cff613f96565b5b613d0982613fd9565b9050602081019050919050565b600067ffffffffffffffff821115613d3157613d30613f96565b5b613d3a82613fd9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613da082613e89565b9150613dab83613e89565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613de057613ddf613f38565b5b828201905092915050565b6000613df682613e89565b9150613e0183613e89565b925082821015613e1457613e13613f38565b5b828203905092915050565b6000613e2a82613e69565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ec0578082015181840152602081019050613ea5565b83811115613ecf576000848401525b50505050565b60006002820490506001821680613eed57607f821691505b60208210811415613f0157613f00613f67565b5b50919050565b613f1082613fd9565b810181811067ffffffffffffffff82111715613f2f57613f2e613f96565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f476976656e204574686572706f656d206964206973206e6f7420796574206d6960008201527f6e7465642e000000000000000000000000000000000000000000000000000000602082015250565b7f506f656d20697320616c7265616479206d696e7465642e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e2055524920697320616c7265616479206d696e7465642e00000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e6465642e000000000000000000600082015250565b50565b7f4661696c656420746f2073656e6420457468657220746f207061796d656e742060008201527f73706c69747465722e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61459081613e1f565b811461459b57600080fd5b50565b6145a781613e31565b81146145b257600080fd5b50565b6145be81613e3d565b81146145c957600080fd5b50565b6145d581613e89565b81146145e057600080fd5b5056fea26469706673582212202436a0d90cc44de8c141a2600e7568003e392a169117ca04aabd672d9773f2cf64736f6c634300080600330000000000000000000000006a873ee775116d4ff105391666e0121c57ede576
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c806381530b6811610102578063b88d4fde11610095578063e3f68bda11610064578063e3f68bda14610703578063e985e9c514610740578063f2fde38b1461077d578063fb107a4f146107a6576101e3565b8063b88d4fde14610631578063c2caf4f51461065a578063c5a7a2c714610683578063c87b56dd146106c6576101e3565b80639d1b464a116100d15780639d1b464a146105755780639e2b8488146105a0578063a22cb465146105dd578063b5077f4414610606576101e3565b806381530b68146104da57806386833e91146105035780638da5cb5b1461051f57806395d89b411461054a576101e3565b80633ccfd60b1161017a5780636b8ff574116101495780636b8ff5741461040c57806370a0823114610449578063715018a61461048657806378c6c1641461049d576101e3565b80633ccfd60b1461035957806342842e0e146103635780635b93f2701461038c5780636352211e146103cf576101e3565b8063070b72b4116101b6578063070b72b41461028d578063081812fc146102ca578063095ea7b31461030757806323b872dd14610330576101e3565b806301ffc9a7146101e8578063059564d61461022557806306fdde0314610262576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613233565b6107d1565b60405161021c9190613892565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061328d565b6108b3565b6040516102599190613c13565b60405180910390f35b34801561026e57600080fd5b5061027761094c565b60405161028491906138ad565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906133dd565b6109de565b6040516102c19190613c13565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906133dd565b6109f6565b6040516102fe919061382b565b60405180910390f35b34801561031357600080fd5b5061032e600480360381019061032991906131f3565b610a7b565b005b34801561033c57600080fd5b50610357600480360381019061035291906130dd565b610b93565b005b610361610bf3565b005b34801561036f57600080fd5b5061038a600480360381019061038591906130dd565b610cbe565b005b34801561039857600080fd5b506103b360048036038101906103ae91906133dd565b610cde565b6040516103c69796959493929190613c2e565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906133dd565b610fd5565b604051610403919061382b565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906133dd565b611087565b60405161044091906138ad565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613070565b611145565b60405161047d9190613c13565b60405180910390f35b34801561049257600080fd5b5061049b6111fd565b005b3480156104a957600080fd5b506104c460048036038101906104bf919061328d565b61133a565b6040516104d19190613c13565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906133dd565b611368565b005b61051d600480360381019061051891906132d6565b6113ee565b005b34801561052b57600080fd5b50610534611574565b604051610541919061382b565b60405180910390f35b34801561055657600080fd5b5061055f61159e565b60405161056c91906138ad565b60405180910390f35b34801561058157600080fd5b5061058a611630565b6040516105979190613c13565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c291906133dd565b611636565b6040516105d491906138ad565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff91906131b3565b6116f4565b005b34801561061257600080fd5b5061061b611875565b6040516106289190613c13565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190613130565b61187b565b005b34801561066657600080fd5b50610681600480360381019061067c91906132d6565b6118dd565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061328d565b6119c7565b6040516106bd9796959493929190613c2e565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e891906133dd565b611cd4565b6040516106fa91906138ad565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906133dd565b611dc4565b60405161073791906138ad565b60405180910390f35b34801561074c57600080fd5b506107676004803603810190610762919061309d565b611e82565b6040516107749190613892565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613070565b611f16565b005b3480156107b257600080fd5b506107bb6120c2565b6040516107c89190613c13565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ac57506108ab826120cc565b5b9050919050565b60006009826040516108c591906137ff565b908152602001604051809103902060060160009054906101000a900460ff16610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613953565b60405180910390fd5b60098260405161093391906137ff565b9081526020016040518091039020600001549050919050565b60606000805461095b90613ed5565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613ed5565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b600b6020528060005260406000206000915090505481565b6000610a0182612136565b610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3790613b13565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8682610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613b93565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b166121a2565b73ffffffffffffffffffffffffffffffffffffffff161480610b455750610b4481610b3f6121a2565b611e82565b5b610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613a93565b60405180910390fd5b610b8e83836121aa565b505050565b610ba4610b9e6121a2565b82612263565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613bf3565b60405180910390fd5b610bee838383612341565b505050565b610bfb6121a2565b73ffffffffffffffffffffffffffffffffffffffff16610c19611574565b73ffffffffffffffffffffffffffffffffffffffff1614610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690613b33565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cba573d6000803e3d6000fd5b5050565b610cd98383836040518060200160405280600081525061187b565b505050565b600a602052806000526040600020600091509050806000015490806001018054610d0790613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3390613ed5565b8015610d805780601f10610d5557610100808354040283529160200191610d80565b820191906000526020600020905b815481529060010190602001808311610d6357829003601f168201915b505050505090806002018054610d9590613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc190613ed5565b8015610e0e5780601f10610de357610100808354040283529160200191610e0e565b820191906000526020600020905b815481529060010190602001808311610df157829003601f168201915b505050505090806003018054610e2390613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90613ed5565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505090806004018054610eb190613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd90613ed5565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b505050505090806005018054610f3f90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6b90613ed5565b8015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b5050505050908060060160009054906101000a900460ff16905087565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590613ad3565b60405180910390fd5b80915050919050565b6060611093600761259d565b82111561109f57600080fd5b600a600083815260200190815260200160002060010180546110c090613ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546110ec90613ed5565b80156111395780601f1061110e57610100808354040283529160200191611139565b820191906000526020600020905b81548152906001019060200180831161111c57829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613ab3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112056121a2565b73ffffffffffffffffffffffffffffffffffffffff16611223611574565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6008818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6113706121a2565b73ffffffffffffffffffffffffffffffffffffffff1661138e611574565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613b33565b60405180910390fd5b80600c8190555050565b600d60149054906101000a900460ff161561140857600080fd5b6001600d60146101000a81548160ff02191690831515021790555061142d84866125ab565b346114366120c2565b14611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613a53565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16346040516114be90613816565b60006040518083038185875af1925050503d80600081146114fb576040519150601f19603f3d011682016040523d82523d6000602084013e611500565b606091505b5050905080611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613bd3565b60405180910390fd5b61155186868686866126d4565b506000600d60146101000a81548160ff0219169083151502179055505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115ad90613ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546115d990613ed5565b80156116265780601f106115fb57610100808354040283529160200191611626565b820191906000526020600020905b81548152906001019060200180831161160957829003601f168201915b5050505050905090565b600c5481565b6060611642600761259d565b82111561164e57600080fd5b600a6000838152602001908152602001600020600301805461166f90613ed5565b80601f016020809104026020016040519081016040528092919081815260200182805461169b90613ed5565b80156116e85780601f106116bd576101008083540402835291602001916116e8565b820191906000526020600020905b8154815290600101906020018083116116cb57829003601f168201915b50505050509050919050565b6116fc6121a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613a13565b60405180910390fd5b80600560006117776121a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118246121a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118699190613892565b60405180910390a35050565b6102dc81565b61188c6118866121a2565b83612263565b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613bf3565b60405180910390fd5b6118d78484848461298f565b50505050565b600d60149054906101000a900460ff16156118f757600080fd5b6001600d60146101000a81548160ff02191690831515021790555061191a6121a2565b73ffffffffffffffffffffffffffffffffffffffff16611938611574565b73ffffffffffffffffffffffffffffffffffffffff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613b33565b60405180910390fd5b61199884866125ab565b6119a585858585856126d4565b6000600d60146101000a81548160ff0219169083151502179055505050505050565b600981805160208101820180518482526020830160208501208183528095505050505050600091509050806000015490806001018054611a0690613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3290613ed5565b8015611a7f5780601f10611a5457610100808354040283529160200191611a7f565b820191906000526020600020905b815481529060010190602001808311611a6257829003601f168201915b505050505090806002018054611a9490613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac090613ed5565b8015611b0d5780601f10611ae257610100808354040283529160200191611b0d565b820191906000526020600020905b815481529060010190602001808311611af057829003601f168201915b505050505090806003018054611b2290613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4e90613ed5565b8015611b9b5780601f10611b7057610100808354040283529160200191611b9b565b820191906000526020600020905b815481529060010190602001808311611b7e57829003601f168201915b505050505090806004018054611bb090613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdc90613ed5565b8015611c295780601f10611bfe57610100808354040283529160200191611c29565b820191906000526020600020905b815481529060010190602001808311611c0c57829003601f168201915b505050505090806005018054611c3e90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6a90613ed5565b8015611cb75780601f10611c8c57610100808354040283529160200191611cb7565b820191906000526020600020905b815481529060010190602001808311611c9a57829003601f168201915b5050505050908060060160009054906101000a900460ff16905087565b6060611cdf82612136565b611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613b73565b60405180910390fd5b600a60008381526020019081526020016000206005018054611d3f90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6b90613ed5565b8015611db85780601f10611d8d57610100808354040283529160200191611db8565b820191906000526020600020905b815481529060010190602001808311611d9b57829003601f168201915b50505050509050919050565b6060611dd0600761259d565b821115611ddc57600080fd5b600a60008381526020019081526020016000206002018054611dfd90613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2990613ed5565b8015611e765780601f10611e4b57610100808354040283529160200191611e76565b820191906000526020600020905b815481529060010190602001808311611e5957829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f1e6121a2565b73ffffffffffffffffffffffffffffffffffffffff16611f3c611574565b73ffffffffffffffffffffffffffffffffffffffff1614611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff9906139b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661221d83610fd5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061226e82612136565b6122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490613a73565b60405180910390fd5b60006122b883610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061232757508373ffffffffffffffffffffffffffffffffffffffff1661230f846109f6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061233857506123378185611e82565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661236182610fd5565b73ffffffffffffffffffffffffffffffffffffffff16146123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90613b53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e906139f3565b60405180910390fd5b6124328383836129eb565b61243d6000826121aa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248d9190613deb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e49190613d95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6102dc6125b8600761259d565b106125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef90613bb3565b60405180910390fd5b600160088360405161260a91906137ff565b908152602001604051809103902054141561265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190613a33565b60405180910390fd5b6001151560098260405161266e91906137ff565b908152602001604051809103902060060160009054906101000a900460ff16151514156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790613973565b60405180910390fd5b5050565b60016008856040516126e691906137ff565b9081526020016040518091039020819055506000612704600761259d565b905080600a60008381526020019081526020016000206000018190555082600a6000838152602001908152602001600020600201908051906020019061274b929190612df7565b5083600a60008381526020019081526020016000206001019080519060200190612776929190612df7565b5081600a600083815260200190815260200160002060030190805190602001906127a1929190612df7565b5085600a600083815260200190815260200160002060040190805190602001906127cc929190612df7565b5084600a600083815260200190815260200160002060050190805190602001906127f7929190612df7565b506001600a600083815260200190815260200160002060060160006101000a81548160ff021916908315150217905550600a600082815260200190815260200160002060098760405161284a91906137ff565b908152602001604051809103902060008201548160000155600182018160010190805461287690613ed5565b612881929190612e7d565b50600282018160020190805461289690613ed5565b6128a1929190612e7d565b5060038201816003019080546128b690613ed5565b6128c1929190612e7d565b5060048201816004019080546128d690613ed5565b6128e1929190612e7d565b5060058201816005019080546128f690613ed5565b612901929190612e7d565b506006820160009054906101000a900460ff168160060160006101000a81548160ff02191690831515021790555090505061293c33826129f0565b7f90657744574911f5f8d739b9da7b925f10fb66819fee08a85163c9eac924daf086828686868a604051612975969594939291906138cf565b60405180910390a16129876007612a0e565b505050505050565b61299a848484612341565b6129a684848484612a24565b6129e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dc90613993565b60405180910390fd5b50505050565b505050565b612a0a828260405180602001604052806000815250612bbb565b5050565b6001816000016000828254019250508190555050565b6000612a458473ffffffffffffffffffffffffffffffffffffffff16612c16565b15612bae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a6e6121a2565b8786866040518563ffffffff1660e01b8152600401612a909493929190613846565b602060405180830381600087803b158015612aaa57600080fd5b505af1925050508015612adb57506040513d601f19601f82011682018060405250810190612ad89190613260565b60015b612b5e573d8060008114612b0b576040519150601f19603f3d011682016040523d82523d6000602084013e612b10565b606091505b50600081511415612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d90613993565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bb3565b600190505b949350505050565b612bc58383612c29565b612bd26000848484612a24565b612c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0890613993565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9090613af3565b60405180910390fd5b612ca281612136565b15612ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd9906139d3565b60405180910390fd5b612cee600083836129eb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d3e9190613d95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e0390613ed5565b90600052602060002090601f016020900481019282612e255760008555612e6c565b82601f10612e3e57805160ff1916838001178555612e6c565b82800160010185558215612e6c579182015b82811115612e6b578251825591602001919060010190612e50565b5b509050612e799190612f0a565b5090565b828054612e8990613ed5565b90600052602060002090601f016020900481019282612eab5760008555612ef9565b82601f10612ebc5780548555612ef9565b82800160010185558215612ef957600052602060002091601f016020900482015b82811115612ef8578254825591600101919060010190612edd565b5b509050612f069190612f0a565b5090565b5b80821115612f23576000816000905550600101612f0b565b5090565b6000612f3a612f3584613ce5565b613cc0565b905082815260208101848484011115612f5657612f55613fca565b5b612f61848285613e93565b509392505050565b6000612f7c612f7784613d16565b613cc0565b905082815260208101848484011115612f9857612f97613fca565b5b612fa3848285613e93565b509392505050565b600081359050612fba81614587565b92915050565b600081359050612fcf8161459e565b92915050565b600081359050612fe4816145b5565b92915050565b600081519050612ff9816145b5565b92915050565b600082601f83011261301457613013613fc5565b5b8135613024848260208601612f27565b91505092915050565b600082601f83011261304257613041613fc5565b5b8135613052848260208601612f69565b91505092915050565b60008135905061306a816145cc565b92915050565b60006020828403121561308657613085613fd4565b5b600061309484828501612fab565b91505092915050565b600080604083850312156130b4576130b3613fd4565b5b60006130c285828601612fab565b92505060206130d385828601612fab565b9150509250929050565b6000806000606084860312156130f6576130f5613fd4565b5b600061310486828701612fab565b935050602061311586828701612fab565b92505060406131268682870161305b565b9150509250925092565b6000806000806080858703121561314a57613149613fd4565b5b600061315887828801612fab565b945050602061316987828801612fab565b935050604061317a8782880161305b565b925050606085013567ffffffffffffffff81111561319b5761319a613fcf565b5b6131a787828801612fff565b91505092959194509250565b600080604083850312156131ca576131c9613fd4565b5b60006131d885828601612fab565b92505060206131e985828601612fc0565b9150509250929050565b6000806040838503121561320a57613209613fd4565b5b600061321885828601612fab565b92505060206132298582860161305b565b9150509250929050565b60006020828403121561324957613248613fd4565b5b600061325784828501612fd5565b91505092915050565b60006020828403121561327657613275613fd4565b5b600061328484828501612fea565b91505092915050565b6000602082840312156132a3576132a2613fd4565b5b600082013567ffffffffffffffff8111156132c1576132c0613fcf565b5b6132cd8482850161302d565b91505092915050565b600080600080600060a086880312156132f2576132f1613fd4565b5b600086013567ffffffffffffffff8111156133105761330f613fcf565b5b61331c8882890161302d565b955050602086013567ffffffffffffffff81111561333d5761333c613fcf565b5b6133498882890161302d565b945050604086013567ffffffffffffffff81111561336a57613369613fcf565b5b6133768882890161302d565b935050606086013567ffffffffffffffff81111561339757613396613fcf565b5b6133a38882890161302d565b925050608086013567ffffffffffffffff8111156133c4576133c3613fcf565b5b6133d08882890161302d565b9150509295509295909350565b6000602082840312156133f3576133f2613fd4565b5b60006134018482850161305b565b91505092915050565b61341381613e1f565b82525050565b61342281613e31565b82525050565b600061343382613d47565b61343d8185613d5d565b935061344d818560208601613ea2565b61345681613fd9565b840191505092915050565b600061346c82613d52565b6134768185613d79565b9350613486818560208601613ea2565b61348f81613fd9565b840191505092915050565b60006134a582613d52565b6134af8185613d8a565b93506134bf818560208601613ea2565b80840191505092915050565b60006134d8602583613d79565b91506134e382613fea565b604082019050919050565b60006134fb601783613d79565b915061350682614039565b602082019050919050565b600061351e603283613d79565b915061352982614062565b604082019050919050565b6000613541602683613d79565b915061354c826140b1565b604082019050919050565b6000613564601c83613d79565b915061356f82614100565b602082019050919050565b6000613587602483613d79565b915061359282614129565b604082019050919050565b60006135aa601983613d79565b91506135b582614178565b602082019050919050565b60006135cd601c83613d79565b91506135d8826141a1565b602082019050919050565b60006135f0601f83613d79565b91506135fb826141ca565b602082019050919050565b6000613613602c83613d79565b915061361e826141f3565b604082019050919050565b6000613636603883613d79565b915061364182614242565b604082019050919050565b6000613659602a83613d79565b915061366482614291565b604082019050919050565b600061367c602983613d79565b9150613687826142e0565b604082019050919050565b600061369f602083613d79565b91506136aa8261432f565b602082019050919050565b60006136c2602c83613d79565b91506136cd82614358565b604082019050919050565b60006136e5602083613d79565b91506136f0826143a7565b602082019050919050565b6000613708602983613d79565b9150613713826143d0565b604082019050919050565b600061372b602f83613d79565b91506137368261441f565b604082019050919050565b600061374e602183613d79565b91506137598261446e565b604082019050919050565b6000613771601783613d79565b915061377c826144bd565b602082019050919050565b6000613794600083613d6e565b915061379f826144e6565b600082019050919050565b60006137b7602983613d79565b91506137c2826144e9565b604082019050919050565b60006137da603183613d79565b91506137e582614538565b604082019050919050565b6137f981613e89565b82525050565b600061380b828461349a565b915081905092915050565b600061382182613787565b9150819050919050565b6000602082019050613840600083018461340a565b92915050565b600060808201905061385b600083018761340a565b613868602083018661340a565b61387560408301856137f0565b81810360608301526138878184613428565b905095945050505050565b60006020820190506138a76000830184613419565b92915050565b600060208201905081810360008301526138c78184613461565b905092915050565b600060c08201905081810360008301526138e98189613461565b90506138f860208301886137f0565b818103604083015261390a8187613461565b9050818103606083015261391e8186613461565b905081810360808301526139328185613461565b905081810360a08301526139468184613461565b9050979650505050505050565b6000602082019050818103600083015261396c816134cb565b9050919050565b6000602082019050818103600083015261398c816134ee565b9050919050565b600060208201905081810360008301526139ac81613511565b9050919050565b600060208201905081810360008301526139cc81613534565b9050919050565b600060208201905081810360008301526139ec81613557565b9050919050565b60006020820190508181036000830152613a0c8161357a565b9050919050565b60006020820190508181036000830152613a2c8161359d565b9050919050565b60006020820190508181036000830152613a4c816135c0565b9050919050565b60006020820190508181036000830152613a6c816135e3565b9050919050565b60006020820190508181036000830152613a8c81613606565b9050919050565b60006020820190508181036000830152613aac81613629565b9050919050565b60006020820190508181036000830152613acc8161364c565b9050919050565b60006020820190508181036000830152613aec8161366f565b9050919050565b60006020820190508181036000830152613b0c81613692565b9050919050565b60006020820190508181036000830152613b2c816136b5565b9050919050565b60006020820190508181036000830152613b4c816136d8565b9050919050565b60006020820190508181036000830152613b6c816136fb565b9050919050565b60006020820190508181036000830152613b8c8161371e565b9050919050565b60006020820190508181036000830152613bac81613741565b9050919050565b60006020820190508181036000830152613bcc81613764565b9050919050565b60006020820190508181036000830152613bec816137aa565b9050919050565b60006020820190508181036000830152613c0c816137cd565b9050919050565b6000602082019050613c2860008301846137f0565b92915050565b600060e082019050613c43600083018a6137f0565b8181036020830152613c558189613461565b90508181036040830152613c698188613461565b90508181036060830152613c7d8187613461565b90508181036080830152613c918186613461565b905081810360a0830152613ca58185613461565b9050613cb460c0830184613419565b98975050505050505050565b6000613cca613cdb565b9050613cd68282613f07565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0057613cff613f96565b5b613d0982613fd9565b9050602081019050919050565b600067ffffffffffffffff821115613d3157613d30613f96565b5b613d3a82613fd9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613da082613e89565b9150613dab83613e89565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613de057613ddf613f38565b5b828201905092915050565b6000613df682613e89565b9150613e0183613e89565b925082821015613e1457613e13613f38565b5b828203905092915050565b6000613e2a82613e69565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ec0578082015181840152602081019050613ea5565b83811115613ecf576000848401525b50505050565b60006002820490506001821680613eed57607f821691505b60208210811415613f0157613f00613f67565b5b50919050565b613f1082613fd9565b810181811067ffffffffffffffff82111715613f2f57613f2e613f96565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f476976656e204574686572706f656d206964206973206e6f7420796574206d6960008201527f6e7465642e000000000000000000000000000000000000000000000000000000602082015250565b7f506f656d20697320616c7265616479206d696e7465642e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e2055524920697320616c7265616479206d696e7465642e00000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e6465642e000000000000000000600082015250565b50565b7f4661696c656420746f2073656e6420457468657220746f207061796d656e742060008201527f73706c69747465722e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61459081613e1f565b811461459b57600080fd5b50565b6145a781613e31565b81146145b257600080fd5b50565b6145be81613e3d565b81146145c957600080fd5b50565b6145d581613e89565b81146145e057600080fd5b5056fea26469706673582212202436a0d90cc44de8c141a2600e7568003e392a169117ca04aabd672d9773f2cf64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006a873ee775116d4ff105391666e0121c57ede576
-----Decoded View---------------
Arg [0] : _paymentSplitter (address): 0x6a873Ee775116d4fF105391666e0121c57ede576
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006a873ee775116d4ff105391666e0121c57ede576
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.