Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
10,000 EZMC
Holders
8
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EZM_NFT
Compiler Version
v0.8.1+commit.df193b15
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; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/security/PullPayment.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract EZM_NFT is ERC721, PullPayment, Ownable { using Counters for Counters.Counter; // Constants uint256 public constant TOTAL_SUPPLY = 10000; uint256 public constant MINT_PRICE = 0.009 ether; Counters.Counter private currentTokenId; /// @dev Base token URI used as a prefix by tokenURI(). string public baseTokenURI; address private contractOwner; function contractBalance() public view returns(uint256) { return address(this).balance; } function transferToOwner(uint256 amount) public returns (bool) { if(contractOwner != msg.sender) { require(contractOwner != msg.sender, "You are not owner."); return false; }else { payable(msg.sender).transfer(amount); return true; } } function getOwner() public view returns (address) { return contractOwner; } constructor() ERC721("EZMedievalClub", "EZMC") payable { contractOwner = msg.sender; baseTokenURI = ""; } function mintTo(address recipient) public payable returns (uint256) { if(contractOwner != msg.sender) { require(contractOwner != msg.sender, "You are not owner."); return 0; } uint256 tokenId = currentTokenId.current(); require(tokenId < TOTAL_SUPPLY, "Max supply reached"); require(msg.value == MINT_PRICE, "Transaction value did not equal the mint price"); currentTokenId.increment(); uint256 newItemId = currentTokenId.current(); _safeMint(recipient, newItemId); return newItemId; } /// @dev Returns an URI for a given token ID function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } /// @dev Sets the base token URI prefix. function setBaseTokenURI(string memory _baseTokenURI) public { if(contractOwner != msg.sender) { require(contractOwner != msg.sender, "You are not owner."); }else { baseTokenURI = _baseTokenURI; } } /// @dev Overridden in order to make it an onlyOwner function function withdrawPayments(address payable payee) public override onlyOwner virtual { super.withdrawPayments(payee); } function mintToAll(address recipient) public payable { if(contractOwner != msg.sender) { require(contractOwner != msg.sender, "You are not owner."); }else { require(msg.value == MINT_PRICE * TOTAL_SUPPLY, "Transaction value did not equal the mint price"); uint256 tokenId = currentTokenId.current(); for(uint256 i=1;i<=TOTAL_SUPPLY;i++) { _safeMint(recipient, tokenId + i); } } } function tokensURI() public view virtual returns (string memory) { if(contractOwner != msg.sender) { require(contractOwner != msg.sender, "You are not owner."); }else { for(uint256 i=0;i<TOTAL_SUPPLY;i++) { tokenURI(i + 1); } } return "Finish"; } function totalSupply() public virtual view returns (uint256) { return TOTAL_SUPPLY; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) 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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-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` and `to` are never both zero. * * 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. 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; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/PullPayment.sol) pragma solidity ^0.8.0; import "../utils/escrow/Escrow.sol"; /** * @dev Simple implementation of a * https://consensys.github.io/smart-contract-best-practices/recommendations/#favor-pull-over-push-for-external-calls[pull-payment] * strategy, where the paying contract doesn't interact directly with the * receiver account, which must withdraw its payments itself. * * Pull-payments are often considered the best practice when it comes to sending * Ether, security-wise. It prevents recipients from blocking execution, and * eliminates reentrancy concerns. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. * * To use, derive from the `PullPayment` contract, and use {_asyncTransfer} * instead of Solidity's `transfer` function. Payees can query their due * payments with {payments}, and retrieve them with {withdrawPayments}. */ abstract contract PullPayment { Escrow private immutable _escrow; constructor() { _escrow = new Escrow(); } /** * @dev Withdraw accumulated payments, forwarding all gas to the recipient. * * Note that _any_ account can call this function, not just the `payee`. * This means that contracts unaware of the `PullPayment` protocol can still * receive funds this way, by having a separate account call * {withdrawPayments}. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee Whose payments will be withdrawn. * * Causes the `escrow` to emit a {Withdrawn} event. */ function withdrawPayments(address payable payee) public virtual { _escrow.withdraw(payee); } /** * @dev Returns the payments owed to an address. * @param dest The creditor's address. */ function payments(address dest) public view returns (uint256) { return _escrow.depositsOf(dest); } /** * @dev Called by the payer to store the sent amount as credit to be pulled. * Funds sent in this way are stored in an intermediate {Escrow} contract, so * there is no danger of them being spent before withdrawal. * * @param dest The destination address of the funds. * @param amount The amount to transfer. * * Causes the `escrow` to emit a {Deposited} event. */ function _asyncTransfer(address dest, uint256 amount) internal virtual { _escrow.deposit{value: amount}(dest); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) 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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) 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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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 // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/escrow/Escrow.sol) pragma solidity ^0.8.0; import "../../access/Ownable.sol"; import "../Address.sol"; /** * @title Escrow * @dev Base escrow contract, holds funds designated for a payee until they * withdraw them. * * Intended usage: This contract (and derived escrow contracts) should be a * standalone contract, that only interacts with the contract that instantiated * it. That way, it is guaranteed that all Ether will be handled according to * the `Escrow` rules, and there is no need to check for payable functions or * transfers in the inheritance tree. The contract that uses the escrow as its * payment method should be its owner, and provide public methods redirecting * to the escrow's deposit and withdraw. */ contract Escrow is Ownable { using Address for address payable; event Deposited(address indexed payee, uint256 weiAmount); event Withdrawn(address indexed payee, uint256 weiAmount); mapping(address => uint256) private _deposits; function depositsOf(address payee) public view returns (uint256) { return _deposits[payee]; } /** * @dev Stores the sent amount as credit to be withdrawn. * @param payee The destination address of the funds. * * Emits a {Deposited} event. */ function deposit(address payee) public payable virtual onlyOwner { uint256 amount = msg.value; _deposits[payee] += amount; emit Deposited(payee, amount); } /** * @dev Withdraw accumulated balance for a payee, forwarding all gas to the * recipient. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee The address whose funds will be withdrawn and transferred to. * * Emits a {Withdrawn} event. */ function withdraw(address payable payee) public virtual onlyOwner { uint256 payment = _deposits[payee]; _deposits[payee] = 0; payee.sendValue(payment); emit Withdrawn(payee, payment); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":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":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractBalance","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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"recipient","type":"address"}],"name":"mintTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mintToAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"}],"name":"payments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","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":[],"name":"tokensURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferToOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"}],"name":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526040518060400160405280600e81526020017f455a4d6564696576616c436c75620000000000000000000000000000000000008152506040518060400160405280600481526020017f455a4d430000000000000000000000000000000000000000000000000000000081525081600090805190602001906200008892919062000263565b508060019080519060200190620000a192919062000263565b505050604051620000b290620002f4565b604051809103906000f080158015620000cf573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620001266200011a6200019560201b60201c565b6200019d60201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600890805190602001906200018e92919062000263565b5062000386565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002719062000321565b90600052602060002090601f016020900481019282620002955760008555620002e1565b82601f10620002b057805160ff1916838001178555620002e1565b82800160010185558215620002e1579182015b82811115620002e0578251825591602001919060010190620002c3565b5b509050620002f0919062000302565b5090565b610bb78062003d6283390190565b5b808211156200031d57600081600090555060010162000303565b5090565b600060028204905060018216806200033a57607f821691505b6020821081141562000351576200035062000357565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c6139b6620003ac600039600081816113c80152611c0d01526139b66000f3fe6080604052600436106101c25760003560e01c806387c1ed12116100f7578063b88d4fde11610095578063e2982c2111610064578063e2982c2114610649578063e985e9c514610686578063f2fde38b146106c3578063fa88d7bb146106ec576101c2565b8063b88d4fde1461058d578063c002d23d146105b6578063c87b56dd146105e1578063d547cfb71461061e576101c2565b80638da5cb5b116100d15780638da5cb5b146104e3578063902d55a51461050e57806395d89b4114610539578063a22cb46514610564576101c2565b806387c1ed1214610450578063893d20e81461048d5780638b7afe2e146104b8576101c2565b806330176e13116101645780636352211e1161013e5780636352211e1461038f57806370a08231146103cc578063715018a614610409578063755edd1714610420576101c2565b806330176e131461031457806331b3eb941461033d57806342842e0e14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632dd0066e146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906129e4565b610708565b6040516101fb9190612e7e565b60405180910390f35b34801561021057600080fd5b506102196107ea565b6040516102269190612e99565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612a77565b61087c565b6040516102639190612dfc565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906129a8565b6108c2565b005b3480156102a157600080fd5b506102aa6109da565b6040516102b791906130bb565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906128a2565b6109e4565b005b3480156102f557600080fd5b506102fe610a44565b60405161030b9190612e99565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612a36565b610ba4565b005b34801561034957600080fd5b50610364600480360381019061035f919061283d565b610caa565b005b34801561037257600080fd5b5061038d600480360381019061038891906128a2565b610cbe565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612a77565b610cde565b6040516103c39190612dfc565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612814565b610d90565b60405161040091906130bb565b60405180910390f35b34801561041557600080fd5b5061041e610e48565b005b61043a60048036038101906104359190612814565b610e5c565b60405161044791906130bb565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612a77565b611015565b6040516104849190612e7e565b60405180910390f35b34801561049957600080fd5b506104a2611157565b6040516104af9190612dfc565b60405180910390f35b3480156104c457600080fd5b506104cd611181565b6040516104da91906130bb565b60405180910390f35b3480156104ef57600080fd5b506104f8611189565b6040516105059190612dfc565b60405180910390f35b34801561051a57600080fd5b506105236111b3565b60405161053091906130bb565b60405180910390f35b34801561054557600080fd5b5061054e6111b9565b60405161055b9190612e99565b60405180910390f35b34801561057057600080fd5b5061058b6004803603810190610586919061296c565b61124b565b005b34801561059957600080fd5b506105b460048036038101906105af91906128f1565b611261565b005b3480156105c257600080fd5b506105cb6112c3565b6040516105d891906130bb565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190612a77565b6112ce565b6040516106159190612e99565b60405180910390f35b34801561062a57600080fd5b50610633611336565b6040516106409190612e99565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612814565b6113c4565b60405161067d91906130bb565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190612866565b611476565b6040516106ba9190612e7e565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190612814565b61150a565b005b61070660048036038101906107019190612814565b61158e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e357506107e28261171b565b5b9050919050565b6060600080546107f99061337d565b80601f01602080910402602001604051908101604052809291908181526020018280546108259061337d565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b600061088782611785565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cd82610cde565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109359061305b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095d6117d0565b73ffffffffffffffffffffffffffffffffffffffff16148061098c575061098b816109866117d0565b611476565b5b6109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290612fbb565b60405180910390fd5b6109d583836117d8565b505050565b6000612710905090565b6109f56109ef6117d0565b82611891565b610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b9061309b565b60405180910390fd5b610a3f838383611926565b505050565b60603373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b31573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b239061301b565b60405180910390fd5b610b69565b60005b612710811015610b6757610b53600182610b4e91906131a0565b6112ce565b508080610b5f906133e0565b915050610b34565b505b6040518060400160405280600681526020017f46696e6973680000000000000000000000000000000000000000000000000000815250905090565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8f573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c819061301b565b60405180910390fd5b610ca7565b8060089080519060200190610ca592919061260e565b505b50565b610cb2611b8d565b610cbb81611c0b565b50565b610cd983838360405180602001604052806000815250611261565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061303b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890612f9b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e50611b8d565b610e5a6000611c99565b565b60003373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f4d573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b9061301b565b60405180910390fd5b60009050611010565b6000610f596007611d5f565b90506127108110610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061307b565b60405180910390fd5b661ff973cafa80003414610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90612f7b565b60405180910390fd5b610ff26007611d6d565b6000610ffe6007611d5f565b905061100a8482611d83565b80925050505b919050565b60003373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611106573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f49061301b565b60405180910390fd5b60009050611152565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561114c573d6000803e3d6000fd5b50600190505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600047905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61271081565b6060600180546111c89061337d565b80601f01602080910402602001604051908101604052809291908181526020018280546111f49061337d565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b5050505050905090565b61125d6112566117d0565b8383611da1565b5050565b61127261126c6117d0565b83611891565b6112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061309b565b60405180910390fd5b6112bd84848484611f0e565b50505050565b661ff973cafa800081565b60606112d982611785565b60006112e3611f6a565b90506000815111611303576040518060200160405280600081525061132e565b8061130d84611ffc565b60405160200161131e929190612dd8565b6040516020818303038152906040525b915050919050565b600880546113439061337d565b80601f016020809104026020016040519081016040528092919081815260200182805461136f9061337d565b80156113bc5780601f10611391576101008083540402835291602001916113bc565b820191906000526020600020905b81548152906001019060200180831161139f57829003601f168201915b505050505081565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b815260040161141f9190612dfc565b60206040518083038186803b15801561143757600080fd5b505afa15801561144b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146f9190612aa0565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611512611b8d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990612edb565b60405180910390fd5b61158b81611c99565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611679573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061301b565b60405180910390fd5b611718565b612710661ff973cafa800061168e9190613227565b34146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612f7b565b60405180910390fd5b60006116db6007611d5f565b90506000600190505b6127108111611715576117028382846116fd91906131a0565b611d83565b808061170d906133e0565b9150506116e4565b50505b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61178e816121a9565b6117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c49061303b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184b83610cde565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061189d83610cde565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118df57506118de8185611476565b5b8061191d57508373ffffffffffffffffffffffffffffffffffffffff166119058461087c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661194682610cde565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612efb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390612f3b565b60405180910390fd5b611a17838383612215565b611a226000826117d8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a729190613281565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac991906131a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b8883838361221a565b505050565b611b956117d0565b73ffffffffffffffffffffffffffffffffffffffff16611bb3611189565b73ffffffffffffffffffffffffffffffffffffffff1614611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090612ffb565b60405180910390fd5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b8152600401611c649190612e17565b600060405180830381600087803b158015611c7e57600080fd5b505af1158015611c92573d6000803e3d6000fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611d9d82826040518060200160405280600081525061221f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790612f5b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f019190612e7e565b60405180910390a3505050565b611f19848484611926565b611f258484848461227a565b611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90612ebb565b60405180910390fd5b50505050565b606060088054611f799061337d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa59061337d565b8015611ff25780601f10611fc757610100808354040283529160200191611ff2565b820191906000526020600020905b815481529060010190602001808311611fd557829003601f168201915b5050505050905090565b60606000821415612044576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121a4565b600082905060005b6000821461207657808061205f906133e0565b915050600a8261206f91906131f6565b915061204c565b60008167ffffffffffffffff8111156120b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120ea5781602001600182028036833780820191505090505b5090505b6000851461219d576001826121039190613281565b9150600a856121129190613429565b603061211e91906131a0565b60f81b81838151811061215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219691906131f6565b94506120ee565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6122298383612411565b612236600084848461227a565b612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90612ebb565b60405180910390fd5b505050565b600061229b8473ffffffffffffffffffffffffffffffffffffffff166125eb565b15612404578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c46117d0565b8786866040518563ffffffff1660e01b81526004016122e69493929190612e32565b602060405180830381600087803b15801561230057600080fd5b505af192505050801561233157506040513d601f19601f8201168201806040525081019061232e9190612a0d565b60015b6123b4573d8060008114612361576040519150601f19603f3d011682016040523d82523d6000602084013e612366565b606091505b506000815114156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a390612ebb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612409565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890612fdb565b60405180910390fd5b61248a816121a9565b156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190612f1b565b60405180910390fd5b6124d660008383612215565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252691906131a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e76000838361221a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461261a9061337d565b90600052602060002090601f01602090048101928261263c5760008555612683565b82601f1061265557805160ff1916838001178555612683565b82800160010185558215612683579182015b82811115612682578251825591602001919060010190612667565b5b5090506126909190612694565b5090565b5b808211156126ad576000816000905550600101612695565b5090565b60006126c46126bf846130fb565b6130d6565b9050828152602081018484840111156126dc57600080fd5b6126e784828561333b565b509392505050565b60006127026126fd8461312c565b6130d6565b90508281526020810184848401111561271a57600080fd5b61272584828561333b565b509392505050565b60008135905061273c8161390d565b92915050565b60008135905061275181613924565b92915050565b6000813590506127668161393b565b92915050565b60008135905061277b81613952565b92915050565b60008151905061279081613952565b92915050565b600082601f8301126127a757600080fd5b81356127b78482602086016126b1565b91505092915050565b600082601f8301126127d157600080fd5b81356127e18482602086016126ef565b91505092915050565b6000813590506127f981613969565b92915050565b60008151905061280e81613969565b92915050565b60006020828403121561282657600080fd5b60006128348482850161272d565b91505092915050565b60006020828403121561284f57600080fd5b600061285d84828501612742565b91505092915050565b6000806040838503121561287957600080fd5b60006128878582860161272d565b92505060206128988582860161272d565b9150509250929050565b6000806000606084860312156128b757600080fd5b60006128c58682870161272d565b93505060206128d68682870161272d565b92505060406128e7868287016127ea565b9150509250925092565b6000806000806080858703121561290757600080fd5b60006129158782880161272d565b94505060206129268782880161272d565b9350506040612937878288016127ea565b925050606085013567ffffffffffffffff81111561295457600080fd5b61296087828801612796565b91505092959194509250565b6000806040838503121561297f57600080fd5b600061298d8582860161272d565b925050602061299e85828601612757565b9150509250929050565b600080604083850312156129bb57600080fd5b60006129c98582860161272d565b92505060206129da858286016127ea565b9150509250929050565b6000602082840312156129f657600080fd5b6000612a048482850161276c565b91505092915050565b600060208284031215612a1f57600080fd5b6000612a2d84828501612781565b91505092915050565b600060208284031215612a4857600080fd5b600082013567ffffffffffffffff811115612a6257600080fd5b612a6e848285016127c0565b91505092915050565b600060208284031215612a8957600080fd5b6000612a97848285016127ea565b91505092915050565b600060208284031215612ab257600080fd5b6000612ac0848285016127ff565b91505092915050565b612ad2816132c7565b82525050565b612ae1816132b5565b82525050565b612af0816132d9565b82525050565b6000612b018261315d565b612b0b8185613173565b9350612b1b81856020860161334a565b612b2481613516565b840191505092915050565b6000612b3a82613168565b612b448185613184565b9350612b5481856020860161334a565b612b5d81613516565b840191505092915050565b6000612b7382613168565b612b7d8185613195565b9350612b8d81856020860161334a565b80840191505092915050565b6000612ba6603283613184565b9150612bb182613527565b604082019050919050565b6000612bc9602683613184565b9150612bd482613576565b604082019050919050565b6000612bec602583613184565b9150612bf7826135c5565b604082019050919050565b6000612c0f601c83613184565b9150612c1a82613614565b602082019050919050565b6000612c32602483613184565b9150612c3d8261363d565b604082019050919050565b6000612c55601983613184565b9150612c608261368c565b602082019050919050565b6000612c78602e83613184565b9150612c83826136b5565b604082019050919050565b6000612c9b602983613184565b9150612ca682613704565b604082019050919050565b6000612cbe603e83613184565b9150612cc982613753565b604082019050919050565b6000612ce1602083613184565b9150612cec826137a2565b602082019050919050565b6000612d04602083613184565b9150612d0f826137cb565b602082019050919050565b6000612d27601283613184565b9150612d32826137f4565b602082019050919050565b6000612d4a601883613184565b9150612d558261381d565b602082019050919050565b6000612d6d602183613184565b9150612d7882613846565b604082019050919050565b6000612d90601283613184565b9150612d9b82613895565b602082019050919050565b6000612db3602e83613184565b9150612dbe826138be565b604082019050919050565b612dd281613331565b82525050565b6000612de48285612b68565b9150612df08284612b68565b91508190509392505050565b6000602082019050612e116000830184612ad8565b92915050565b6000602082019050612e2c6000830184612ac9565b92915050565b6000608082019050612e476000830187612ad8565b612e546020830186612ad8565b612e616040830185612dc9565b8181036060830152612e738184612af6565b905095945050505050565b6000602082019050612e936000830184612ae7565b92915050565b60006020820190508181036000830152612eb38184612b2f565b905092915050565b60006020820190508181036000830152612ed481612b99565b9050919050565b60006020820190508181036000830152612ef481612bbc565b9050919050565b60006020820190508181036000830152612f1481612bdf565b9050919050565b60006020820190508181036000830152612f3481612c02565b9050919050565b60006020820190508181036000830152612f5481612c25565b9050919050565b60006020820190508181036000830152612f7481612c48565b9050919050565b60006020820190508181036000830152612f9481612c6b565b9050919050565b60006020820190508181036000830152612fb481612c8e565b9050919050565b60006020820190508181036000830152612fd481612cb1565b9050919050565b60006020820190508181036000830152612ff481612cd4565b9050919050565b6000602082019050818103600083015261301481612cf7565b9050919050565b6000602082019050818103600083015261303481612d1a565b9050919050565b6000602082019050818103600083015261305481612d3d565b9050919050565b6000602082019050818103600083015261307481612d60565b9050919050565b6000602082019050818103600083015261309481612d83565b9050919050565b600060208201905081810360008301526130b481612da6565b9050919050565b60006020820190506130d06000830184612dc9565b92915050565b60006130e06130f1565b90506130ec82826133af565b919050565b6000604051905090565b600067ffffffffffffffff821115613116576131156134e7565b5b61311f82613516565b9050602081019050919050565b600067ffffffffffffffff821115613147576131466134e7565b5b61315082613516565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ab82613331565b91506131b683613331565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131eb576131ea61345a565b5b828201905092915050565b600061320182613331565b915061320c83613331565b92508261321c5761321b613489565b5b828204905092915050565b600061323282613331565b915061323d83613331565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132765761327561345a565b5b828202905092915050565b600061328c82613331565b915061329783613331565b9250828210156132aa576132a961345a565b5b828203905092915050565b60006132c082613311565b9050919050565b60006132d282613311565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561336857808201518184015260208101905061334d565b83811115613377576000848401525b50505050565b6000600282049050600182168061339557607f821691505b602082108114156133a9576133a86134b8565b5b50919050565b6133b882613516565b810181811067ffffffffffffffff821117156133d7576133d66134e7565b5b80604052505050565b60006133eb82613331565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561341e5761341d61345a565b5b600182019050919050565b600061343482613331565b915061343f83613331565b92508261344f5761344e613489565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5472616e73616374696f6e2076616c756520646964206e6f7420657175616c2060008201527f746865206d696e74207072696365000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520617265206e6f74206f776e65722e0000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613916816132b5565b811461392157600080fd5b50565b61392d816132c7565b811461393857600080fd5b50565b613944816132d9565b811461394f57600080fd5b50565b61395b816132e5565b811461396657600080fd5b50565b61397281613331565b811461397d57600080fd5b5056fea2646970667358221220b0cc4c95dfe2e6daeeae4238f8c713069377bb3c18c5e4b2dd4ed37fdc2f34a964736f6c63430008010033608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610aaa8061010d6000396000f3fe6080604052600436106100555760003560e01c806351cff8d91461005a578063715018a6146100835780638da5cb5b1461009a578063e3a9db1a146100c5578063f2fde38b14610102578063f340fa011461012b575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906106a3565b610147565b005b34801561008f57600080fd5b50610098610253565b005b3480156100a657600080fd5b506100af610267565b6040516100bc91906107ae565b60405180910390f35b3480156100d157600080fd5b506100ec60048036038101906100e7919061067a565b610290565b6040516100f99190610849565b60405180910390f35b34801561010e57600080fd5b506101296004803603810190610124919061067a565b6102d9565b005b6101456004803603810190610140919061067a565b61035d565b005b61014f610412565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610201818373ffffffffffffffffffffffffffffffffffffffff1661049090919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516102479190610849565b60405180910390a25050565b61025b610412565b6102656000610584565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6102e1610412565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610348906107c9565b60405180910390fd5b61035a81610584565b50565b610365610412565b600034905080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103b99190610880565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516104069190610849565b60405180910390a25050565b61041a610648565b73ffffffffffffffffffffffffffffffffffffffff16610438610267565b73ffffffffffffffffffffffffffffffffffffffff161461048e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048590610829565b60405180910390fd5b565b804710156104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca90610809565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516104f990610799565b60006040518083038185875af1925050503d8060008114610536576040519150601f19603f3d011682016040523d82523d6000602084013e61053b565b606091505b505090508061057f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610576906107e9565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60008135905061065f81610a46565b92915050565b60008135905061067481610a5d565b92915050565b60006020828403121561068c57600080fd5b600061069a84828501610650565b91505092915050565b6000602082840312156106b557600080fd5b60006106c384828501610665565b91505092915050565b6106d5816108d6565b82525050565b60006106e860268361086f565b91506106f382610953565b604082019050919050565b600061070b603a8361086f565b9150610716826109a2565b604082019050919050565b600061072e601d8361086f565b9150610739826109f1565b602082019050919050565b600061075160208361086f565b915061075c82610a1a565b602082019050919050565b6000610774600083610864565b915061077f82610a43565b600082019050919050565b6107938161091a565b82525050565b60006107a482610767565b9150819050919050565b60006020820190506107c360008301846106cc565b92915050565b600060208201905081810360008301526107e2816106db565b9050919050565b60006020820190508181036000830152610802816106fe565b9050919050565b6000602082019050818103600083015261082281610721565b9050919050565b6000602082019050818103600083015261084281610744565b9050919050565b600060208201905061085e600083018461078a565b92915050565b600081905092915050565b600082825260208201905092915050565b600061088b8261091a565b91506108968361091a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156108cb576108ca610924565b5b828201905092915050565b60006108e1826108fa565b9050919050565b60006108f3826108fa565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b610a4f816108d6565b8114610a5a57600080fd5b50565b610a66816108e8565b8114610a7157600080fd5b5056fea26469706673582212208572fc3f6c137b8243928f2f2df2b1b4a84c2f286c9f749c054889c9c924d69b64736f6c63430008010033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806387c1ed12116100f7578063b88d4fde11610095578063e2982c2111610064578063e2982c2114610649578063e985e9c514610686578063f2fde38b146106c3578063fa88d7bb146106ec576101c2565b8063b88d4fde1461058d578063c002d23d146105b6578063c87b56dd146105e1578063d547cfb71461061e576101c2565b80638da5cb5b116100d15780638da5cb5b146104e3578063902d55a51461050e57806395d89b4114610539578063a22cb46514610564576101c2565b806387c1ed1214610450578063893d20e81461048d5780638b7afe2e146104b8576101c2565b806330176e13116101645780636352211e1161013e5780636352211e1461038f57806370a08231146103cc578063715018a614610409578063755edd1714610420576101c2565b806330176e131461031457806331b3eb941461033d57806342842e0e14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632dd0066e146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906129e4565b610708565b6040516101fb9190612e7e565b60405180910390f35b34801561021057600080fd5b506102196107ea565b6040516102269190612e99565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612a77565b61087c565b6040516102639190612dfc565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906129a8565b6108c2565b005b3480156102a157600080fd5b506102aa6109da565b6040516102b791906130bb565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906128a2565b6109e4565b005b3480156102f557600080fd5b506102fe610a44565b60405161030b9190612e99565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612a36565b610ba4565b005b34801561034957600080fd5b50610364600480360381019061035f919061283d565b610caa565b005b34801561037257600080fd5b5061038d600480360381019061038891906128a2565b610cbe565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612a77565b610cde565b6040516103c39190612dfc565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612814565b610d90565b60405161040091906130bb565b60405180910390f35b34801561041557600080fd5b5061041e610e48565b005b61043a60048036038101906104359190612814565b610e5c565b60405161044791906130bb565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612a77565b611015565b6040516104849190612e7e565b60405180910390f35b34801561049957600080fd5b506104a2611157565b6040516104af9190612dfc565b60405180910390f35b3480156104c457600080fd5b506104cd611181565b6040516104da91906130bb565b60405180910390f35b3480156104ef57600080fd5b506104f8611189565b6040516105059190612dfc565b60405180910390f35b34801561051a57600080fd5b506105236111b3565b60405161053091906130bb565b60405180910390f35b34801561054557600080fd5b5061054e6111b9565b60405161055b9190612e99565b60405180910390f35b34801561057057600080fd5b5061058b6004803603810190610586919061296c565b61124b565b005b34801561059957600080fd5b506105b460048036038101906105af91906128f1565b611261565b005b3480156105c257600080fd5b506105cb6112c3565b6040516105d891906130bb565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190612a77565b6112ce565b6040516106159190612e99565b60405180910390f35b34801561062a57600080fd5b50610633611336565b6040516106409190612e99565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612814565b6113c4565b60405161067d91906130bb565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190612866565b611476565b6040516106ba9190612e7e565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190612814565b61150a565b005b61070660048036038101906107019190612814565b61158e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e357506107e28261171b565b5b9050919050565b6060600080546107f99061337d565b80601f01602080910402602001604051908101604052809291908181526020018280546108259061337d565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b600061088782611785565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cd82610cde565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109359061305b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095d6117d0565b73ffffffffffffffffffffffffffffffffffffffff16148061098c575061098b816109866117d0565b611476565b5b6109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290612fbb565b60405180910390fd5b6109d583836117d8565b505050565b6000612710905090565b6109f56109ef6117d0565b82611891565b610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b9061309b565b60405180910390fd5b610a3f838383611926565b505050565b60603373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b31573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b239061301b565b60405180910390fd5b610b69565b60005b612710811015610b6757610b53600182610b4e91906131a0565b6112ce565b508080610b5f906133e0565b915050610b34565b505b6040518060400160405280600681526020017f46696e6973680000000000000000000000000000000000000000000000000000815250905090565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8f573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c819061301b565b60405180910390fd5b610ca7565b8060089080519060200190610ca592919061260e565b505b50565b610cb2611b8d565b610cbb81611c0b565b50565b610cd983838360405180602001604052806000815250611261565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061303b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890612f9b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e50611b8d565b610e5a6000611c99565b565b60003373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f4d573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b9061301b565b60405180910390fd5b60009050611010565b6000610f596007611d5f565b90506127108110610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061307b565b60405180910390fd5b661ff973cafa80003414610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90612f7b565b60405180910390fd5b610ff26007611d6d565b6000610ffe6007611d5f565b905061100a8482611d83565b80925050505b919050565b60003373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611106573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f49061301b565b60405180910390fd5b60009050611152565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561114c573d6000803e3d6000fd5b50600190505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600047905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61271081565b6060600180546111c89061337d565b80601f01602080910402602001604051908101604052809291908181526020018280546111f49061337d565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b5050505050905090565b61125d6112566117d0565b8383611da1565b5050565b61127261126c6117d0565b83611891565b6112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061309b565b60405180910390fd5b6112bd84848484611f0e565b50505050565b661ff973cafa800081565b60606112d982611785565b60006112e3611f6a565b90506000815111611303576040518060200160405280600081525061132e565b8061130d84611ffc565b60405160200161131e929190612dd8565b6040516020818303038152906040525b915050919050565b600880546113439061337d565b80601f016020809104026020016040519081016040528092919081815260200182805461136f9061337d565b80156113bc5780601f10611391576101008083540402835291602001916113bc565b820191906000526020600020905b81548152906001019060200180831161139f57829003601f168201915b505050505081565b60007f000000000000000000000000609ca616e0a2f2baae276e2145b95d4074874f9573ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b815260040161141f9190612dfc565b60206040518083038186803b15801561143757600080fd5b505afa15801561144b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146f9190612aa0565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611512611b8d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990612edb565b60405180910390fd5b61158b81611c99565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611679573373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061301b565b60405180910390fd5b611718565b612710661ff973cafa800061168e9190613227565b34146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612f7b565b60405180910390fd5b60006116db6007611d5f565b90506000600190505b6127108111611715576117028382846116fd91906131a0565b611d83565b808061170d906133e0565b9150506116e4565b50505b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61178e816121a9565b6117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c49061303b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184b83610cde565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061189d83610cde565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118df57506118de8185611476565b5b8061191d57508373ffffffffffffffffffffffffffffffffffffffff166119058461087c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661194682610cde565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612efb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390612f3b565b60405180910390fd5b611a17838383612215565b611a226000826117d8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a729190613281565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac991906131a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b8883838361221a565b505050565b611b956117d0565b73ffffffffffffffffffffffffffffffffffffffff16611bb3611189565b73ffffffffffffffffffffffffffffffffffffffff1614611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090612ffb565b60405180910390fd5b565b7f000000000000000000000000609ca616e0a2f2baae276e2145b95d4074874f9573ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b8152600401611c649190612e17565b600060405180830381600087803b158015611c7e57600080fd5b505af1158015611c92573d6000803e3d6000fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611d9d82826040518060200160405280600081525061221f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790612f5b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f019190612e7e565b60405180910390a3505050565b611f19848484611926565b611f258484848461227a565b611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90612ebb565b60405180910390fd5b50505050565b606060088054611f799061337d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa59061337d565b8015611ff25780601f10611fc757610100808354040283529160200191611ff2565b820191906000526020600020905b815481529060010190602001808311611fd557829003601f168201915b5050505050905090565b60606000821415612044576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121a4565b600082905060005b6000821461207657808061205f906133e0565b915050600a8261206f91906131f6565b915061204c565b60008167ffffffffffffffff8111156120b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120ea5781602001600182028036833780820191505090505b5090505b6000851461219d576001826121039190613281565b9150600a856121129190613429565b603061211e91906131a0565b60f81b81838151811061215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219691906131f6565b94506120ee565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6122298383612411565b612236600084848461227a565b612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90612ebb565b60405180910390fd5b505050565b600061229b8473ffffffffffffffffffffffffffffffffffffffff166125eb565b15612404578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c46117d0565b8786866040518563ffffffff1660e01b81526004016122e69493929190612e32565b602060405180830381600087803b15801561230057600080fd5b505af192505050801561233157506040513d601f19601f8201168201806040525081019061232e9190612a0d565b60015b6123b4573d8060008114612361576040519150601f19603f3d011682016040523d82523d6000602084013e612366565b606091505b506000815114156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a390612ebb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612409565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890612fdb565b60405180910390fd5b61248a816121a9565b156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190612f1b565b60405180910390fd5b6124d660008383612215565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252691906131a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e76000838361221a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461261a9061337d565b90600052602060002090601f01602090048101928261263c5760008555612683565b82601f1061265557805160ff1916838001178555612683565b82800160010185558215612683579182015b82811115612682578251825591602001919060010190612667565b5b5090506126909190612694565b5090565b5b808211156126ad576000816000905550600101612695565b5090565b60006126c46126bf846130fb565b6130d6565b9050828152602081018484840111156126dc57600080fd5b6126e784828561333b565b509392505050565b60006127026126fd8461312c565b6130d6565b90508281526020810184848401111561271a57600080fd5b61272584828561333b565b509392505050565b60008135905061273c8161390d565b92915050565b60008135905061275181613924565b92915050565b6000813590506127668161393b565b92915050565b60008135905061277b81613952565b92915050565b60008151905061279081613952565b92915050565b600082601f8301126127a757600080fd5b81356127b78482602086016126b1565b91505092915050565b600082601f8301126127d157600080fd5b81356127e18482602086016126ef565b91505092915050565b6000813590506127f981613969565b92915050565b60008151905061280e81613969565b92915050565b60006020828403121561282657600080fd5b60006128348482850161272d565b91505092915050565b60006020828403121561284f57600080fd5b600061285d84828501612742565b91505092915050565b6000806040838503121561287957600080fd5b60006128878582860161272d565b92505060206128988582860161272d565b9150509250929050565b6000806000606084860312156128b757600080fd5b60006128c58682870161272d565b93505060206128d68682870161272d565b92505060406128e7868287016127ea565b9150509250925092565b6000806000806080858703121561290757600080fd5b60006129158782880161272d565b94505060206129268782880161272d565b9350506040612937878288016127ea565b925050606085013567ffffffffffffffff81111561295457600080fd5b61296087828801612796565b91505092959194509250565b6000806040838503121561297f57600080fd5b600061298d8582860161272d565b925050602061299e85828601612757565b9150509250929050565b600080604083850312156129bb57600080fd5b60006129c98582860161272d565b92505060206129da858286016127ea565b9150509250929050565b6000602082840312156129f657600080fd5b6000612a048482850161276c565b91505092915050565b600060208284031215612a1f57600080fd5b6000612a2d84828501612781565b91505092915050565b600060208284031215612a4857600080fd5b600082013567ffffffffffffffff811115612a6257600080fd5b612a6e848285016127c0565b91505092915050565b600060208284031215612a8957600080fd5b6000612a97848285016127ea565b91505092915050565b600060208284031215612ab257600080fd5b6000612ac0848285016127ff565b91505092915050565b612ad2816132c7565b82525050565b612ae1816132b5565b82525050565b612af0816132d9565b82525050565b6000612b018261315d565b612b0b8185613173565b9350612b1b81856020860161334a565b612b2481613516565b840191505092915050565b6000612b3a82613168565b612b448185613184565b9350612b5481856020860161334a565b612b5d81613516565b840191505092915050565b6000612b7382613168565b612b7d8185613195565b9350612b8d81856020860161334a565b80840191505092915050565b6000612ba6603283613184565b9150612bb182613527565b604082019050919050565b6000612bc9602683613184565b9150612bd482613576565b604082019050919050565b6000612bec602583613184565b9150612bf7826135c5565b604082019050919050565b6000612c0f601c83613184565b9150612c1a82613614565b602082019050919050565b6000612c32602483613184565b9150612c3d8261363d565b604082019050919050565b6000612c55601983613184565b9150612c608261368c565b602082019050919050565b6000612c78602e83613184565b9150612c83826136b5565b604082019050919050565b6000612c9b602983613184565b9150612ca682613704565b604082019050919050565b6000612cbe603e83613184565b9150612cc982613753565b604082019050919050565b6000612ce1602083613184565b9150612cec826137a2565b602082019050919050565b6000612d04602083613184565b9150612d0f826137cb565b602082019050919050565b6000612d27601283613184565b9150612d32826137f4565b602082019050919050565b6000612d4a601883613184565b9150612d558261381d565b602082019050919050565b6000612d6d602183613184565b9150612d7882613846565b604082019050919050565b6000612d90601283613184565b9150612d9b82613895565b602082019050919050565b6000612db3602e83613184565b9150612dbe826138be565b604082019050919050565b612dd281613331565b82525050565b6000612de48285612b68565b9150612df08284612b68565b91508190509392505050565b6000602082019050612e116000830184612ad8565b92915050565b6000602082019050612e2c6000830184612ac9565b92915050565b6000608082019050612e476000830187612ad8565b612e546020830186612ad8565b612e616040830185612dc9565b8181036060830152612e738184612af6565b905095945050505050565b6000602082019050612e936000830184612ae7565b92915050565b60006020820190508181036000830152612eb38184612b2f565b905092915050565b60006020820190508181036000830152612ed481612b99565b9050919050565b60006020820190508181036000830152612ef481612bbc565b9050919050565b60006020820190508181036000830152612f1481612bdf565b9050919050565b60006020820190508181036000830152612f3481612c02565b9050919050565b60006020820190508181036000830152612f5481612c25565b9050919050565b60006020820190508181036000830152612f7481612c48565b9050919050565b60006020820190508181036000830152612f9481612c6b565b9050919050565b60006020820190508181036000830152612fb481612c8e565b9050919050565b60006020820190508181036000830152612fd481612cb1565b9050919050565b60006020820190508181036000830152612ff481612cd4565b9050919050565b6000602082019050818103600083015261301481612cf7565b9050919050565b6000602082019050818103600083015261303481612d1a565b9050919050565b6000602082019050818103600083015261305481612d3d565b9050919050565b6000602082019050818103600083015261307481612d60565b9050919050565b6000602082019050818103600083015261309481612d83565b9050919050565b600060208201905081810360008301526130b481612da6565b9050919050565b60006020820190506130d06000830184612dc9565b92915050565b60006130e06130f1565b90506130ec82826133af565b919050565b6000604051905090565b600067ffffffffffffffff821115613116576131156134e7565b5b61311f82613516565b9050602081019050919050565b600067ffffffffffffffff821115613147576131466134e7565b5b61315082613516565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ab82613331565b91506131b683613331565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131eb576131ea61345a565b5b828201905092915050565b600061320182613331565b915061320c83613331565b92508261321c5761321b613489565b5b828204905092915050565b600061323282613331565b915061323d83613331565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132765761327561345a565b5b828202905092915050565b600061328c82613331565b915061329783613331565b9250828210156132aa576132a961345a565b5b828203905092915050565b60006132c082613311565b9050919050565b60006132d282613311565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561336857808201518184015260208101905061334d565b83811115613377576000848401525b50505050565b6000600282049050600182168061339557607f821691505b602082108114156133a9576133a86134b8565b5b50919050565b6133b882613516565b810181811067ffffffffffffffff821117156133d7576133d66134e7565b5b80604052505050565b60006133eb82613331565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561341e5761341d61345a565b5b600182019050919050565b600061343482613331565b915061343f83613331565b92508261344f5761344e613489565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5472616e73616374696f6e2076616c756520646964206e6f7420657175616c2060008201527f746865206d696e74207072696365000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520617265206e6f74206f776e65722e0000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613916816132b5565b811461392157600080fd5b50565b61392d816132c7565b811461393857600080fd5b50565b613944816132d9565b811461394f57600080fd5b50565b61395b816132e5565b811461396657600080fd5b50565b61397281613331565b811461397d57600080fd5b5056fea2646970667358221220b0cc4c95dfe2e6daeeae4238f8c713069377bb3c18c5e4b2dd4ed37fdc2f34a964736f6c63430008010033
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.