ERC-721
Overview
Max Total Supply
100 EBOOGOTCHI
Holders
55
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 EBOOGOTCHILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Eboogotchi
Compiler Version
v0.8.9+commit.e5eed63a
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.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract Eboogotchi is ERC721A, Ownable { constructor(string memory baseURI, address[] memory to) ERC721A("Eboogotchi", "EBOOGOTCHI") { for (uint256 i = 0; i < to.length; i++) { _safeMint(to[i], 1); } _baseTokenURI = baseURI; } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } }
// 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 // Creator: Chiru Labs pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// 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 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 `IERC721.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 v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address[]","name":"to","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":[{"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":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200420b3803806200420b833981810160405281019062000037919062000b82565b6040518060400160405280600a81526020017f45626f6f676f74636869000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f45424f4f474f54434849000000000000000000000000000000000000000000008152508160019080519060200190620000bb929190620007f5565b508060029080519060200190620000d4929190620007f5565b505050620000f7620000eb6200016c60201b60201c565b6200017460201b60201c565b60005b81518110156200014a57620001348282815181106200011e576200011d62000c07565b5b602002602001015160016200023a60201b60201c565b8080620001419062000c6f565b915050620000fa565b50816008908051906020019062000163929190620007f5565b5050506200105d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025c8282604051806020016040528060008152506200026060201b60201c565b5050565b6200027583838360016200027a60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620002f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ea9062000d44565b60405180910390fd5b60008414156200033a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003319062000ddc565b60405180910390fd5b6200034f60008683876200061c60201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015620005f757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315620005e1576200059e60008884886200062260201b60201c565b620005e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d79062000e74565b60405180910390fd5b5b818060010192505080806001019150506200051d565b508060008190555050620006156000868387620007dc60201b60201c565b5050505050565b50505050565b6000620006508473ffffffffffffffffffffffffffffffffffffffff16620007e260201b620010d51760201c565b15620007cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006826200016c60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006a6949392919062000f15565b602060405180830381600087803b158015620006c157600080fd5b505af1925050508015620006f557506040513d601f19601f82011682018060405250810190620006f2919062000fc6565b60015b6200077e573d806000811462000728576040519150601f19603f3d011682016040523d82523d6000602084013e6200072d565b606091505b5060008151141562000776576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076d9062000e74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007d4565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b828054620008039062001027565b90600052602060002090601f01602090048101928262000827576000855562000873565b82601f106200084257805160ff191683800117855562000873565b8280016001018555821562000873579182015b828111156200087257825182559160200191906001019062000855565b5b50905062000882919062000886565b5090565b5b80821115620008a157600081600090555060010162000887565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200090e82620008c3565b810181811067ffffffffffffffff8211171562000930576200092f620008d4565b5b80604052505050565b600062000945620008a5565b905062000953828262000903565b919050565b600067ffffffffffffffff821115620009765762000975620008d4565b5b6200098182620008c3565b9050602081019050919050565b60005b83811015620009ae57808201518184015260208101905062000991565b83811115620009be576000848401525b50505050565b6000620009db620009d58462000958565b62000939565b905082815260208101848484011115620009fa57620009f9620008be565b5b62000a078482856200098e565b509392505050565b600082601f83011262000a275762000a26620008b9565b5b815162000a39848260208601620009c4565b91505092915050565b600067ffffffffffffffff82111562000a605762000a5f620008d4565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aa38262000a76565b9050919050565b62000ab58162000a96565b811462000ac157600080fd5b50565b60008151905062000ad58162000aaa565b92915050565b600062000af262000aec8462000a42565b62000939565b9050808382526020820190506020840283018581111562000b185762000b1762000a71565b5b835b8181101562000b45578062000b30888262000ac4565b84526020840193505060208101905062000b1a565b5050509392505050565b600082601f83011262000b675762000b66620008b9565b5b815162000b7984826020860162000adb565b91505092915050565b6000806040838503121562000b9c5762000b9b620008af565b5b600083015167ffffffffffffffff81111562000bbd5762000bbc620008b4565b5b62000bcb8582860162000a0f565b925050602083015167ffffffffffffffff81111562000bef5762000bee620008b4565b5b62000bfd8582860162000b4f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000c7c8262000c65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cb25762000cb162000c36565b5b600182019050919050565b600082825260208201905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000d2c60218362000cbd565b915062000d398262000cce565b604082019050919050565b6000602082019050818103600083015262000d5f8162000d1d565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600062000dc460288362000cbd565b915062000dd18262000d66565b604082019050919050565b6000602082019050818103600083015262000df78162000db5565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600062000e5c60338362000cbd565b915062000e698262000dfe565b604082019050919050565b6000602082019050818103600083015262000e8f8162000e4d565b9050919050565b62000ea18162000a96565b82525050565b62000eb28162000c65565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000ee18262000eb8565b62000eed818562000ec3565b935062000eff8185602086016200098e565b62000f0a81620008c3565b840191505092915050565b600060808201905062000f2c600083018762000e96565b62000f3b602083018662000e96565b62000f4a604083018562000ea7565b818103606083015262000f5e818462000ed4565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000fa08162000f69565b811462000fac57600080fd5b50565b60008151905062000fc08162000f95565b92915050565b60006020828403121562000fdf5762000fde620008af565b5b600062000fef8482850162000faf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200104057607f821691505b6020821081141562001057576200105662000ff8565b5b50919050565b61319e806200106d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb46514610343578063b88d4fde1461035f578063c87b56dd1461037b578063e985e9c5146103ab578063f2fde38b146103db5761012c565b80636352211e1461029d57806370a08231146102cd578063715018a6146102fd5780638da5cb5b1461030757806395d89b41146103255761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce71461025157806355f804b3146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611e98565b6103f7565b6040516101589190611ee0565b60405180910390f35b610169610541565b6040516101769190611f94565b60405180910390f35b61019960048036038101906101949190611fec565b6105d3565b6040516101a6919061205a565b60405180910390f35b6101c960048036038101906101c491906120a1565b610658565b005b6101d3610771565b6040516101e091906120f0565b60405180910390f35b61020360048036038101906101fe919061210b565b61077a565b005b61021f600480360381019061021a91906120a1565b61078a565b60405161022c91906120f0565b60405180910390f35b61024f600480360381019061024a919061210b565b61097c565b005b61026b60048036038101906102669190611fec565b61099c565b60405161027891906120f0565b60405180910390f35b61029b600480360381019061029691906121c3565b6109ef565b005b6102b760048036038101906102b29190611fec565b610a81565b6040516102c4919061205a565b60405180910390f35b6102e760048036038101906102e29190612210565b610a97565b6040516102f491906120f0565b60405180910390f35b610305610b80565b005b61030f610c08565b60405161031c919061205a565b60405180910390f35b61032d610c32565b60405161033a9190611f94565b60405180910390f35b61035d60048036038101906103589190612269565b610cc4565b005b610379600480360381019061037491906123d9565b610e45565b005b61039560048036038101906103909190611fec565b610ea1565b6040516103a29190611f94565b60405180910390f35b6103c560048036038101906103c0919061245c565b610f49565b6040516103d29190611ee0565b60405180910390f35b6103f560048036038101906103f09190612210565b610fdd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061052a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061053a5750610539826110e8565b5b9050919050565b606060018054610550906124cb565b80601f016020809104026020016040519081016040528092919081815260200182805461057c906124cb565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b60006105de82611152565b61061d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106149061256f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066382610a81565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb90612601565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106f361115f565b73ffffffffffffffffffffffffffffffffffffffff16148061072257506107218161071c61115f565b610f49565b5b610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890612693565b60405180910390fd5b61076c838383611167565b505050565b60008054905090565b610785838383611219565b505050565b600061079583610a97565b82106107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd90612725565b60405180910390fd5b60006107e0610771565b905060008060005b8381101561093a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146108da57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c5786841415610923578195505050505050610976565b83806001019450505b5080806001019150506107e8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906127b7565b60405180910390fd5b92915050565b61099783838360405180602001604052806000815250610e45565b505050565b60006109a6610771565b82106109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90612849565b60405180910390fd5b819050919050565b6109f761115f565b73ffffffffffffffffffffffffffffffffffffffff16610a15610c08565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a62906128b5565b60405180910390fd5b818160089190610a7c929190611d4f565b505050565b6000610a8c82611759565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612947565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610b8861115f565b73ffffffffffffffffffffffffffffffffffffffff16610ba6610c08565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906128b5565b60405180910390fd5b610c0660006118f3565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610c41906124cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6d906124cb565b8015610cba5780601f10610c8f57610100808354040283529160200191610cba565b820191906000526020600020905b815481529060010190602001808311610c9d57829003601f168201915b5050505050905090565b610ccc61115f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906129b3565b60405180910390fd5b8060066000610d4761115f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610df461115f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e399190611ee0565b60405180910390a35050565b610e50848484611219565b610e5c848484846119b9565b610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612a45565b60405180910390fd5b50505050565b6060610eac82611152565b610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290612ad7565b60405180910390fd5b6000610ef5611b50565b9050600081511415610f165760405180602001604052806000815250610f41565b80610f2084611be2565b604051602001610f31929190612b33565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fe561115f565b73ffffffffffffffffffffffffffffffffffffffff16611003610c08565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906128b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612bc9565b60405180910390fd5b6110d2816118f3565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061122482611759565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661124b61115f565b73ffffffffffffffffffffffffffffffffffffffff1614806112a7575061127061115f565b73ffffffffffffffffffffffffffffffffffffffff1661128f846105d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806112c357506112c282600001516112bd61115f565b610f49565b5b905080611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90612c5b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612ced565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612d7f565b60405180910390fd5b6113f48585856001611d43565b6114046000848460000151611167565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116e95761164881611152565b156116e85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117528585856001611d49565b5050505050565b611761611dd5565b61176a82611152565b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090612e11565b60405180910390fd5b60008290505b600081106118b2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118a35780925050506118ee565b508080600190039150506117af565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590612ea3565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119da8473ffffffffffffffffffffffffffffffffffffffff166110d5565b15611b43578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a0361115f565b8786866040518563ffffffff1660e01b8152600401611a259493929190612f18565b602060405180830381600087803b158015611a3f57600080fd5b505af1925050508015611a7057506040513d601f19601f82011682018060405250810190611a6d9190612f79565b60015b611af3573d8060008114611aa0576040519150601f19603f3d011682016040523d82523d6000602084013e611aa5565b606091505b50600081511415611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290612a45565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b48565b600190505b949350505050565b606060088054611b5f906124cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8b906124cb565b8015611bd85780601f10611bad57610100808354040283529160200191611bd8565b820191906000526020600020905b815481529060010190602001808311611bbb57829003601f168201915b5050505050905090565b60606000821415611c2a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d3e565b600082905060005b60008214611c5c578080611c4590612fd5565b915050600a82611c55919061304d565b9150611c32565b60008167ffffffffffffffff811115611c7857611c776122ae565b5b6040519080825280601f01601f191660200182016040528015611caa5781602001600182028036833780820191505090505b5090505b60008514611d3757600182611cc3919061307e565b9150600a85611cd291906130b2565b6030611cde91906130e3565b60f81b818381518110611cf457611cf3613139565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d30919061304d565b9450611cae565b8093505050505b919050565b50505050565b50505050565b828054611d5b906124cb565b90600052602060002090601f016020900481019282611d7d5760008555611dc4565b82601f10611d9657803560ff1916838001178555611dc4565b82800160010185558215611dc4579182015b82811115611dc3578235825591602001919060010190611da8565b5b509050611dd19190611e0f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115611e28576000816000905550600101611e10565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e7581611e40565b8114611e8057600080fd5b50565b600081359050611e9281611e6c565b92915050565b600060208284031215611eae57611ead611e36565b5b6000611ebc84828501611e83565b91505092915050565b60008115159050919050565b611eda81611ec5565b82525050565b6000602082019050611ef56000830184611ed1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f35578082015181840152602081019050611f1a565b83811115611f44576000848401525b50505050565b6000601f19601f8301169050919050565b6000611f6682611efb565b611f708185611f06565b9350611f80818560208601611f17565b611f8981611f4a565b840191505092915050565b60006020820190508181036000830152611fae8184611f5b565b905092915050565b6000819050919050565b611fc981611fb6565b8114611fd457600080fd5b50565b600081359050611fe681611fc0565b92915050565b60006020828403121561200257612001611e36565b5b600061201084828501611fd7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204482612019565b9050919050565b61205481612039565b82525050565b600060208201905061206f600083018461204b565b92915050565b61207e81612039565b811461208957600080fd5b50565b60008135905061209b81612075565b92915050565b600080604083850312156120b8576120b7611e36565b5b60006120c68582860161208c565b92505060206120d785828601611fd7565b9150509250929050565b6120ea81611fb6565b82525050565b600060208201905061210560008301846120e1565b92915050565b60008060006060848603121561212457612123611e36565b5b60006121328682870161208c565b93505060206121438682870161208c565b925050604061215486828701611fd7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126121835761218261215e565b5b8235905067ffffffffffffffff8111156121a05761219f612163565b5b6020830191508360018202830111156121bc576121bb612168565b5b9250929050565b600080602083850312156121da576121d9611e36565b5b600083013567ffffffffffffffff8111156121f8576121f7611e3b565b5b6122048582860161216d565b92509250509250929050565b60006020828403121561222657612225611e36565b5b60006122348482850161208c565b91505092915050565b61224681611ec5565b811461225157600080fd5b50565b6000813590506122638161223d565b92915050565b600080604083850312156122805761227f611e36565b5b600061228e8582860161208c565b925050602061229f85828601612254565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122e682611f4a565b810181811067ffffffffffffffff82111715612305576123046122ae565b5b80604052505050565b6000612318611e2c565b905061232482826122dd565b919050565b600067ffffffffffffffff821115612344576123436122ae565b5b61234d82611f4a565b9050602081019050919050565b82818337600083830152505050565b600061237c61237784612329565b61230e565b905082815260208101848484011115612398576123976122a9565b5b6123a384828561235a565b509392505050565b600082601f8301126123c0576123bf61215e565b5b81356123d0848260208601612369565b91505092915050565b600080600080608085870312156123f3576123f2611e36565b5b60006124018782880161208c565b94505060206124128782880161208c565b935050604061242387828801611fd7565b925050606085013567ffffffffffffffff81111561244457612443611e3b565b5b612450878288016123ab565b91505092959194509250565b6000806040838503121561247357612472611e36565b5b60006124818582860161208c565b92505060206124928582860161208c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124e357607f821691505b602082108114156124f7576124f661249c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612559602d83611f06565b9150612564826124fd565b604082019050919050565b600060208201905081810360008301526125888161254c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006125eb602283611f06565b91506125f68261258f565b604082019050919050565b6000602082019050818103600083015261261a816125de565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061267d603983611f06565b915061268882612621565b604082019050919050565b600060208201905081810360008301526126ac81612670565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061270f602283611f06565b915061271a826126b3565b604082019050919050565b6000602082019050818103600083015261273e81612702565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006127a1602e83611f06565b91506127ac82612745565b604082019050919050565b600060208201905081810360008301526127d081612794565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000612833602383611f06565b915061283e826127d7565b604082019050919050565b6000602082019050818103600083015261286281612826565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289f602083611f06565b91506128aa82612869565b602082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612931602b83611f06565b915061293c826128d5565b604082019050919050565b6000602082019050818103600083015261296081612924565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061299d601a83611f06565b91506129a882612967565b602082019050919050565b600060208201905081810360008301526129cc81612990565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000612a2f603383611f06565b9150612a3a826129d3565b604082019050919050565b60006020820190508181036000830152612a5e81612a22565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612ac1602f83611f06565b9150612acc82612a65565b604082019050919050565b60006020820190508181036000830152612af081612ab4565b9050919050565b600081905092915050565b6000612b0d82611efb565b612b178185612af7565b9350612b27818560208601611f17565b80840191505092915050565b6000612b3f8285612b02565b9150612b4b8284612b02565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bb3602683611f06565b9150612bbe82612b57565b604082019050919050565b60006020820190508181036000830152612be281612ba6565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612c45603283611f06565b9150612c5082612be9565b604082019050919050565b60006020820190508181036000830152612c7481612c38565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000612cd7602683611f06565b9150612ce282612c7b565b604082019050919050565b60006020820190508181036000830152612d0681612cca565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d69602583611f06565b9150612d7482612d0d565b604082019050919050565b60006020820190508181036000830152612d9881612d5c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000612dfb602a83611f06565b9150612e0682612d9f565b604082019050919050565b60006020820190508181036000830152612e2a81612dee565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000612e8d602f83611f06565b9150612e9882612e31565b604082019050919050565b60006020820190508181036000830152612ebc81612e80565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612eea82612ec3565b612ef48185612ece565b9350612f04818560208601611f17565b612f0d81611f4a565b840191505092915050565b6000608082019050612f2d600083018761204b565b612f3a602083018661204b565b612f4760408301856120e1565b8181036060830152612f598184612edf565b905095945050505050565b600081519050612f7381611e6c565b92915050565b600060208284031215612f8f57612f8e611e36565b5b6000612f9d84828501612f64565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe082611fb6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301357613012612fa6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061305882611fb6565b915061306383611fb6565b9250826130735761307261301e565b5b828204905092915050565b600061308982611fb6565b915061309483611fb6565b9250828210156130a7576130a6612fa6565b5b828203905092915050565b60006130bd82611fb6565b91506130c883611fb6565b9250826130d8576130d761301e565b5b828206905092915050565b60006130ee82611fb6565b91506130f983611fb6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561312e5761312d612fa6565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220544a72aec454fcd360b00a2b20d6802ae9dade1ff1e76dd5a072b38e870687fb64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5159726d7559434e6535784a5365635736766646663973623770446d645a3244416b6648755a4667455a73572f0000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79000000000000000000000000f6e3bd6f2b6cdd4a2db14db0d503c56bc3016f16000000000000000000000000abe184eadf7fa4941203fca78eaace6029899af30000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a0000000000000000000000006f7b3f78a499423d41f56302c6f8d37b97c327e500000000000000000000000086651cdf29b57f78bfea5becc61efe4aaba7f2de000000000000000000000000a2a5e82b3ca814a6bb068388a1980815f9ffe788000000000000000000000000a3ad2be204dea80d63de2595ede363a2f09f1540000000000000000000000000a81f56705b1b44e8f867d56fa990a98c5837a98c0000000000000000000000005166abf48cc420ef5f1615dce15f3b2f434e084b0000000000000000000000007c30c85d47a29b0393ca8e1876a126899ccf8cfb000000000000000000000000c016161e498536c4da5af2e10389b4100195886700000000000000000000000070c420e28b586735576ef4facd703847792e91d400000000000000000000000070c420e28b586735576ef4facd703847792e91d4000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc0000000000000000000000009b16ed9647ff6fd0fd71cf40ad8318f88a275a1d000000000000000000000000b729a7cb5b1b1f2dd77aae72315d55c206fc422c00000000000000000000000066523ba77463f0d5c1524705571ef455b11b3c490000000000000000000000008fd93ae8629c56a622b5d221dbb62bd8e35bccb0000000000000000000000000fa5946896f65bb59f72dc92456f9e57f9e303183000000000000000000000000817fbb55e97dcbad0cdbf21be96e2570aa044a500000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a0000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a00000000000000000000000046d8c3df272d039a2b6100d94d31751d11b111850000000000000000000000000b68c8c78eb42f33c0d908b67dd187132cec2f910000000000000000000000006bcabbd406c9a1103a8c01ac8d411618290637a6000000000000000000000000fa75aa59557d6801964f77739e210776b48ccff100000000000000000000000056f077ea29f9c96a4bc9b88d75f4f388159e294d000000000000000000000000bd05504176449831b6ca3eb79739c14f4a28151900000000000000000000000047081438d7a4e16d72728620dd6803c2898d8cf90000000000000000000000006bcabbd406c9a1103a8c01ac8d411618290637a60000000000000000000000002a2e70f2dd2a9cf65f549f8461e6831b47b1a56b000000000000000000000000b499bbd20c9ee5bfb3a7cdd30c55f8c8bf774e8f000000000000000000000000b94adb0c1a299d6072573760fc5e76b009e27525000000000000000000000000451e29e4958bf698826ad026a6940dd33a21c1f800000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b842700000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b84270000000000000000000000005166abf48cc420ef5f1615dce15f3b2f434e084b000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b0000000000000000000000002f850df1b031a0f74d084dc4e2f728f1b953288a0000000000000000000000006ba424eb2540c80b447abe17927afa143713f8a9000000000000000000000000f6d8359202dfb3056626858f6c5a875c80add3ea000000000000000000000000e6c41f4caab9bf39bc98749f0a224b826251387c000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a71000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a7100000000000000000000000058de73492c70d6945c6538aeed2504c5401cd5cd000000000000000000000000b0e4f753a9ed3705dd1ca8c6bf4a86385efdcd230000000000000000000000004fb8a967dfb036747061c40ef0e7e0cd9e6bbc8600000000000000000000000036897fb97cbfdf3ed948cb3b11baa3817202f80500000000000000000000000036897fb97cbfdf3ed948cb3b11baa3817202f805000000000000000000000000c29bd6d97d58c781db8fa61d304c223fa7a8ced7000000000000000000000000f1eb07609f0965f041a2819d25eda68ad067618f000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a7100000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa3800000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa3800000000000000000000000056f077ea29f9c96a4bc9b88d75f4f388159e294d00000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa3800000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e600000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e600000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e600000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e60000000000000000000000002a2e70f2dd2a9cf65f549f8461e6831b47b1a56b00000000000000000000000095f3f2b132486deb0a08cdca8d6fb29a679a7bc5000000000000000000000000a7d57c663b787329c761ce53af1003f5b080826400000000000000000000000002cd734d5087a2bc9db38d216a495af44d7bd93a00000000000000000000000002cd734d5087a2bc9db38d216a495af44d7bd93a000000000000000000000000e839395440aed62259e9efd07c42a13011dc770f0000000000000000000000002c144044caa6f7c87ef5e982222a90b2339a89f0000000000000000000000000a211ace0966dffab6e0e19b74d3e07f2c9f9d4a8000000000000000000000000a211ace0966dffab6e0e19b74d3e07f2c9f9d4a800000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b842700000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b842700000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b8427
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb46514610343578063b88d4fde1461035f578063c87b56dd1461037b578063e985e9c5146103ab578063f2fde38b146103db5761012c565b80636352211e1461029d57806370a08231146102cd578063715018a6146102fd5780638da5cb5b1461030757806395d89b41146103255761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce71461025157806355f804b3146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611e98565b6103f7565b6040516101589190611ee0565b60405180910390f35b610169610541565b6040516101769190611f94565b60405180910390f35b61019960048036038101906101949190611fec565b6105d3565b6040516101a6919061205a565b60405180910390f35b6101c960048036038101906101c491906120a1565b610658565b005b6101d3610771565b6040516101e091906120f0565b60405180910390f35b61020360048036038101906101fe919061210b565b61077a565b005b61021f600480360381019061021a91906120a1565b61078a565b60405161022c91906120f0565b60405180910390f35b61024f600480360381019061024a919061210b565b61097c565b005b61026b60048036038101906102669190611fec565b61099c565b60405161027891906120f0565b60405180910390f35b61029b600480360381019061029691906121c3565b6109ef565b005b6102b760048036038101906102b29190611fec565b610a81565b6040516102c4919061205a565b60405180910390f35b6102e760048036038101906102e29190612210565b610a97565b6040516102f491906120f0565b60405180910390f35b610305610b80565b005b61030f610c08565b60405161031c919061205a565b60405180910390f35b61032d610c32565b60405161033a9190611f94565b60405180910390f35b61035d60048036038101906103589190612269565b610cc4565b005b610379600480360381019061037491906123d9565b610e45565b005b61039560048036038101906103909190611fec565b610ea1565b6040516103a29190611f94565b60405180910390f35b6103c560048036038101906103c0919061245c565b610f49565b6040516103d29190611ee0565b60405180910390f35b6103f560048036038101906103f09190612210565b610fdd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061052a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061053a5750610539826110e8565b5b9050919050565b606060018054610550906124cb565b80601f016020809104026020016040519081016040528092919081815260200182805461057c906124cb565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b60006105de82611152565b61061d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106149061256f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066382610a81565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb90612601565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106f361115f565b73ffffffffffffffffffffffffffffffffffffffff16148061072257506107218161071c61115f565b610f49565b5b610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890612693565b60405180910390fd5b61076c838383611167565b505050565b60008054905090565b610785838383611219565b505050565b600061079583610a97565b82106107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd90612725565b60405180910390fd5b60006107e0610771565b905060008060005b8381101561093a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146108da57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c5786841415610923578195505050505050610976565b83806001019450505b5080806001019150506107e8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906127b7565b60405180910390fd5b92915050565b61099783838360405180602001604052806000815250610e45565b505050565b60006109a6610771565b82106109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90612849565b60405180910390fd5b819050919050565b6109f761115f565b73ffffffffffffffffffffffffffffffffffffffff16610a15610c08565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a62906128b5565b60405180910390fd5b818160089190610a7c929190611d4f565b505050565b6000610a8c82611759565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612947565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610b8861115f565b73ffffffffffffffffffffffffffffffffffffffff16610ba6610c08565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906128b5565b60405180910390fd5b610c0660006118f3565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610c41906124cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6d906124cb565b8015610cba5780601f10610c8f57610100808354040283529160200191610cba565b820191906000526020600020905b815481529060010190602001808311610c9d57829003601f168201915b5050505050905090565b610ccc61115f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906129b3565b60405180910390fd5b8060066000610d4761115f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610df461115f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e399190611ee0565b60405180910390a35050565b610e50848484611219565b610e5c848484846119b9565b610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612a45565b60405180910390fd5b50505050565b6060610eac82611152565b610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290612ad7565b60405180910390fd5b6000610ef5611b50565b9050600081511415610f165760405180602001604052806000815250610f41565b80610f2084611be2565b604051602001610f31929190612b33565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fe561115f565b73ffffffffffffffffffffffffffffffffffffffff16611003610c08565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906128b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612bc9565b60405180910390fd5b6110d2816118f3565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061122482611759565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661124b61115f565b73ffffffffffffffffffffffffffffffffffffffff1614806112a7575061127061115f565b73ffffffffffffffffffffffffffffffffffffffff1661128f846105d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806112c357506112c282600001516112bd61115f565b610f49565b5b905080611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90612c5b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612ced565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612d7f565b60405180910390fd5b6113f48585856001611d43565b6114046000848460000151611167565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116e95761164881611152565b156116e85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117528585856001611d49565b5050505050565b611761611dd5565b61176a82611152565b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090612e11565b60405180910390fd5b60008290505b600081106118b2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118a35780925050506118ee565b508080600190039150506117af565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590612ea3565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119da8473ffffffffffffffffffffffffffffffffffffffff166110d5565b15611b43578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a0361115f565b8786866040518563ffffffff1660e01b8152600401611a259493929190612f18565b602060405180830381600087803b158015611a3f57600080fd5b505af1925050508015611a7057506040513d601f19601f82011682018060405250810190611a6d9190612f79565b60015b611af3573d8060008114611aa0576040519150601f19603f3d011682016040523d82523d6000602084013e611aa5565b606091505b50600081511415611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290612a45565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b48565b600190505b949350505050565b606060088054611b5f906124cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8b906124cb565b8015611bd85780601f10611bad57610100808354040283529160200191611bd8565b820191906000526020600020905b815481529060010190602001808311611bbb57829003601f168201915b5050505050905090565b60606000821415611c2a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d3e565b600082905060005b60008214611c5c578080611c4590612fd5565b915050600a82611c55919061304d565b9150611c32565b60008167ffffffffffffffff811115611c7857611c776122ae565b5b6040519080825280601f01601f191660200182016040528015611caa5781602001600182028036833780820191505090505b5090505b60008514611d3757600182611cc3919061307e565b9150600a85611cd291906130b2565b6030611cde91906130e3565b60f81b818381518110611cf457611cf3613139565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d30919061304d565b9450611cae565b8093505050505b919050565b50505050565b50505050565b828054611d5b906124cb565b90600052602060002090601f016020900481019282611d7d5760008555611dc4565b82601f10611d9657803560ff1916838001178555611dc4565b82800160010185558215611dc4579182015b82811115611dc3578235825591602001919060010190611da8565b5b509050611dd19190611e0f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115611e28576000816000905550600101611e10565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e7581611e40565b8114611e8057600080fd5b50565b600081359050611e9281611e6c565b92915050565b600060208284031215611eae57611ead611e36565b5b6000611ebc84828501611e83565b91505092915050565b60008115159050919050565b611eda81611ec5565b82525050565b6000602082019050611ef56000830184611ed1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f35578082015181840152602081019050611f1a565b83811115611f44576000848401525b50505050565b6000601f19601f8301169050919050565b6000611f6682611efb565b611f708185611f06565b9350611f80818560208601611f17565b611f8981611f4a565b840191505092915050565b60006020820190508181036000830152611fae8184611f5b565b905092915050565b6000819050919050565b611fc981611fb6565b8114611fd457600080fd5b50565b600081359050611fe681611fc0565b92915050565b60006020828403121561200257612001611e36565b5b600061201084828501611fd7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204482612019565b9050919050565b61205481612039565b82525050565b600060208201905061206f600083018461204b565b92915050565b61207e81612039565b811461208957600080fd5b50565b60008135905061209b81612075565b92915050565b600080604083850312156120b8576120b7611e36565b5b60006120c68582860161208c565b92505060206120d785828601611fd7565b9150509250929050565b6120ea81611fb6565b82525050565b600060208201905061210560008301846120e1565b92915050565b60008060006060848603121561212457612123611e36565b5b60006121328682870161208c565b93505060206121438682870161208c565b925050604061215486828701611fd7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126121835761218261215e565b5b8235905067ffffffffffffffff8111156121a05761219f612163565b5b6020830191508360018202830111156121bc576121bb612168565b5b9250929050565b600080602083850312156121da576121d9611e36565b5b600083013567ffffffffffffffff8111156121f8576121f7611e3b565b5b6122048582860161216d565b92509250509250929050565b60006020828403121561222657612225611e36565b5b60006122348482850161208c565b91505092915050565b61224681611ec5565b811461225157600080fd5b50565b6000813590506122638161223d565b92915050565b600080604083850312156122805761227f611e36565b5b600061228e8582860161208c565b925050602061229f85828601612254565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122e682611f4a565b810181811067ffffffffffffffff82111715612305576123046122ae565b5b80604052505050565b6000612318611e2c565b905061232482826122dd565b919050565b600067ffffffffffffffff821115612344576123436122ae565b5b61234d82611f4a565b9050602081019050919050565b82818337600083830152505050565b600061237c61237784612329565b61230e565b905082815260208101848484011115612398576123976122a9565b5b6123a384828561235a565b509392505050565b600082601f8301126123c0576123bf61215e565b5b81356123d0848260208601612369565b91505092915050565b600080600080608085870312156123f3576123f2611e36565b5b60006124018782880161208c565b94505060206124128782880161208c565b935050604061242387828801611fd7565b925050606085013567ffffffffffffffff81111561244457612443611e3b565b5b612450878288016123ab565b91505092959194509250565b6000806040838503121561247357612472611e36565b5b60006124818582860161208c565b92505060206124928582860161208c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124e357607f821691505b602082108114156124f7576124f661249c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612559602d83611f06565b9150612564826124fd565b604082019050919050565b600060208201905081810360008301526125888161254c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006125eb602283611f06565b91506125f68261258f565b604082019050919050565b6000602082019050818103600083015261261a816125de565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061267d603983611f06565b915061268882612621565b604082019050919050565b600060208201905081810360008301526126ac81612670565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061270f602283611f06565b915061271a826126b3565b604082019050919050565b6000602082019050818103600083015261273e81612702565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006127a1602e83611f06565b91506127ac82612745565b604082019050919050565b600060208201905081810360008301526127d081612794565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000612833602383611f06565b915061283e826127d7565b604082019050919050565b6000602082019050818103600083015261286281612826565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289f602083611f06565b91506128aa82612869565b602082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612931602b83611f06565b915061293c826128d5565b604082019050919050565b6000602082019050818103600083015261296081612924565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061299d601a83611f06565b91506129a882612967565b602082019050919050565b600060208201905081810360008301526129cc81612990565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000612a2f603383611f06565b9150612a3a826129d3565b604082019050919050565b60006020820190508181036000830152612a5e81612a22565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612ac1602f83611f06565b9150612acc82612a65565b604082019050919050565b60006020820190508181036000830152612af081612ab4565b9050919050565b600081905092915050565b6000612b0d82611efb565b612b178185612af7565b9350612b27818560208601611f17565b80840191505092915050565b6000612b3f8285612b02565b9150612b4b8284612b02565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bb3602683611f06565b9150612bbe82612b57565b604082019050919050565b60006020820190508181036000830152612be281612ba6565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612c45603283611f06565b9150612c5082612be9565b604082019050919050565b60006020820190508181036000830152612c7481612c38565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000612cd7602683611f06565b9150612ce282612c7b565b604082019050919050565b60006020820190508181036000830152612d0681612cca565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d69602583611f06565b9150612d7482612d0d565b604082019050919050565b60006020820190508181036000830152612d9881612d5c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000612dfb602a83611f06565b9150612e0682612d9f565b604082019050919050565b60006020820190508181036000830152612e2a81612dee565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000612e8d602f83611f06565b9150612e9882612e31565b604082019050919050565b60006020820190508181036000830152612ebc81612e80565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612eea82612ec3565b612ef48185612ece565b9350612f04818560208601611f17565b612f0d81611f4a565b840191505092915050565b6000608082019050612f2d600083018761204b565b612f3a602083018661204b565b612f4760408301856120e1565b8181036060830152612f598184612edf565b905095945050505050565b600081519050612f7381611e6c565b92915050565b600060208284031215612f8f57612f8e611e36565b5b6000612f9d84828501612f64565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe082611fb6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301357613012612fa6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061305882611fb6565b915061306383611fb6565b9250826130735761307261301e565b5b828204905092915050565b600061308982611fb6565b915061309483611fb6565b9250828210156130a7576130a6612fa6565b5b828203905092915050565b60006130bd82611fb6565b91506130c883611fb6565b9250826130d8576130d761301e565b5b828206905092915050565b60006130ee82611fb6565b91506130f983611fb6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561312e5761312d612fa6565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220544a72aec454fcd360b00a2b20d6802ae9dade1ff1e76dd5a072b38e870687fb64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5159726d7559434e6535784a5365635736766646663973623770446d645a3244416b6648755a4667455a73572f0000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be790000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79000000000000000000000000f6e3bd6f2b6cdd4a2db14db0d503c56bc3016f16000000000000000000000000abe184eadf7fa4941203fca78eaace6029899af30000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a0000000000000000000000006f7b3f78a499423d41f56302c6f8d37b97c327e500000000000000000000000086651cdf29b57f78bfea5becc61efe4aaba7f2de000000000000000000000000a2a5e82b3ca814a6bb068388a1980815f9ffe788000000000000000000000000a3ad2be204dea80d63de2595ede363a2f09f1540000000000000000000000000a81f56705b1b44e8f867d56fa990a98c5837a98c0000000000000000000000005166abf48cc420ef5f1615dce15f3b2f434e084b0000000000000000000000007c30c85d47a29b0393ca8e1876a126899ccf8cfb000000000000000000000000c016161e498536c4da5af2e10389b4100195886700000000000000000000000070c420e28b586735576ef4facd703847792e91d400000000000000000000000070c420e28b586735576ef4facd703847792e91d4000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc0000000000000000000000009b16ed9647ff6fd0fd71cf40ad8318f88a275a1d000000000000000000000000b729a7cb5b1b1f2dd77aae72315d55c206fc422c00000000000000000000000066523ba77463f0d5c1524705571ef455b11b3c490000000000000000000000008fd93ae8629c56a622b5d221dbb62bd8e35bccb0000000000000000000000000fa5946896f65bb59f72dc92456f9e57f9e303183000000000000000000000000817fbb55e97dcbad0cdbf21be96e2570aa044a500000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a0000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a00000000000000000000000046d8c3df272d039a2b6100d94d31751d11b111850000000000000000000000000b68c8c78eb42f33c0d908b67dd187132cec2f910000000000000000000000006bcabbd406c9a1103a8c01ac8d411618290637a6000000000000000000000000fa75aa59557d6801964f77739e210776b48ccff100000000000000000000000056f077ea29f9c96a4bc9b88d75f4f388159e294d000000000000000000000000bd05504176449831b6ca3eb79739c14f4a28151900000000000000000000000047081438d7a4e16d72728620dd6803c2898d8cf90000000000000000000000006bcabbd406c9a1103a8c01ac8d411618290637a60000000000000000000000002a2e70f2dd2a9cf65f549f8461e6831b47b1a56b000000000000000000000000b499bbd20c9ee5bfb3a7cdd30c55f8c8bf774e8f000000000000000000000000b94adb0c1a299d6072573760fc5e76b009e27525000000000000000000000000451e29e4958bf698826ad026a6940dd33a21c1f800000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b842700000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b84270000000000000000000000005166abf48cc420ef5f1615dce15f3b2f434e084b000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b0000000000000000000000002f850df1b031a0f74d084dc4e2f728f1b953288a0000000000000000000000006ba424eb2540c80b447abe17927afa143713f8a9000000000000000000000000f6d8359202dfb3056626858f6c5a875c80add3ea000000000000000000000000e6c41f4caab9bf39bc98749f0a224b826251387c000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a71000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a7100000000000000000000000058de73492c70d6945c6538aeed2504c5401cd5cd000000000000000000000000b0e4f753a9ed3705dd1ca8c6bf4a86385efdcd230000000000000000000000004fb8a967dfb036747061c40ef0e7e0cd9e6bbc8600000000000000000000000036897fb97cbfdf3ed948cb3b11baa3817202f80500000000000000000000000036897fb97cbfdf3ed948cb3b11baa3817202f805000000000000000000000000c29bd6d97d58c781db8fa61d304c223fa7a8ced7000000000000000000000000f1eb07609f0965f041a2819d25eda68ad067618f000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a7100000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa3800000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa3800000000000000000000000056f077ea29f9c96a4bc9b88d75f4f388159e294d00000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa3800000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e600000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e600000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e600000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e60000000000000000000000002a2e70f2dd2a9cf65f549f8461e6831b47b1a56b00000000000000000000000095f3f2b132486deb0a08cdca8d6fb29a679a7bc5000000000000000000000000a7d57c663b787329c761ce53af1003f5b080826400000000000000000000000002cd734d5087a2bc9db38d216a495af44d7bd93a00000000000000000000000002cd734d5087a2bc9db38d216a495af44d7bd93a000000000000000000000000e839395440aed62259e9efd07c42a13011dc770f0000000000000000000000002c144044caa6f7c87ef5e982222a90b2339a89f0000000000000000000000000a211ace0966dffab6e0e19b74d3e07f2c9f9d4a8000000000000000000000000a211ace0966dffab6e0e19b74d3e07f2c9f9d4a800000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b842700000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b842700000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b8427
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmQYrmuYCNe5xJSecW6vfFf9sb7pDmdZ2DAkfHuZFgEZsW/
Arg [1] : to (address[]): 0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0x4a6A3953D487Fae249C5dCe5F3367B1D76A0BE79,0xf6e3BD6F2B6cdD4A2Db14DB0d503c56Bc3016F16,0xABE184EAdf7FA4941203fCA78eAAcE6029899af3,0x9724Fbc9906e1fC4d19658f04F872E06ca33ea1A,0x6f7b3f78A499423d41f56302C6f8D37b97c327E5,0x86651CdF29b57f78BFea5bECC61eFe4aAba7f2de,0xa2a5e82B3cA814A6BB068388A1980815F9fFE788,0xA3aD2be204dEa80D63dE2595EDE363A2F09F1540,0xA81f56705b1B44E8F867d56fa990a98c5837a98c,0x5166Abf48Cc420eF5F1615dce15f3B2F434e084B,0x7c30C85d47A29B0393ca8e1876a126899CCf8CFb,0xc016161e498536C4da5AF2e10389B41001958867,0x70c420E28B586735576Ef4FacD703847792E91d4,0x70c420E28B586735576Ef4FacD703847792E91d4,0xB618AD975e24D2D143C6D54D98882AE1ED111DdC,0xB618AD975e24D2D143C6D54D98882AE1ED111DdC,0xB618AD975e24D2D143C6D54D98882AE1ED111DdC,0x9b16Ed9647Ff6Fd0fd71cf40Ad8318F88A275A1D,0xB729a7CB5b1B1f2dd77aaE72315D55c206FC422C,0x66523ba77463f0D5C1524705571Ef455B11b3c49,0x8Fd93aE8629C56A622b5d221dbB62bD8E35bccB0,0xfA5946896F65bb59f72Dc92456f9e57F9E303183,0x817fbB55E97dcBAD0CDbF21be96e2570aA044a50,0x9724Fbc9906e1fC4d19658f04F872E06ca33ea1A,0x9724Fbc9906e1fC4d19658f04F872E06ca33ea1A,0x46D8c3dF272d039A2B6100d94d31751d11B11185,0x0b68C8C78Eb42F33c0d908B67dd187132CEC2f91,0x6bcAbBd406C9a1103A8C01Ac8d411618290637A6,0xfA75aA59557D6801964f77739e210776b48CCFf1,0x56f077eA29F9c96a4bc9b88D75f4f388159e294d,0xBD05504176449831b6cA3Eb79739c14f4A281519,0x47081438d7A4E16d72728620dD6803c2898D8Cf9,0x6bcAbBd406C9a1103A8C01Ac8d411618290637A6,0x2A2e70f2DD2A9CF65f549f8461e6831b47b1A56b,0xb499bbD20c9EE5bfB3a7cdd30c55f8C8bF774e8f,0xB94aDb0c1A299D6072573760fc5E76B009e27525,0x451E29E4958BF698826aD026A6940Dd33A21c1f8,0x99EdC8a2F7f1D0a900842396F06B0E06902b8427,0x99EdC8a2F7f1D0a900842396F06B0E06902b8427,0x5166Abf48Cc420eF5F1615dce15f3B2F434e084B,0xe32a436Ed1D0C60CEEFBE3fD965ad5627d93C51B,0xe32a436Ed1D0C60CEEFBE3fD965ad5627d93C51B,0xe32a436Ed1D0C60CEEFBE3fD965ad5627d93C51B,0x2F850Df1b031a0f74D084Dc4e2f728f1B953288a,0x6bA424eB2540c80b447ABe17927afa143713F8a9,0xF6D8359202dFb3056626858F6c5a875C80AdD3EA,0xe6c41f4CAAB9BF39bC98749f0A224b826251387c,0xCC27cC121F528C82bB7b7f91F20A78F7a7815a71,0xCC27cC121F528C82bB7b7f91F20A78F7a7815a71,0x58DE73492c70D6945C6538aeEd2504c5401cD5Cd,0xb0E4f753a9Ed3705Dd1CA8c6Bf4A86385EfDcD23,0x4fb8A967Dfb036747061C40eF0e7e0CD9e6BBC86,0x36897fb97cBFDF3ED948Cb3B11baA3817202F805,0x36897fb97cBFDF3ED948Cb3B11baA3817202F805,0xC29Bd6d97D58C781db8Fa61D304C223fA7A8ceD7,0xF1eB07609f0965f041a2819D25Eda68Ad067618f,0xCC27cC121F528C82bB7b7f91F20A78F7a7815a71,0x12883D6DF867AdfFf5DD9f50BEbD5106BdABfA38,0x12883D6DF867AdfFf5DD9f50BEbD5106BdABfA38,0x56f077eA29F9c96a4bc9b88D75f4f388159e294d,0x12883D6DF867AdfFf5DD9f50BEbD5106BdABfA38,0x11E53C5c10a683e6CFa389fD1B00654cF289D7E6,0x11E53C5c10a683e6CFa389fD1B00654cF289D7E6,0x11E53C5c10a683e6CFa389fD1B00654cF289D7E6,0x11E53C5c10a683e6CFa389fD1B00654cF289D7E6,0x2A2e70f2DD2A9CF65f549f8461e6831b47b1A56b,0x95f3F2b132486deb0a08cDCA8d6Fb29A679A7bc5,0xa7D57C663b787329C761ce53AF1003f5B0808264,0x02CD734D5087a2BC9DB38D216a495aF44d7bD93a,0x02CD734D5087a2BC9DB38D216a495aF44d7bD93a,0xE839395440aEd62259e9Efd07C42a13011dC770F,0x2c144044cAa6f7C87eF5e982222a90B2339a89F0,0xa211ACE0966dFFab6E0E19b74D3E07f2C9F9d4a8,0xa211ACE0966dFFab6E0E19b74D3E07f2C9F9d4a8,0x99EdC8a2F7f1D0a900842396F06B0E06902b8427,0x99EdC8a2F7f1D0a900842396F06B0E06902b8427,0x99EdC8a2F7f1D0a900842396F06B0E06902b8427
-----Encoded View---------------
106 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5159726d7559434e6535784a5365635736766646663973
Arg [4] : 623770446d645a3244416b6648755a4667455a73572f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [7] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [8] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [9] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [10] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [11] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [12] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [13] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [14] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [15] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [16] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [17] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [18] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [19] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [20] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [21] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [22] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [23] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [24] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [25] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [26] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [27] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [28] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [29] : 0000000000000000000000004a6a3953d487fae249c5dce5f3367b1d76a0be79
Arg [30] : 000000000000000000000000f6e3bd6f2b6cdd4a2db14db0d503c56bc3016f16
Arg [31] : 000000000000000000000000abe184eadf7fa4941203fca78eaace6029899af3
Arg [32] : 0000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a
Arg [33] : 0000000000000000000000006f7b3f78a499423d41f56302c6f8d37b97c327e5
Arg [34] : 00000000000000000000000086651cdf29b57f78bfea5becc61efe4aaba7f2de
Arg [35] : 000000000000000000000000a2a5e82b3ca814a6bb068388a1980815f9ffe788
Arg [36] : 000000000000000000000000a3ad2be204dea80d63de2595ede363a2f09f1540
Arg [37] : 000000000000000000000000a81f56705b1b44e8f867d56fa990a98c5837a98c
Arg [38] : 0000000000000000000000005166abf48cc420ef5f1615dce15f3b2f434e084b
Arg [39] : 0000000000000000000000007c30c85d47a29b0393ca8e1876a126899ccf8cfb
Arg [40] : 000000000000000000000000c016161e498536c4da5af2e10389b41001958867
Arg [41] : 00000000000000000000000070c420e28b586735576ef4facd703847792e91d4
Arg [42] : 00000000000000000000000070c420e28b586735576ef4facd703847792e91d4
Arg [43] : 000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc
Arg [44] : 000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc
Arg [45] : 000000000000000000000000b618ad975e24d2d143c6d54d98882ae1ed111ddc
Arg [46] : 0000000000000000000000009b16ed9647ff6fd0fd71cf40ad8318f88a275a1d
Arg [47] : 000000000000000000000000b729a7cb5b1b1f2dd77aae72315d55c206fc422c
Arg [48] : 00000000000000000000000066523ba77463f0d5c1524705571ef455b11b3c49
Arg [49] : 0000000000000000000000008fd93ae8629c56a622b5d221dbb62bd8e35bccb0
Arg [50] : 000000000000000000000000fa5946896f65bb59f72dc92456f9e57f9e303183
Arg [51] : 000000000000000000000000817fbb55e97dcbad0cdbf21be96e2570aa044a50
Arg [52] : 0000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a
Arg [53] : 0000000000000000000000009724fbc9906e1fc4d19658f04f872e06ca33ea1a
Arg [54] : 00000000000000000000000046d8c3df272d039a2b6100d94d31751d11b11185
Arg [55] : 0000000000000000000000000b68c8c78eb42f33c0d908b67dd187132cec2f91
Arg [56] : 0000000000000000000000006bcabbd406c9a1103a8c01ac8d411618290637a6
Arg [57] : 000000000000000000000000fa75aa59557d6801964f77739e210776b48ccff1
Arg [58] : 00000000000000000000000056f077ea29f9c96a4bc9b88d75f4f388159e294d
Arg [59] : 000000000000000000000000bd05504176449831b6ca3eb79739c14f4a281519
Arg [60] : 00000000000000000000000047081438d7a4e16d72728620dd6803c2898d8cf9
Arg [61] : 0000000000000000000000006bcabbd406c9a1103a8c01ac8d411618290637a6
Arg [62] : 0000000000000000000000002a2e70f2dd2a9cf65f549f8461e6831b47b1a56b
Arg [63] : 000000000000000000000000b499bbd20c9ee5bfb3a7cdd30c55f8c8bf774e8f
Arg [64] : 000000000000000000000000b94adb0c1a299d6072573760fc5e76b009e27525
Arg [65] : 000000000000000000000000451e29e4958bf698826ad026a6940dd33a21c1f8
Arg [66] : 00000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b8427
Arg [67] : 00000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b8427
Arg [68] : 0000000000000000000000005166abf48cc420ef5f1615dce15f3b2f434e084b
Arg [69] : 000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b
Arg [70] : 000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b
Arg [71] : 000000000000000000000000e32a436ed1d0c60ceefbe3fd965ad5627d93c51b
Arg [72] : 0000000000000000000000002f850df1b031a0f74d084dc4e2f728f1b953288a
Arg [73] : 0000000000000000000000006ba424eb2540c80b447abe17927afa143713f8a9
Arg [74] : 000000000000000000000000f6d8359202dfb3056626858f6c5a875c80add3ea
Arg [75] : 000000000000000000000000e6c41f4caab9bf39bc98749f0a224b826251387c
Arg [76] : 000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a71
Arg [77] : 000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a71
Arg [78] : 00000000000000000000000058de73492c70d6945c6538aeed2504c5401cd5cd
Arg [79] : 000000000000000000000000b0e4f753a9ed3705dd1ca8c6bf4a86385efdcd23
Arg [80] : 0000000000000000000000004fb8a967dfb036747061c40ef0e7e0cd9e6bbc86
Arg [81] : 00000000000000000000000036897fb97cbfdf3ed948cb3b11baa3817202f805
Arg [82] : 00000000000000000000000036897fb97cbfdf3ed948cb3b11baa3817202f805
Arg [83] : 000000000000000000000000c29bd6d97d58c781db8fa61d304c223fa7a8ced7
Arg [84] : 000000000000000000000000f1eb07609f0965f041a2819d25eda68ad067618f
Arg [85] : 000000000000000000000000cc27cc121f528c82bb7b7f91f20a78f7a7815a71
Arg [86] : 00000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa38
Arg [87] : 00000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa38
Arg [88] : 00000000000000000000000056f077ea29f9c96a4bc9b88d75f4f388159e294d
Arg [89] : 00000000000000000000000012883d6df867adfff5dd9f50bebd5106bdabfa38
Arg [90] : 00000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e6
Arg [91] : 00000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e6
Arg [92] : 00000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e6
Arg [93] : 00000000000000000000000011e53c5c10a683e6cfa389fd1b00654cf289d7e6
Arg [94] : 0000000000000000000000002a2e70f2dd2a9cf65f549f8461e6831b47b1a56b
Arg [95] : 00000000000000000000000095f3f2b132486deb0a08cdca8d6fb29a679a7bc5
Arg [96] : 000000000000000000000000a7d57c663b787329c761ce53af1003f5b0808264
Arg [97] : 00000000000000000000000002cd734d5087a2bc9db38d216a495af44d7bd93a
Arg [98] : 00000000000000000000000002cd734d5087a2bc9db38d216a495af44d7bd93a
Arg [99] : 000000000000000000000000e839395440aed62259e9efd07c42a13011dc770f
Arg [100] : 0000000000000000000000002c144044caa6f7c87ef5e982222a90b2339a89f0
Arg [101] : 000000000000000000000000a211ace0966dffab6e0e19b74d3e07f2c9f9d4a8
Arg [102] : 000000000000000000000000a211ace0966dffab6e0e19b74d3e07f2c9f9d4a8
Arg [103] : 00000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b8427
Arg [104] : 00000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b8427
Arg [105] : 00000000000000000000000099edc8a2f7f1d0a900842396f06b0e06902b8427
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.