ERC-721
Overview
Max Total Supply
0 gtdrinkswtf
Holders
81
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 gtdrinkswtfLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
gtdrinkswtf
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract gtdrinkswtf is ERC721, Ownable, Pausable { using Strings for uint256; string private baseURI = ''; uint private maxSupply = 10001; uint private mintedSupply = 1; uint private basePrice = 0; bool public revealed = false; string public hiddenMetadataUri = 'ipfs://bafkreidtkzblgar6l6d6pajxtliyioglyppal5kbbh4tu76flmmz3bnthe'; constructor() ERC721("gtdrinkswtf", "gtdrinkswtf") { pause(); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function withdraw(address addr) external onlyOwner { payable(addr).transfer(address(this).balance); } function mint(uint amount) public payable whenNotPaused { require(tx.origin == msg.sender, "Contract are not allowed to call"); require(amount <= 3, "One TX Max supply 3"); require(mintedSupply < maxSupply, "Max supply reached"); require(mintedSupply + amount <= maxSupply, "Exceeds max supply"); require(msg.value >= basePrice * amount, "Not enough ETH sent"); mintInner(amount); } function mintInner(uint amount) internal { for (uint i = 0; i < amount; i++) { _safeMint(msg.sender, mintedSupply); mintedSupply++; } } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } function setBasePrice(uint price) external onlyOwner { basePrice = price; } function getStatus() public view returns (uint[] memory) { uint[] memory arr = new uint[](8); arr[0] = paused() ? 0 : 1; arr[1] = basePrice; arr[2] = maxSupply; arr[3] = mintedSupply; return arr; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString())) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _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: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || 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 a {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 a {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 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 { 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 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStatus","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setBasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600790805190602001906200002b929190620003f0565b5061271160085560016009556000600a556000600b60006101000a81548160ff0219169083151502179055506040518060800160405280604281526020016200450e60429139600c908051906020019062000088929190620003f0565b503480156200009657600080fd5b506040518060400160405280600b81526020017f67746472696e6b737774660000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f67746472696e6b7377746600000000000000000000000000000000000000000081525081600090805190602001906200011b929190620003f0565b50806001908051906020019062000134929190620003f0565b505050620001576200014b6200018860201b60201c565b6200019060201b60201c565b6000600660146101000a81548160ff021916908315150217905550620001826200025660201b60201c565b6200065c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002666200018860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028c620002f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dc906200053e565b60405180910390fd5b620002f56200032160201b60201c565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000331620003d960201b60201c565b1562000374576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036b906200051c565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003c06200018860201b60201c565b604051620003cf9190620004ff565b60405180910390a1565b6000600660149054906101000a900460ff16905090565b828054620003fe90620005a5565b90600052602060002090601f0160209004810192826200042257600085556200046e565b82601f106200043d57805160ff19168380011785556200046e565b828001600101855582156200046e579182015b828111156200046d57825182559160200191906001019062000450565b5b5090506200047d919062000481565b5090565b5b808211156200049c57600081600090555060010162000482565b5090565b620004ab8162000571565b82525050565b6000620004c060108362000560565b9150620004cd826200060a565b602082019050919050565b6000620004e760208362000560565b9150620004f48262000633565b602082019050919050565b6000602082019050620005166000830184620004a0565b92915050565b600060208201905081810360008301526200053781620004b1565b9050919050565b600060208201905081810360008301526200055981620004d8565b9050919050565b600082825260208201905092915050565b60006200057e8262000585565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620005be57607f821691505b60208210811415620005d557620005d4620005db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ea2806200066c6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a45ba8e71161008a578063de4b326211610064578063de4b3262146105c3578063e0a80853146105ec578063e985e9c514610615578063f2fde38b14610652576101b7565b8063a45ba8e714610532578063b88d4fde1461055d578063c87b56dd14610586576101b7565b80638da5cb5b116100c65780638da5cb5b1461049757806395d89b41146104c2578063a0712d68146104ed578063a22cb46514610509576101b7565b806370a082311461042c578063715018a6146104695780638456cb5914610480576101b7565b80634e69d5601161015957806351cff8d91161013357806351cff8d91461037257806355f804b31461039b5780635c975abb146103c45780636352211e146103ef576101b7565b80634e69d560146102f35780634fdd43cb1461031e5780635183022714610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806323b872dd1461028a5780633f4ba83a146102b357806342842e0e146102ca576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612a1b565b61067b565b6040516101f09190613091565b60405180910390f35b34801561020557600080fd5b5061020e61075d565b60405161021b91906130ac565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612abe565b6107ef565b6040516102589190613008565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906129ae565b610874565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612898565b61098c565b005b3480156102bf57600080fd5b506102c86109ec565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190612898565b610a72565b005b3480156102ff57600080fd5b50610308610a92565b604051610315919061306f565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190612a75565b610b8b565b005b34801561035357600080fd5b5061035c610c21565b6040516103699190613091565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061282b565b610c34565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190612a75565b610cfa565b005b3480156103d057600080fd5b506103d9610d90565b6040516103e69190613091565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612abe565b610da7565b6040516104239190613008565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e919061282b565b610e59565b60405161046091906133ae565b60405180910390f35b34801561047557600080fd5b5061047e610f11565b005b34801561048c57600080fd5b50610495610f99565b005b3480156104a357600080fd5b506104ac61101f565b6040516104b99190613008565b60405180910390f35b3480156104ce57600080fd5b506104d7611049565b6040516104e491906130ac565b60405180910390f35b61050760048036038101906105029190612abe565b6110db565b005b34801561051557600080fd5b50610530600480360381019061052b919061296e565b6112c9565b005b34801561053e57600080fd5b506105476112df565b60405161055491906130ac565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906128eb565b61136d565b005b34801561059257600080fd5b506105ad60048036038101906105a89190612abe565b6113cf565b6040516105ba91906130ac565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190612abe565b611526565b005b3480156105f857600080fd5b50610613600480360381019061060e91906129ee565b6115ac565b005b34801561062157600080fd5b5061063c60048036038101906106379190612858565b611645565b6040516106499190613091565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061282b565b6116d9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107565750610755826117d1565b5b9050919050565b60606000805461076c906136ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610798906136ac565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa8261183b565b610839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610830906132ae565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087f82610da7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e79061332e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090f6118a7565b73ffffffffffffffffffffffffffffffffffffffff16148061093e575061093d816109386118a7565b611645565b5b61097d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109749061320e565b60405180910390fd5b61098783836118af565b505050565b61099d6109976118a7565b82611968565b6109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061334e565b60405180910390fd5b6109e7838383611a46565b505050565b6109f46118a7565b73ffffffffffffffffffffffffffffffffffffffff16610a1261101f565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f906132ce565b60405180910390fd5b610a70611cad565b565b610a8d8383836040518060200160405280600081525061136d565b505050565b60606000600867ffffffffffffffff811115610ab157610ab0613845565b5b604051908082528060200260200182016040528015610adf5781602001602082028036833780820191505090505b509050610aea610d90565b610af5576001610af8565b60005b60ff1681600081518110610b0f57610b0e613816565b5b602002602001018181525050600a5481600181518110610b3257610b31613816565b5b60200260200101818152505060085481600281518110610b5557610b54613816565b5b60200260200101818152505060095481600381518110610b7857610b77613816565b5b6020026020010181815250508091505090565b610b936118a7565b73ffffffffffffffffffffffffffffffffffffffff16610bb161101f565b73ffffffffffffffffffffffffffffffffffffffff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906132ce565b60405180910390fd5b80600c9080519060200190610c1d92919061263f565b5050565b600b60009054906101000a900460ff1681565b610c3c6118a7565b73ffffffffffffffffffffffffffffffffffffffff16610c5a61101f565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906132ce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cf6573d6000803e3d6000fd5b5050565b610d026118a7565b73ffffffffffffffffffffffffffffffffffffffff16610d2061101f565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d906132ce565b60405180910390fd5b8060079080519060200190610d8c92919061263f565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e479061324e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061322e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f196118a7565b73ffffffffffffffffffffffffffffffffffffffff16610f3761101f565b73ffffffffffffffffffffffffffffffffffffffff1614610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906132ce565b60405180910390fd5b610f976000611d4f565b565b610fa16118a7565b73ffffffffffffffffffffffffffffffffffffffff16610fbf61101f565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906132ce565b60405180910390fd5b61101d611e15565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611058906136ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611084906136ac565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b5050505050905090565b6110e3610d90565b15611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a906131ee565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906130ee565b60405180910390fd5b60038111156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061338e565b60405180910390fd5b6008546009541061121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112129061336e565b60405180910390fd5b6008548160095461122c91906134e1565b111561126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112649061326e565b60405180910390fd5b80600a5461127b9190613568565b3410156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b49061330e565b60405180910390fd5b6112c681611eb8565b50565b6112db6112d46118a7565b8383611efe565b5050565b600c80546112ec906136ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611318906136ac565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b505050505081565b61137e6113786118a7565b83611968565b6113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b49061334e565b60405180910390fd5b6113c98484848461206b565b50505050565b60606113da8261183b565b611419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611410906132ee565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514156114c757600c8054611442906136ac565b80601f016020809104026020016040519081016040528092919081815260200182805461146e906136ac565b80156114bb5780601f10611490576101008083540402835291602001916114bb565b820191906000526020600020905b81548152906001019060200180831161149e57829003601f168201915b50505050509050611521565b6000600780546114d6906136ac565b9050116114f2576040518060200160405280600081525061151e565b60076114fd836120c7565b60405160200161150e929190612fe4565b6040516020818303038152906040525b90505b919050565b61152e6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661154c61101f565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906132ce565b60405180910390fd5b80600a8190555050565b6115b46118a7565b73ffffffffffffffffffffffffffffffffffffffff166115d261101f565b73ffffffffffffffffffffffffffffffffffffffff1614611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906132ce565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e16118a7565b73ffffffffffffffffffffffffffffffffffffffff166116ff61101f565b73ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c906132ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc9061312e565b60405180910390fd5b6117ce81611d4f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661192283610da7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119738261183b565b6119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a9906131ce565b60405180910390fd5b60006119bd83610da7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ff57506119fe8185611645565b5b80611a3d57508373ffffffffffffffffffffffffffffffffffffffff16611a25846107ef565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a6682610da7565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab39061314e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b239061318e565b60405180910390fd5b611b37838383612228565b611b426000826118af565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9291906135c2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be991906134e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ca883838361222d565b505050565b611cb5610d90565b611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb906130ce565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d386118a7565b604051611d459190613008565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e1d610d90565b15611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e54906131ee565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ea16118a7565b604051611eae9190613008565b60405180910390a1565b60005b81811015611efa57611ecf33600954612232565b60096000815480929190611ee29061370f565b91905055508080611ef29061370f565b915050611ebb565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f64906131ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205e9190613091565b60405180910390a3505050565b612076848484611a46565b61208284848484612250565b6120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b89061310e565b60405180910390fd5b50505050565b6060600082141561210f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612223565b600082905060005b6000821461214157808061212a9061370f565b915050600a8261213a9190613537565b9150612117565b60008167ffffffffffffffff81111561215d5761215c613845565b5b6040519080825280601f01601f19166020018201604052801561218f5781602001600182028036833780820191505090505b5090505b6000851461221c576001826121a891906135c2565b9150600a856121b79190613758565b60306121c391906134e1565b60f81b8183815181106121d9576121d8613816565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122159190613537565b9450612193565b8093505050505b919050565b505050565b505050565b61224c8282604051806020016040528060008152506123e7565b5050565b60006122718473ffffffffffffffffffffffffffffffffffffffff16612442565b156123da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229a6118a7565b8786866040518563ffffffff1660e01b81526004016122bc9493929190613023565b602060405180830381600087803b1580156122d657600080fd5b505af192505050801561230757506040513d601f19601f820116820180604052508101906123049190612a48565b60015b61238a573d8060008114612337576040519150601f19603f3d011682016040523d82523d6000602084013e61233c565b606091505b50600081511415612382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123799061310e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123df565b600190505b949350505050565b6123f18383612465565b6123fe6000848484612250565b61243d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124349061310e565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc9061328e565b60405180910390fd5b6124de8161183b565b1561251e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125159061316e565b60405180910390fd5b61252a60008383612228565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461257a91906134e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461263b6000838361222d565b5050565b82805461264b906136ac565b90600052602060002090601f01602090048101928261266d57600085556126b4565b82601f1061268657805160ff19168380011785556126b4565b828001600101855582156126b4579182015b828111156126b3578251825591602001919060010190612698565b5b5090506126c191906126c5565b5090565b5b808211156126de5760008160009055506001016126c6565b5090565b60006126f56126f0846133ee565b6133c9565b90508281526020810184848401111561271157612710613879565b5b61271c84828561366a565b509392505050565b60006127376127328461341f565b6133c9565b90508281526020810184848401111561275357612752613879565b5b61275e84828561366a565b509392505050565b60008135905061277581613e10565b92915050565b60008135905061278a81613e27565b92915050565b60008135905061279f81613e3e565b92915050565b6000815190506127b481613e3e565b92915050565b600082601f8301126127cf576127ce613874565b5b81356127df8482602086016126e2565b91505092915050565b600082601f8301126127fd576127fc613874565b5b813561280d848260208601612724565b91505092915050565b60008135905061282581613e55565b92915050565b60006020828403121561284157612840613883565b5b600061284f84828501612766565b91505092915050565b6000806040838503121561286f5761286e613883565b5b600061287d85828601612766565b925050602061288e85828601612766565b9150509250929050565b6000806000606084860312156128b1576128b0613883565b5b60006128bf86828701612766565b93505060206128d086828701612766565b92505060406128e186828701612816565b9150509250925092565b6000806000806080858703121561290557612904613883565b5b600061291387828801612766565b945050602061292487828801612766565b935050604061293587828801612816565b925050606085013567ffffffffffffffff8111156129565761295561387e565b5b612962878288016127ba565b91505092959194509250565b6000806040838503121561298557612984613883565b5b600061299385828601612766565b92505060206129a48582860161277b565b9150509250929050565b600080604083850312156129c5576129c4613883565b5b60006129d385828601612766565b92505060206129e485828601612816565b9150509250929050565b600060208284031215612a0457612a03613883565b5b6000612a128482850161277b565b91505092915050565b600060208284031215612a3157612a30613883565b5b6000612a3f84828501612790565b91505092915050565b600060208284031215612a5e57612a5d613883565b5b6000612a6c848285016127a5565b91505092915050565b600060208284031215612a8b57612a8a613883565b5b600082013567ffffffffffffffff811115612aa957612aa861387e565b5b612ab5848285016127e8565b91505092915050565b600060208284031215612ad457612ad3613883565b5b6000612ae284828501612816565b91505092915050565b6000612af78383612fc6565b60208301905092915050565b612b0c816135f6565b82525050565b6000612b1d82613475565b612b2781856134a3565b9350612b3283613450565b8060005b83811015612b63578151612b4a8882612aeb565b9750612b5583613496565b925050600181019050612b36565b5085935050505092915050565b612b7981613608565b82525050565b6000612b8a82613480565b612b9481856134b4565b9350612ba4818560208601613679565b612bad81613888565b840191505092915050565b6000612bc38261348b565b612bcd81856134c5565b9350612bdd818560208601613679565b612be681613888565b840191505092915050565b6000612bfc8261348b565b612c0681856134d6565b9350612c16818560208601613679565b80840191505092915050565b60008154612c2f816136ac565b612c3981866134d6565b94506001821660008114612c545760018114612c6557612c98565b60ff19831686528186019350612c98565b612c6e85613460565b60005b83811015612c9057815481890152600182019150602081019050612c71565b838801955050505b50505092915050565b6000612cae6014836134c5565b9150612cb982613899565b602082019050919050565b6000612cd16020836134c5565b9150612cdc826138c2565b602082019050919050565b6000612cf46032836134c5565b9150612cff826138eb565b604082019050919050565b6000612d176026836134c5565b9150612d228261393a565b604082019050919050565b6000612d3a6025836134c5565b9150612d4582613989565b604082019050919050565b6000612d5d601c836134c5565b9150612d68826139d8565b602082019050919050565b6000612d806024836134c5565b9150612d8b82613a01565b604082019050919050565b6000612da36019836134c5565b9150612dae82613a50565b602082019050919050565b6000612dc6602c836134c5565b9150612dd182613a79565b604082019050919050565b6000612de96010836134c5565b9150612df482613ac8565b602082019050919050565b6000612e0c6038836134c5565b9150612e1782613af1565b604082019050919050565b6000612e2f602a836134c5565b9150612e3a82613b40565b604082019050919050565b6000612e526029836134c5565b9150612e5d82613b8f565b604082019050919050565b6000612e756012836134c5565b9150612e8082613bde565b602082019050919050565b6000612e986020836134c5565b9150612ea382613c07565b602082019050919050565b6000612ebb602c836134c5565b9150612ec682613c30565b604082019050919050565b6000612ede6020836134c5565b9150612ee982613c7f565b602082019050919050565b6000612f01602f836134c5565b9150612f0c82613ca8565b604082019050919050565b6000612f246013836134c5565b9150612f2f82613cf7565b602082019050919050565b6000612f476021836134c5565b9150612f5282613d20565b604082019050919050565b6000612f6a6031836134c5565b9150612f7582613d6f565b604082019050919050565b6000612f8d6012836134c5565b9150612f9882613dbe565b602082019050919050565b6000612fb06013836134c5565b9150612fbb82613de7565b602082019050919050565b612fcf81613660565b82525050565b612fde81613660565b82525050565b6000612ff08285612c22565b9150612ffc8284612bf1565b91508190509392505050565b600060208201905061301d6000830184612b03565b92915050565b60006080820190506130386000830187612b03565b6130456020830186612b03565b6130526040830185612fd5565b81810360608301526130648184612b7f565b905095945050505050565b600060208201905081810360008301526130898184612b12565b905092915050565b60006020820190506130a66000830184612b70565b92915050565b600060208201905081810360008301526130c68184612bb8565b905092915050565b600060208201905081810360008301526130e781612ca1565b9050919050565b6000602082019050818103600083015261310781612cc4565b9050919050565b6000602082019050818103600083015261312781612ce7565b9050919050565b6000602082019050818103600083015261314781612d0a565b9050919050565b6000602082019050818103600083015261316781612d2d565b9050919050565b6000602082019050818103600083015261318781612d50565b9050919050565b600060208201905081810360008301526131a781612d73565b9050919050565b600060208201905081810360008301526131c781612d96565b9050919050565b600060208201905081810360008301526131e781612db9565b9050919050565b6000602082019050818103600083015261320781612ddc565b9050919050565b6000602082019050818103600083015261322781612dff565b9050919050565b6000602082019050818103600083015261324781612e22565b9050919050565b6000602082019050818103600083015261326781612e45565b9050919050565b6000602082019050818103600083015261328781612e68565b9050919050565b600060208201905081810360008301526132a781612e8b565b9050919050565b600060208201905081810360008301526132c781612eae565b9050919050565b600060208201905081810360008301526132e781612ed1565b9050919050565b6000602082019050818103600083015261330781612ef4565b9050919050565b6000602082019050818103600083015261332781612f17565b9050919050565b6000602082019050818103600083015261334781612f3a565b9050919050565b6000602082019050818103600083015261336781612f5d565b9050919050565b6000602082019050818103600083015261338781612f80565b9050919050565b600060208201905081810360008301526133a781612fa3565b9050919050565b60006020820190506133c36000830184612fd5565b92915050565b60006133d36133e4565b90506133df82826136de565b919050565b6000604051905090565b600067ffffffffffffffff82111561340957613408613845565b5b61341282613888565b9050602081019050919050565b600067ffffffffffffffff82111561343a57613439613845565b5b61344382613888565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134ec82613660565b91506134f783613660565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561352c5761352b613789565b5b828201905092915050565b600061354282613660565b915061354d83613660565b92508261355d5761355c6137b8565b5b828204905092915050565b600061357382613660565b915061357e83613660565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135b7576135b6613789565b5b828202905092915050565b60006135cd82613660565b91506135d883613660565b9250828210156135eb576135ea613789565b5b828203905092915050565b600061360182613640565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561369757808201518184015260208101905061367c565b838111156136a6576000848401525b50505050565b600060028204905060018216806136c457607f821691505b602082108114156136d8576136d76137e7565b5b50919050565b6136e782613888565b810181811067ffffffffffffffff8211171561370657613705613845565b5b80604052505050565b600061371a82613660565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374d5761374c613789565b5b600182019050919050565b600061376382613660565b915061376e83613660565b92508261377e5761377d6137b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f436f6e747261637420617265206e6f7420616c6c6f77656420746f2063616c6c600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f4f6e65205458204d617820737570706c79203300000000000000000000000000600082015250565b613e19816135f6565b8114613e2457600080fd5b50565b613e3081613608565b8114613e3b57600080fd5b50565b613e4781613614565b8114613e5257600080fd5b50565b613e5e81613660565b8114613e6957600080fd5b5056fea26469706673582212200f119583d0716f6eb2b8fea09bfd54b31dea04e4971971d569518f96be6c704264736f6c63430008060033697066733a2f2f6261666b72656964746b7a626c676172366c36643670616a78746c6979696f676c797070616c356b6262683474753736666c6d6d7a33626e746865
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a45ba8e71161008a578063de4b326211610064578063de4b3262146105c3578063e0a80853146105ec578063e985e9c514610615578063f2fde38b14610652576101b7565b8063a45ba8e714610532578063b88d4fde1461055d578063c87b56dd14610586576101b7565b80638da5cb5b116100c65780638da5cb5b1461049757806395d89b41146104c2578063a0712d68146104ed578063a22cb46514610509576101b7565b806370a082311461042c578063715018a6146104695780638456cb5914610480576101b7565b80634e69d5601161015957806351cff8d91161013357806351cff8d91461037257806355f804b31461039b5780635c975abb146103c45780636352211e146103ef576101b7565b80634e69d560146102f35780634fdd43cb1461031e5780635183022714610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806323b872dd1461028a5780633f4ba83a146102b357806342842e0e146102ca576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612a1b565b61067b565b6040516101f09190613091565b60405180910390f35b34801561020557600080fd5b5061020e61075d565b60405161021b91906130ac565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612abe565b6107ef565b6040516102589190613008565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906129ae565b610874565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612898565b61098c565b005b3480156102bf57600080fd5b506102c86109ec565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190612898565b610a72565b005b3480156102ff57600080fd5b50610308610a92565b604051610315919061306f565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190612a75565b610b8b565b005b34801561035357600080fd5b5061035c610c21565b6040516103699190613091565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061282b565b610c34565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190612a75565b610cfa565b005b3480156103d057600080fd5b506103d9610d90565b6040516103e69190613091565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612abe565b610da7565b6040516104239190613008565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e919061282b565b610e59565b60405161046091906133ae565b60405180910390f35b34801561047557600080fd5b5061047e610f11565b005b34801561048c57600080fd5b50610495610f99565b005b3480156104a357600080fd5b506104ac61101f565b6040516104b99190613008565b60405180910390f35b3480156104ce57600080fd5b506104d7611049565b6040516104e491906130ac565b60405180910390f35b61050760048036038101906105029190612abe565b6110db565b005b34801561051557600080fd5b50610530600480360381019061052b919061296e565b6112c9565b005b34801561053e57600080fd5b506105476112df565b60405161055491906130ac565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906128eb565b61136d565b005b34801561059257600080fd5b506105ad60048036038101906105a89190612abe565b6113cf565b6040516105ba91906130ac565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190612abe565b611526565b005b3480156105f857600080fd5b50610613600480360381019061060e91906129ee565b6115ac565b005b34801561062157600080fd5b5061063c60048036038101906106379190612858565b611645565b6040516106499190613091565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061282b565b6116d9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107565750610755826117d1565b5b9050919050565b60606000805461076c906136ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610798906136ac565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa8261183b565b610839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610830906132ae565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087f82610da7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e79061332e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090f6118a7565b73ffffffffffffffffffffffffffffffffffffffff16148061093e575061093d816109386118a7565b611645565b5b61097d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109749061320e565b60405180910390fd5b61098783836118af565b505050565b61099d6109976118a7565b82611968565b6109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061334e565b60405180910390fd5b6109e7838383611a46565b505050565b6109f46118a7565b73ffffffffffffffffffffffffffffffffffffffff16610a1261101f565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f906132ce565b60405180910390fd5b610a70611cad565b565b610a8d8383836040518060200160405280600081525061136d565b505050565b60606000600867ffffffffffffffff811115610ab157610ab0613845565b5b604051908082528060200260200182016040528015610adf5781602001602082028036833780820191505090505b509050610aea610d90565b610af5576001610af8565b60005b60ff1681600081518110610b0f57610b0e613816565b5b602002602001018181525050600a5481600181518110610b3257610b31613816565b5b60200260200101818152505060085481600281518110610b5557610b54613816565b5b60200260200101818152505060095481600381518110610b7857610b77613816565b5b6020026020010181815250508091505090565b610b936118a7565b73ffffffffffffffffffffffffffffffffffffffff16610bb161101f565b73ffffffffffffffffffffffffffffffffffffffff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906132ce565b60405180910390fd5b80600c9080519060200190610c1d92919061263f565b5050565b600b60009054906101000a900460ff1681565b610c3c6118a7565b73ffffffffffffffffffffffffffffffffffffffff16610c5a61101f565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906132ce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cf6573d6000803e3d6000fd5b5050565b610d026118a7565b73ffffffffffffffffffffffffffffffffffffffff16610d2061101f565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d906132ce565b60405180910390fd5b8060079080519060200190610d8c92919061263f565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e479061324e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061322e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f196118a7565b73ffffffffffffffffffffffffffffffffffffffff16610f3761101f565b73ffffffffffffffffffffffffffffffffffffffff1614610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906132ce565b60405180910390fd5b610f976000611d4f565b565b610fa16118a7565b73ffffffffffffffffffffffffffffffffffffffff16610fbf61101f565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906132ce565b60405180910390fd5b61101d611e15565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611058906136ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611084906136ac565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b5050505050905090565b6110e3610d90565b15611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a906131ee565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906130ee565b60405180910390fd5b60038111156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061338e565b60405180910390fd5b6008546009541061121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112129061336e565b60405180910390fd5b6008548160095461122c91906134e1565b111561126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112649061326e565b60405180910390fd5b80600a5461127b9190613568565b3410156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b49061330e565b60405180910390fd5b6112c681611eb8565b50565b6112db6112d46118a7565b8383611efe565b5050565b600c80546112ec906136ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611318906136ac565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b505050505081565b61137e6113786118a7565b83611968565b6113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b49061334e565b60405180910390fd5b6113c98484848461206b565b50505050565b60606113da8261183b565b611419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611410906132ee565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514156114c757600c8054611442906136ac565b80601f016020809104026020016040519081016040528092919081815260200182805461146e906136ac565b80156114bb5780601f10611490576101008083540402835291602001916114bb565b820191906000526020600020905b81548152906001019060200180831161149e57829003601f168201915b50505050509050611521565b6000600780546114d6906136ac565b9050116114f2576040518060200160405280600081525061151e565b60076114fd836120c7565b60405160200161150e929190612fe4565b6040516020818303038152906040525b90505b919050565b61152e6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661154c61101f565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906132ce565b60405180910390fd5b80600a8190555050565b6115b46118a7565b73ffffffffffffffffffffffffffffffffffffffff166115d261101f565b73ffffffffffffffffffffffffffffffffffffffff1614611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906132ce565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e16118a7565b73ffffffffffffffffffffffffffffffffffffffff166116ff61101f565b73ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c906132ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc9061312e565b60405180910390fd5b6117ce81611d4f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661192283610da7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119738261183b565b6119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a9906131ce565b60405180910390fd5b60006119bd83610da7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ff57506119fe8185611645565b5b80611a3d57508373ffffffffffffffffffffffffffffffffffffffff16611a25846107ef565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a6682610da7565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab39061314e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b239061318e565b60405180910390fd5b611b37838383612228565b611b426000826118af565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9291906135c2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be991906134e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ca883838361222d565b505050565b611cb5610d90565b611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb906130ce565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d386118a7565b604051611d459190613008565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e1d610d90565b15611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e54906131ee565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ea16118a7565b604051611eae9190613008565b60405180910390a1565b60005b81811015611efa57611ecf33600954612232565b60096000815480929190611ee29061370f565b91905055508080611ef29061370f565b915050611ebb565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f64906131ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205e9190613091565b60405180910390a3505050565b612076848484611a46565b61208284848484612250565b6120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b89061310e565b60405180910390fd5b50505050565b6060600082141561210f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612223565b600082905060005b6000821461214157808061212a9061370f565b915050600a8261213a9190613537565b9150612117565b60008167ffffffffffffffff81111561215d5761215c613845565b5b6040519080825280601f01601f19166020018201604052801561218f5781602001600182028036833780820191505090505b5090505b6000851461221c576001826121a891906135c2565b9150600a856121b79190613758565b60306121c391906134e1565b60f81b8183815181106121d9576121d8613816565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122159190613537565b9450612193565b8093505050505b919050565b505050565b505050565b61224c8282604051806020016040528060008152506123e7565b5050565b60006122718473ffffffffffffffffffffffffffffffffffffffff16612442565b156123da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229a6118a7565b8786866040518563ffffffff1660e01b81526004016122bc9493929190613023565b602060405180830381600087803b1580156122d657600080fd5b505af192505050801561230757506040513d601f19601f820116820180604052508101906123049190612a48565b60015b61238a573d8060008114612337576040519150601f19603f3d011682016040523d82523d6000602084013e61233c565b606091505b50600081511415612382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123799061310e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123df565b600190505b949350505050565b6123f18383612465565b6123fe6000848484612250565b61243d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124349061310e565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc9061328e565b60405180910390fd5b6124de8161183b565b1561251e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125159061316e565b60405180910390fd5b61252a60008383612228565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461257a91906134e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461263b6000838361222d565b5050565b82805461264b906136ac565b90600052602060002090601f01602090048101928261266d57600085556126b4565b82601f1061268657805160ff19168380011785556126b4565b828001600101855582156126b4579182015b828111156126b3578251825591602001919060010190612698565b5b5090506126c191906126c5565b5090565b5b808211156126de5760008160009055506001016126c6565b5090565b60006126f56126f0846133ee565b6133c9565b90508281526020810184848401111561271157612710613879565b5b61271c84828561366a565b509392505050565b60006127376127328461341f565b6133c9565b90508281526020810184848401111561275357612752613879565b5b61275e84828561366a565b509392505050565b60008135905061277581613e10565b92915050565b60008135905061278a81613e27565b92915050565b60008135905061279f81613e3e565b92915050565b6000815190506127b481613e3e565b92915050565b600082601f8301126127cf576127ce613874565b5b81356127df8482602086016126e2565b91505092915050565b600082601f8301126127fd576127fc613874565b5b813561280d848260208601612724565b91505092915050565b60008135905061282581613e55565b92915050565b60006020828403121561284157612840613883565b5b600061284f84828501612766565b91505092915050565b6000806040838503121561286f5761286e613883565b5b600061287d85828601612766565b925050602061288e85828601612766565b9150509250929050565b6000806000606084860312156128b1576128b0613883565b5b60006128bf86828701612766565b93505060206128d086828701612766565b92505060406128e186828701612816565b9150509250925092565b6000806000806080858703121561290557612904613883565b5b600061291387828801612766565b945050602061292487828801612766565b935050604061293587828801612816565b925050606085013567ffffffffffffffff8111156129565761295561387e565b5b612962878288016127ba565b91505092959194509250565b6000806040838503121561298557612984613883565b5b600061299385828601612766565b92505060206129a48582860161277b565b9150509250929050565b600080604083850312156129c5576129c4613883565b5b60006129d385828601612766565b92505060206129e485828601612816565b9150509250929050565b600060208284031215612a0457612a03613883565b5b6000612a128482850161277b565b91505092915050565b600060208284031215612a3157612a30613883565b5b6000612a3f84828501612790565b91505092915050565b600060208284031215612a5e57612a5d613883565b5b6000612a6c848285016127a5565b91505092915050565b600060208284031215612a8b57612a8a613883565b5b600082013567ffffffffffffffff811115612aa957612aa861387e565b5b612ab5848285016127e8565b91505092915050565b600060208284031215612ad457612ad3613883565b5b6000612ae284828501612816565b91505092915050565b6000612af78383612fc6565b60208301905092915050565b612b0c816135f6565b82525050565b6000612b1d82613475565b612b2781856134a3565b9350612b3283613450565b8060005b83811015612b63578151612b4a8882612aeb565b9750612b5583613496565b925050600181019050612b36565b5085935050505092915050565b612b7981613608565b82525050565b6000612b8a82613480565b612b9481856134b4565b9350612ba4818560208601613679565b612bad81613888565b840191505092915050565b6000612bc38261348b565b612bcd81856134c5565b9350612bdd818560208601613679565b612be681613888565b840191505092915050565b6000612bfc8261348b565b612c0681856134d6565b9350612c16818560208601613679565b80840191505092915050565b60008154612c2f816136ac565b612c3981866134d6565b94506001821660008114612c545760018114612c6557612c98565b60ff19831686528186019350612c98565b612c6e85613460565b60005b83811015612c9057815481890152600182019150602081019050612c71565b838801955050505b50505092915050565b6000612cae6014836134c5565b9150612cb982613899565b602082019050919050565b6000612cd16020836134c5565b9150612cdc826138c2565b602082019050919050565b6000612cf46032836134c5565b9150612cff826138eb565b604082019050919050565b6000612d176026836134c5565b9150612d228261393a565b604082019050919050565b6000612d3a6025836134c5565b9150612d4582613989565b604082019050919050565b6000612d5d601c836134c5565b9150612d68826139d8565b602082019050919050565b6000612d806024836134c5565b9150612d8b82613a01565b604082019050919050565b6000612da36019836134c5565b9150612dae82613a50565b602082019050919050565b6000612dc6602c836134c5565b9150612dd182613a79565b604082019050919050565b6000612de96010836134c5565b9150612df482613ac8565b602082019050919050565b6000612e0c6038836134c5565b9150612e1782613af1565b604082019050919050565b6000612e2f602a836134c5565b9150612e3a82613b40565b604082019050919050565b6000612e526029836134c5565b9150612e5d82613b8f565b604082019050919050565b6000612e756012836134c5565b9150612e8082613bde565b602082019050919050565b6000612e986020836134c5565b9150612ea382613c07565b602082019050919050565b6000612ebb602c836134c5565b9150612ec682613c30565b604082019050919050565b6000612ede6020836134c5565b9150612ee982613c7f565b602082019050919050565b6000612f01602f836134c5565b9150612f0c82613ca8565b604082019050919050565b6000612f246013836134c5565b9150612f2f82613cf7565b602082019050919050565b6000612f476021836134c5565b9150612f5282613d20565b604082019050919050565b6000612f6a6031836134c5565b9150612f7582613d6f565b604082019050919050565b6000612f8d6012836134c5565b9150612f9882613dbe565b602082019050919050565b6000612fb06013836134c5565b9150612fbb82613de7565b602082019050919050565b612fcf81613660565b82525050565b612fde81613660565b82525050565b6000612ff08285612c22565b9150612ffc8284612bf1565b91508190509392505050565b600060208201905061301d6000830184612b03565b92915050565b60006080820190506130386000830187612b03565b6130456020830186612b03565b6130526040830185612fd5565b81810360608301526130648184612b7f565b905095945050505050565b600060208201905081810360008301526130898184612b12565b905092915050565b60006020820190506130a66000830184612b70565b92915050565b600060208201905081810360008301526130c68184612bb8565b905092915050565b600060208201905081810360008301526130e781612ca1565b9050919050565b6000602082019050818103600083015261310781612cc4565b9050919050565b6000602082019050818103600083015261312781612ce7565b9050919050565b6000602082019050818103600083015261314781612d0a565b9050919050565b6000602082019050818103600083015261316781612d2d565b9050919050565b6000602082019050818103600083015261318781612d50565b9050919050565b600060208201905081810360008301526131a781612d73565b9050919050565b600060208201905081810360008301526131c781612d96565b9050919050565b600060208201905081810360008301526131e781612db9565b9050919050565b6000602082019050818103600083015261320781612ddc565b9050919050565b6000602082019050818103600083015261322781612dff565b9050919050565b6000602082019050818103600083015261324781612e22565b9050919050565b6000602082019050818103600083015261326781612e45565b9050919050565b6000602082019050818103600083015261328781612e68565b9050919050565b600060208201905081810360008301526132a781612e8b565b9050919050565b600060208201905081810360008301526132c781612eae565b9050919050565b600060208201905081810360008301526132e781612ed1565b9050919050565b6000602082019050818103600083015261330781612ef4565b9050919050565b6000602082019050818103600083015261332781612f17565b9050919050565b6000602082019050818103600083015261334781612f3a565b9050919050565b6000602082019050818103600083015261336781612f5d565b9050919050565b6000602082019050818103600083015261338781612f80565b9050919050565b600060208201905081810360008301526133a781612fa3565b9050919050565b60006020820190506133c36000830184612fd5565b92915050565b60006133d36133e4565b90506133df82826136de565b919050565b6000604051905090565b600067ffffffffffffffff82111561340957613408613845565b5b61341282613888565b9050602081019050919050565b600067ffffffffffffffff82111561343a57613439613845565b5b61344382613888565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134ec82613660565b91506134f783613660565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561352c5761352b613789565b5b828201905092915050565b600061354282613660565b915061354d83613660565b92508261355d5761355c6137b8565b5b828204905092915050565b600061357382613660565b915061357e83613660565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135b7576135b6613789565b5b828202905092915050565b60006135cd82613660565b91506135d883613660565b9250828210156135eb576135ea613789565b5b828203905092915050565b600061360182613640565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561369757808201518184015260208101905061367c565b838111156136a6576000848401525b50505050565b600060028204905060018216806136c457607f821691505b602082108114156136d8576136d76137e7565b5b50919050565b6136e782613888565b810181811067ffffffffffffffff8211171561370657613705613845565b5b80604052505050565b600061371a82613660565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374d5761374c613789565b5b600182019050919050565b600061376382613660565b915061376e83613660565b92508261377e5761377d6137b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f436f6e747261637420617265206e6f7420616c6c6f77656420746f2063616c6c600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f4f6e65205458204d617820737570706c79203300000000000000000000000000600082015250565b613e19816135f6565b8114613e2457600080fd5b50565b613e3081613608565b8114613e3b57600080fd5b50565b613e4781613614565b8114613e5257600080fd5b50565b613e5e81613660565b8114613e6957600080fd5b5056fea26469706673582212200f119583d0716f6eb2b8fea09bfd54b31dea04e4971971d569518f96be6c704264736f6c63430008060033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.