ERC-721
Overview
Max Total Supply
475 Explo
Holders
129
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 ExploLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Explosion
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-06 */ // SPDX-License-Identifier: MIT // File: @openzeppelin\contracts\utils\Context.sol // 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; } } // File: @openzeppelin\contracts\access\Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin\contracts\security\ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin\contracts\utils\Strings.sol // 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); } } // File: @openzeppelin\contracts\utils\introspection\IERC165.sol // 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); } // File: @openzeppelin\contracts\token\ERC721\IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin\contracts\token\ERC721\IERC721Receiver.sol // 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); } // File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); /** * @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); } // File: @openzeppelin\contracts\utils\Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin\contracts\utils\introspection\ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: contracts\ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _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 || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts\Explosion.sol pragma solidity ^0.8.4; contract Explosion is Ownable, ERC721A, ReentrancyGuard { struct ExplosionConfig { bool isSale; uint256 maxMint; uint256 salePrice; uint256 maxSupply; } ExplosionConfig public explosionConfig; constructor() ERC721A("Explosion", "Explo") { } function initConfig( bool isSale, uint256 maxMint, uint256 salePrice, uint256 maxSupply ) public onlyOwner { explosionConfig.isSale = isSale; explosionConfig.maxMint = maxMint; explosionConfig.salePrice = salePrice; explosionConfig.maxSupply = maxSupply; } function mint(uint256 quantity) external payable { ExplosionConfig memory config = explosionConfig; bool isSale = bool(config.isSale); uint256 salePrice = uint256(config.salePrice); uint256 maxMint = uint256(config.maxMint); uint256 maxSupply = uint256(config.maxSupply); require(isSale, "sale not yet started."); require(quantity <= maxMint, "Exceeds the maximum mint amount."); require( addressMinted(msg.sender) + quantity <= maxMint, "Exceeds the maximum number per wallet." ); if (totalSupply() < 300) { _safeMint(msg.sender, quantity); } else { require( quantity * salePrice <= msg.value, "Insufficient balance." ); require( totalSupply() + quantity <= maxSupply, "Insufficient quantity left." ); _safeMint(msg.sender, quantity); } } function flipSaleStatus() public onlyOwner { explosionConfig.isSale = !explosionConfig.isSale; } function addressMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"owner","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"explosionConfig","outputs":[{"internalType":"bool","name":"isSale","type":"bool"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isSale","type":"bool"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"initConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020016822bc383637b9b4b7b760b91b815250604051806040016040528060058152602001644578706c6f60d81b8152506200006c62000066620000a860201b60201c565b620000ac565b815162000081906003906020850190620000fc565b50805162000097906004906020840190620000fc565b5050600180805560095550620001df565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200010a90620001a2565b90600052602060002090601f0160209004810192826200012e576000855562000179565b82601f106200014957805160ff191683800117855562000179565b8280016001018555821562000179579182015b82811115620001795782518255916020019190600101906200015c565b50620001879291506200018b565b5090565b5b808211156200018757600081556001016200018c565b600181811c90821680620001b757607f821691505b60208210811415620001d957634e487b7160e01b600052602260045260246000fd5b50919050565b611ba380620001ef6000396000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde146103c0578063c87b56dd146103e0578063ce03ec9314610400578063e985e9c514610415578063f2fde38b1461045e578063fa30297e1461047e57600080fd5b8063715018a61461032557806377f317d61461033a5780638da5cb5b1461035a57806395d89b4114610378578063a0712d681461038d578063a22cb465146103a057600080fd5b80633ccfd60b116101085780633ccfd60b1461024857806342842e0e1461025d57806355f804b31461027d57806355fa3e981461029d5780636352211e146102e557806370a082311461030557600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610228575b600080fd5b34801561015c57600080fd5b5061017061016b366004611862565b61049e565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104f0565b60405161017c91906119bf565b3480156101b357600080fd5b506101c76101c236600461190e565b610582565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046117ff565b6105c6565b005b34801561020d57600080fd5b5060025460015403600019015b60405190815260200161017c565b34801561023457600080fd5b506101ff6102433660046116bd565b610654565b34801561025457600080fd5b506101ff61065f565b34801561026957600080fd5b506101ff6102783660046116bd565b61077d565b34801561028957600080fd5b506101ff61029836600461189c565b610798565b3480156102a957600080fd5b50600a54600b54600c54600d546102c39360ff1692919084565b604080519415158552602085019390935291830152606082015260800161017c565b3480156102f157600080fd5b506101c761030036600461190e565b6107ce565b34801561031157600080fd5b5061021a61032036600461166f565b6107e0565b34801561033157600080fd5b506101ff61082f565b34801561034657600080fd5b506101ff610355366004611829565b610865565b34801561036657600080fd5b506000546001600160a01b03166101c7565b34801561038457600080fd5b5061019a6108af565b6101ff61039b36600461190e565b6108be565b3480156103ac57600080fd5b506101ff6103bb3660046117d5565b610aea565b3480156103cc57600080fd5b506101ff6103db3660046116f9565b610b80565b3480156103ec57600080fd5b5061019a6103fb36600461190e565b610bd1565b34801561040c57600080fd5b506101ff610c56565b34801561042157600080fd5b5061017061043036600461168a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561046a57600080fd5b506101ff61047936600461166f565b610c94565b34801561048a57600080fd5b5061021a61049936600461166f565b610d2f565b60006001600160e01b031982166380ac58cd60e01b14806104cf57506001600160e01b03198216635b5e139f60e01b145b806104ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104ff90611a95565b80601f016020809104026020016040519081016040528092919081815260200182805461052b90611a95565b80156105785780601f1061054d57610100808354040283529160200191610578565b820191906000526020600020905b81548152906001019060200180831161055b57829003601f168201915b5050505050905090565b600061058d82610d3a565b6105aa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105d1826107ce565b9050806001600160a01b0316836001600160a01b031614156106065760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061062657506106248133610430565b155b15610644576040516367d9dca160e11b815260040160405180910390fd5b61064f838383610d73565b505050565b61064f838383610dcf565b6000546001600160a01b031633146106925760405162461bcd60e51b8152600401610689906119d2565b60405180910390fd5b600260095414156106e55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610689565b6002600955604051600090339047908381818185875af1925050503d806000811461072c576040519150601f19603f3d011682016040523d82523d6000602084013e610731565b606091505b50509050806107755760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610689565b506001600955565b61064f83838360405180602001604052806000815250610b80565b6000546001600160a01b031633146107c25760405162461bcd60e51b8152600401610689906119d2565b61064f600e83836115aa565b60006107d982610fe5565b5192915050565b60006001600160a01b038216610809576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108595760405162461bcd60e51b8152600401610689906119d2565b610863600061110e565b565b6000546001600160a01b0316331461088f5760405162461bcd60e51b8152600401610689906119d2565b600a805460ff191694151594909417909355600b91909155600c55600d55565b6060600480546104ff90611a95565b60408051608081018252600a5460ff161515808252600b5460208301819052600c54938301849052600d546060840181905292939192836109395760405162461bcd60e51b815260206004820152601560248201527439b0b632903737ba103cb2ba1039ba30b93a32b21760591b6044820152606401610689565b818611156109895760405162461bcd60e51b815260206004820181905260248201527f4578636565647320746865206d6178696d756d206d696e7420616d6f756e742e6044820152606401610689565b818661099433610d2f565b61099e9190611a07565b11156109fb5760405162461bcd60e51b815260206004820152602660248201527f4578636565647320746865206d6178696d756d206e756d62657220706572207760448201526530b63632ba1760d11b6064820152608401610689565b60025460015461012c919003600019011015610a2057610a1b338761115e565b610ae2565b34610a2b8488611a33565b1115610a715760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610689565b600254600154829188910360001901610a8a9190611a07565b1115610ad85760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e00000000006044820152606401610689565b610ae2338761115e565b505050505050565b6001600160a01b038216331415610b145760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b8b848484610dcf565b6001600160a01b0383163b15158015610bad5750610bab8484848461117c565b155b15610bcb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610bdc82610d3a565b610bf957604051630a14c4b560e41b815260040160405180910390fd5b6000610c03611274565b9050805160001415610c245760405180602001604052806000815250610c4f565b80610c2e84611283565b604051602001610c3f929190611953565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610c805760405162461bcd60e51b8152600401610689906119d2565b600a805460ff19811660ff90911615179055565b6000546001600160a01b03163314610cbe5760405162461bcd60e51b8152600401610689906119d2565b6001600160a01b038116610d235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610689565b610d2c8161110e565b50565b60006104ea82611381565b600081600111158015610d4e575060015482105b80156104ea575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610dda82610fe5565b80519091506000906001600160a01b0316336001600160a01b03161480610e0857508151610e089033610430565b80610e23575033610e1884610582565b6001600160a01b0316145b905080610e4357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e785760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e9f57604051633a954ecd60e21b815260040160405180910390fd5b610eaf6000848460000151610d73565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f9b57600154811015610f9b578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611015575060015481105b156110f557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110f35780516001600160a01b031615611089579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110ee579392505050565b611089565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6111788282604051806020016040528060008152506113d7565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b1903390899088908890600401611982565b602060405180830381600087803b1580156111cb57600080fd5b505af19250505080156111fb575060408051601f3d908101601f191682019092526111f89181019061187f565b60015b611256573d808015611229576040519150601f19603f3d011682016040523d82523d6000602084013e61122e565b606091505b50805161124e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546104ff90611a95565b6060816112a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d157806112bb81611ad0565b91506112ca9050600a83611a1f565b91506112ab565b60008167ffffffffffffffff8111156112ec576112ec611b41565b6040519080825280601f01601f191660200182016040528015611316576020820181803683370190505b5090505b841561126c5761132b600183611a52565b9150611338600a86611aeb565b611343906030611a07565b60f81b81838151811061135857611358611b2b565b60200101906001600160f81b031916908160001a90535061137a600a86611a1f565b945061131a565b60006001600160a01b0382166113aa576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b900467ffffffffffffffff1690565b61064f838383600180546001600160a01b03851661140757604051622e076360e81b815260040160405180910390fd5b836114255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156114d257506001600160a01b0387163b15155b1561155b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611523600088848060010195508861117c565b611540576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114d857826001541461155657600080fd5b6115a1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561155c575b50600155610fde565b8280546115b690611a95565b90600052602060002090601f0160209004810192826115d8576000855561161e565b82601f106115f15782800160ff1982351617855561161e565b8280016001018555821561161e579182015b8281111561161e578235825591602001919060010190611603565b5061162a92915061162e565b5090565b5b8082111561162a576000815560010161162f565b80356001600160a01b038116811461165a57600080fd5b919050565b8035801515811461165a57600080fd5b60006020828403121561168157600080fd5b610c4f82611643565b6000806040838503121561169d57600080fd5b6116a683611643565b91506116b460208401611643565b90509250929050565b6000806000606084860312156116d257600080fd5b6116db84611643565b92506116e960208501611643565b9150604084013590509250925092565b6000806000806080858703121561170f57600080fd5b61171885611643565b935061172660208601611643565b925060408501359150606085013567ffffffffffffffff8082111561174a57600080fd5b818701915087601f83011261175e57600080fd5b81358181111561177057611770611b41565b604051601f8201601f19908116603f0116810190838211818310171561179857611798611b41565b816040528281528a60208487010111156117b157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117e857600080fd5b6117f183611643565b91506116b46020840161165f565b6000806040838503121561181257600080fd5b61181b83611643565b946020939093013593505050565b6000806000806080858703121561183f57600080fd5b6118488561165f565b966020860135965060408601359560600135945092505050565b60006020828403121561187457600080fd5b8135610c4f81611b57565b60006020828403121561189157600080fd5b8151610c4f81611b57565b600080602083850312156118af57600080fd5b823567ffffffffffffffff808211156118c757600080fd5b818501915085601f8301126118db57600080fd5b8135818111156118ea57600080fd5b8660208285010111156118fc57600080fd5b60209290920196919550909350505050565b60006020828403121561192057600080fd5b5035919050565b6000815180845261193f816020860160208601611a69565b601f01601f19169290920160200192915050565b60008351611965818460208801611a69565b835190830190611979818360208801611a69565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119b590830184611927565b9695505050505050565b602081526000610c4f6020830184611927565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a1a57611a1a611aff565b500190565b600082611a2e57611a2e611b15565b500490565b6000816000190483118215151615611a4d57611a4d611aff565b500290565b600082821015611a6457611a64611aff565b500390565b60005b83811015611a84578181015183820152602001611a6c565b83811115610bcb5750506000910152565b600181811c90821680611aa957607f821691505b60208210811415611aca57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae457611ae4611aff565b5060010190565b600082611afa57611afa611b15565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2c57600080fdfea26469706673582212208e8559d732a2c5010df387364e7e273001664aa6ce8171f4b75e188b7ae5c59164736f6c63430008070033
Deployed Bytecode
0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde146103c0578063c87b56dd146103e0578063ce03ec9314610400578063e985e9c514610415578063f2fde38b1461045e578063fa30297e1461047e57600080fd5b8063715018a61461032557806377f317d61461033a5780638da5cb5b1461035a57806395d89b4114610378578063a0712d681461038d578063a22cb465146103a057600080fd5b80633ccfd60b116101085780633ccfd60b1461024857806342842e0e1461025d57806355f804b31461027d57806355fa3e981461029d5780636352211e146102e557806370a082311461030557600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610228575b600080fd5b34801561015c57600080fd5b5061017061016b366004611862565b61049e565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104f0565b60405161017c91906119bf565b3480156101b357600080fd5b506101c76101c236600461190e565b610582565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046117ff565b6105c6565b005b34801561020d57600080fd5b5060025460015403600019015b60405190815260200161017c565b34801561023457600080fd5b506101ff6102433660046116bd565b610654565b34801561025457600080fd5b506101ff61065f565b34801561026957600080fd5b506101ff6102783660046116bd565b61077d565b34801561028957600080fd5b506101ff61029836600461189c565b610798565b3480156102a957600080fd5b50600a54600b54600c54600d546102c39360ff1692919084565b604080519415158552602085019390935291830152606082015260800161017c565b3480156102f157600080fd5b506101c761030036600461190e565b6107ce565b34801561031157600080fd5b5061021a61032036600461166f565b6107e0565b34801561033157600080fd5b506101ff61082f565b34801561034657600080fd5b506101ff610355366004611829565b610865565b34801561036657600080fd5b506000546001600160a01b03166101c7565b34801561038457600080fd5b5061019a6108af565b6101ff61039b36600461190e565b6108be565b3480156103ac57600080fd5b506101ff6103bb3660046117d5565b610aea565b3480156103cc57600080fd5b506101ff6103db3660046116f9565b610b80565b3480156103ec57600080fd5b5061019a6103fb36600461190e565b610bd1565b34801561040c57600080fd5b506101ff610c56565b34801561042157600080fd5b5061017061043036600461168a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561046a57600080fd5b506101ff61047936600461166f565b610c94565b34801561048a57600080fd5b5061021a61049936600461166f565b610d2f565b60006001600160e01b031982166380ac58cd60e01b14806104cf57506001600160e01b03198216635b5e139f60e01b145b806104ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104ff90611a95565b80601f016020809104026020016040519081016040528092919081815260200182805461052b90611a95565b80156105785780601f1061054d57610100808354040283529160200191610578565b820191906000526020600020905b81548152906001019060200180831161055b57829003601f168201915b5050505050905090565b600061058d82610d3a565b6105aa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105d1826107ce565b9050806001600160a01b0316836001600160a01b031614156106065760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061062657506106248133610430565b155b15610644576040516367d9dca160e11b815260040160405180910390fd5b61064f838383610d73565b505050565b61064f838383610dcf565b6000546001600160a01b031633146106925760405162461bcd60e51b8152600401610689906119d2565b60405180910390fd5b600260095414156106e55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610689565b6002600955604051600090339047908381818185875af1925050503d806000811461072c576040519150601f19603f3d011682016040523d82523d6000602084013e610731565b606091505b50509050806107755760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610689565b506001600955565b61064f83838360405180602001604052806000815250610b80565b6000546001600160a01b031633146107c25760405162461bcd60e51b8152600401610689906119d2565b61064f600e83836115aa565b60006107d982610fe5565b5192915050565b60006001600160a01b038216610809576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108595760405162461bcd60e51b8152600401610689906119d2565b610863600061110e565b565b6000546001600160a01b0316331461088f5760405162461bcd60e51b8152600401610689906119d2565b600a805460ff191694151594909417909355600b91909155600c55600d55565b6060600480546104ff90611a95565b60408051608081018252600a5460ff161515808252600b5460208301819052600c54938301849052600d546060840181905292939192836109395760405162461bcd60e51b815260206004820152601560248201527439b0b632903737ba103cb2ba1039ba30b93a32b21760591b6044820152606401610689565b818611156109895760405162461bcd60e51b815260206004820181905260248201527f4578636565647320746865206d6178696d756d206d696e7420616d6f756e742e6044820152606401610689565b818661099433610d2f565b61099e9190611a07565b11156109fb5760405162461bcd60e51b815260206004820152602660248201527f4578636565647320746865206d6178696d756d206e756d62657220706572207760448201526530b63632ba1760d11b6064820152608401610689565b60025460015461012c919003600019011015610a2057610a1b338761115e565b610ae2565b34610a2b8488611a33565b1115610a715760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610689565b600254600154829188910360001901610a8a9190611a07565b1115610ad85760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e00000000006044820152606401610689565b610ae2338761115e565b505050505050565b6001600160a01b038216331415610b145760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b8b848484610dcf565b6001600160a01b0383163b15158015610bad5750610bab8484848461117c565b155b15610bcb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610bdc82610d3a565b610bf957604051630a14c4b560e41b815260040160405180910390fd5b6000610c03611274565b9050805160001415610c245760405180602001604052806000815250610c4f565b80610c2e84611283565b604051602001610c3f929190611953565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610c805760405162461bcd60e51b8152600401610689906119d2565b600a805460ff19811660ff90911615179055565b6000546001600160a01b03163314610cbe5760405162461bcd60e51b8152600401610689906119d2565b6001600160a01b038116610d235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610689565b610d2c8161110e565b50565b60006104ea82611381565b600081600111158015610d4e575060015482105b80156104ea575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610dda82610fe5565b80519091506000906001600160a01b0316336001600160a01b03161480610e0857508151610e089033610430565b80610e23575033610e1884610582565b6001600160a01b0316145b905080610e4357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e785760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e9f57604051633a954ecd60e21b815260040160405180910390fd5b610eaf6000848460000151610d73565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f9b57600154811015610f9b578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611015575060015481105b156110f557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110f35780516001600160a01b031615611089579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110ee579392505050565b611089565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6111788282604051806020016040528060008152506113d7565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b1903390899088908890600401611982565b602060405180830381600087803b1580156111cb57600080fd5b505af19250505080156111fb575060408051601f3d908101601f191682019092526111f89181019061187f565b60015b611256573d808015611229576040519150601f19603f3d011682016040523d82523d6000602084013e61122e565b606091505b50805161124e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546104ff90611a95565b6060816112a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d157806112bb81611ad0565b91506112ca9050600a83611a1f565b91506112ab565b60008167ffffffffffffffff8111156112ec576112ec611b41565b6040519080825280601f01601f191660200182016040528015611316576020820181803683370190505b5090505b841561126c5761132b600183611a52565b9150611338600a86611aeb565b611343906030611a07565b60f81b81838151811061135857611358611b2b565b60200101906001600160f81b031916908160001a90535061137a600a86611a1f565b945061131a565b60006001600160a01b0382166113aa576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b900467ffffffffffffffff1690565b61064f838383600180546001600160a01b03851661140757604051622e076360e81b815260040160405180910390fd5b836114255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156114d257506001600160a01b0387163b15155b1561155b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611523600088848060010195508861117c565b611540576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114d857826001541461155657600080fd5b6115a1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561155c575b50600155610fde565b8280546115b690611a95565b90600052602060002090601f0160209004810192826115d8576000855561161e565b82601f106115f15782800160ff1982351617855561161e565b8280016001018555821561161e579182015b8281111561161e578235825591602001919060010190611603565b5061162a92915061162e565b5090565b5b8082111561162a576000815560010161162f565b80356001600160a01b038116811461165a57600080fd5b919050565b8035801515811461165a57600080fd5b60006020828403121561168157600080fd5b610c4f82611643565b6000806040838503121561169d57600080fd5b6116a683611643565b91506116b460208401611643565b90509250929050565b6000806000606084860312156116d257600080fd5b6116db84611643565b92506116e960208501611643565b9150604084013590509250925092565b6000806000806080858703121561170f57600080fd5b61171885611643565b935061172660208601611643565b925060408501359150606085013567ffffffffffffffff8082111561174a57600080fd5b818701915087601f83011261175e57600080fd5b81358181111561177057611770611b41565b604051601f8201601f19908116603f0116810190838211818310171561179857611798611b41565b816040528281528a60208487010111156117b157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117e857600080fd5b6117f183611643565b91506116b46020840161165f565b6000806040838503121561181257600080fd5b61181b83611643565b946020939093013593505050565b6000806000806080858703121561183f57600080fd5b6118488561165f565b966020860135965060408601359560600135945092505050565b60006020828403121561187457600080fd5b8135610c4f81611b57565b60006020828403121561189157600080fd5b8151610c4f81611b57565b600080602083850312156118af57600080fd5b823567ffffffffffffffff808211156118c757600080fd5b818501915085601f8301126118db57600080fd5b8135818111156118ea57600080fd5b8660208285010111156118fc57600080fd5b60209290920196919550909350505050565b60006020828403121561192057600080fd5b5035919050565b6000815180845261193f816020860160208601611a69565b601f01601f19169290920160200192915050565b60008351611965818460208801611a69565b835190830190611979818360208801611a69565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119b590830184611927565b9695505050505050565b602081526000610c4f6020830184611927565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a1a57611a1a611aff565b500190565b600082611a2e57611a2e611b15565b500490565b6000816000190483118215151615611a4d57611a4d611aff565b500290565b600082821015611a6457611a64611aff565b500390565b60005b83811015611a84578181015183820152602001611a6c565b83811115610bcb5750506000910152565b600181811c90821680611aa957607f821691505b60208210811415611aca57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae457611ae4611aff565b5060010190565b600082611afa57611afa611b15565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2c57600080fdfea26469706673582212208e8559d732a2c5010df387364e7e273001664aa6ce8171f4b75e188b7ae5c59164736f6c63430008070033
Deployed Bytecode Sourcemap
48554:2399:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31028:305;;;;;;;;;;-1:-1:-1;31028:305:0;;;;;:::i;:::-;;:::i;:::-;;;6296:14:1;;6289:22;6271:41;;6259:2;6244:18;31028:305:0;;;;;;;;34413:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35916:204::-;;;;;;;;;;-1:-1:-1;35916:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5594:32:1;;;5576:51;;5564:2;5549:18;35916:204:0;5430:203:1;35479:371:0;;;;;;;;;;-1:-1:-1;35479:371:0;;;;;:::i;:::-;;:::i;:::-;;30277:303;;;;;;;;;;-1:-1:-1;30531:12:0;;30084:1;30515:13;:28;-1:-1:-1;;30515:46:0;30277:303;;;10396:25:1;;;10384:2;10369:18;30277:303:0;10250:177:1;36773:170:0;;;;;;;;;;-1:-1:-1;36773:170:0;;;;;:::i;:::-;;:::i;50764:186::-;;;;;;;;;;;;;:::i;37014:185::-;;;;;;;;;;-1:-1:-1;37014:185:0;;;;;:::i;:::-;;:::i;50650:106::-;;;;;;;;;;-1:-1:-1;50650:106:0;;;;;:::i;:::-;;:::i;48760:38::-;;;;;;;;;;-1:-1:-1;48760:38:0;;;;;;;;;;;;;;;;;;;;;6573:14:1;;6566:22;6548:41;;6620:2;6605:18;;6598:34;;;;6648:18;;;6641:34;6706:2;6691:18;;6684:34;6535:3;6520:19;48760:38:0;6323:401:1;34222:124:0;;;;;;;;;;-1:-1:-1;34222:124:0;;;;;:::i;:::-;;:::i;31397:206::-;;;;;;;;;;-1:-1:-1;31397:206:0;;;;;:::i;:::-;;:::i;2637:103::-;;;;;;;;;;;;;:::i;48867:338::-;;;;;;;;;;-1:-1:-1;48867:338:0;;;;;:::i;:::-;;:::i;1986:87::-;;;;;;;;;;-1:-1:-1;2032:7:0;2059:6;-1:-1:-1;;;;;2059:6:0;1986:87;;34582:104;;;;;;;;;;;;;:::i;49213:1030::-;;;;;;:::i;:::-;;:::i;36192:279::-;;;;;;;;;;-1:-1:-1;36192:279:0;;;;;:::i;:::-;;:::i;37270:369::-;;;;;;;;;;-1:-1:-1;37270:369:0;;;;;:::i;:::-;;:::i;34757:318::-;;;;;;;;;;-1:-1:-1;34757:318:0;;;;;:::i;:::-;;:::i;50251:110::-;;;;;;;;;;;;;:::i;36542:164::-;;;;;;;;;;-1:-1:-1;36542:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36663:25:0;;;36639:4;36663:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36542:164;2895:201;;;;;;;;;;-1:-1:-1;2895:201:0;;;;;:::i;:::-;;:::i;50369:114::-;;;;;;;;;;-1:-1:-1;50369:114:0;;;;;:::i;:::-;;:::i;31028:305::-;31130:4;-1:-1:-1;;;;;;31167:40:0;;-1:-1:-1;;;31167:40:0;;:105;;-1:-1:-1;;;;;;;31224:48:0;;-1:-1:-1;;;31224:48:0;31167:105;:158;;;-1:-1:-1;;;;;;;;;;26509:40:0;;;31289:36;31147:178;31028:305;-1:-1:-1;;31028:305:0:o;34413:100::-;34467:13;34500:5;34493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34413:100;:::o;35916:204::-;35984:7;36009:16;36017:7;36009;:16::i;:::-;36004:64;;36034:34;;-1:-1:-1;;;36034:34:0;;;;;;;;;;;36004:64;-1:-1:-1;36088:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36088:24:0;;35916:204::o;35479:371::-;35552:13;35568:24;35584:7;35568:15;:24::i;:::-;35552:40;;35613:5;-1:-1:-1;;;;;35607:11:0;:2;-1:-1:-1;;;;;35607:11:0;;35603:48;;;35627:24;;-1:-1:-1;;;35627:24:0;;;;;;;;;;;35603:48;792:10;-1:-1:-1;;;;;35668:21:0;;;;;;:63;;-1:-1:-1;35694:37:0;35711:5;792:10;36542:164;:::i;35694:37::-;35693:38;35668:63;35664:138;;;35755:35;;-1:-1:-1;;;35755:35:0;;;;;;;;;;;35664:138;35814:28;35823:2;35827:7;35836:5;35814:8;:28::i;:::-;35541:309;35479:371;;:::o;36773:170::-;36907:28;36917:4;36923:2;36927:7;36907:9;:28::i;50764:186::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;792:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;;;;;;;;;5266:1:::1;5864:7;;:19;;5856:63;;;::::0;-1:-1:-1;;;5856:63:0;;9329:2:1;5856:63:0::1;::::0;::::1;9311:21:1::0;9368:2;9348:18;;;9341:30;9407:33;9387:18;;;9380:61;9458:18;;5856:63:0::1;9127:355:1::0;5856:63:0::1;5266:1;5997:7;:18:::0;50846:49:::2;::::0;50828:12:::2;::::0;50846:10:::2;::::0;50869:21:::2;::::0;50828:12;50846:49;50828:12;50846:49;50869:21;50846:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50827:68;;;50914:7;50906:36;;;::::0;-1:-1:-1;;;50906:36:0;;8984:2:1;50906:36:0::2;::::0;::::2;8966:21:1::0;9023:2;9003:18;;;8996:30;-1:-1:-1;;;9042:18:1;;;9035:46;9098:18;;50906:36:0::2;8782:340:1::0;50906:36:0::2;-1:-1:-1::0;5222:1:0::1;6176:7;:22:::0;50764:186::o;37014:185::-;37152:39;37169:4;37175:2;37179:7;37152:39;;;;;;;;;;;;:16;:39::i;50650:106::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;792:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;50725:23:::1;:13;50741:7:::0;;50725:23:::1;:::i;34222:124::-:0;34286:7;34313:20;34325:7;34313:11;:20::i;:::-;:25;;34222:124;-1:-1:-1;;34222:124:0:o;31397:206::-;31461:7;-1:-1:-1;;;;;31485:19:0;;31481:60;;31513:28;;-1:-1:-1;;;31513:28:0;;;;;;;;;;;31481:60;-1:-1:-1;;;;;;31567:19:0;;;;;:12;:19;;;;;:27;;;;31397:206::o;2637:103::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;792:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;2702:30:::1;2729:1;2702:18;:30::i;:::-;2637:103::o:0;48867:338::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;792:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;49026:15:::1;:31:::0;;-1:-1:-1;;49026:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;49068:23;:33;;;;49112:25;:37;49160:25;:37;48867:338::o;34582:104::-;34638:13;34671:7;34664:14;;;;;:::i;49213:1030::-;49273:47;;;;;;;;49305:15;49273:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49543:40;;;;-1:-1:-1;;;49543:40:0;;8273:2:1;49543:40:0;;;8255:21:1;8312:2;8292:18;;;8285:30;-1:-1:-1;;;8331:18:1;;;8324:51;8392:18;;49543:40:0;8071:345:1;49543:40:0;49614:7;49602:8;:19;;49594:64;;;;-1:-1:-1;;;49594:64:0;;7155:2:1;49594:64:0;;;7137:21:1;;;7174:18;;;7167:30;7233:34;7213:18;;;7206:62;7285:18;;49594:64:0;6953:356:1;49594:64:0;49731:7;49719:8;49691:25;49705:10;49691:13;:25::i;:::-;:36;;;;:::i;:::-;:47;;49669:135;;;;-1:-1:-1;;;49669:135:0;;10045:2:1;49669:135:0;;;10027:21:1;10084:2;10064:18;;;10057:30;10123:34;10103:18;;;10096:62;-1:-1:-1;;;10174:18:1;;;10167:36;10220:19;;49669:135:0;9843:402:1;49669:135:0;30531:12;;30084:1;30515:13;49837:3;;30515:28;;-1:-1:-1;;30515:46:0;49821:19;49817:419;;;49857:31;49867:10;49879:8;49857:9;:31::i;:::-;49817:419;;;49971:9;49947:20;49958:9;49947:8;:20;:::i;:::-;:33;;49921:116;;;;-1:-1:-1;;;49921:116:0;;7923:2:1;49921:116:0;;;7905:21:1;7962:2;7942:18;;;7935:30;-1:-1:-1;;;7981:18:1;;;7974:51;8042:18;;49921:116:0;7721:345:1;49921:116:0;30531:12;;30084:1;30515:13;50106:9;;50094:8;;30515:28;-1:-1:-1;;30515:46:0;50078:24;;;;:::i;:::-;:37;;50052:126;;;;-1:-1:-1;;;50052:126:0;;9689:2:1;50052:126:0;;;9671:21:1;9728:2;9708:18;;;9701:30;9767:29;9747:18;;;9740:57;9814:18;;50052:126:0;9487:351:1;50052:126:0;50193:31;50203:10;50215:8;50193:9;:31::i;:::-;49262:981;;;;;49213:1030;:::o;36192:279::-;-1:-1:-1;;;;;36283:24:0;;792:10;36283:24;36279:54;;;36316:17;;-1:-1:-1;;;36316:17:0;;;;;;;;;;;36279:54;792:10;36346:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36346:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36346:53:0;;;;;;;;;;36415:48;;6271:41:1;;;36346:42:0;;792:10;36415:48;;6244:18:1;36415:48:0;;;;;;;36192:279;;:::o;37270:369::-;37437:28;37447:4;37453:2;37457:7;37437:9;:28::i;:::-;-1:-1:-1;;;;;37480:13:0;;18562:19;:23;;37480:76;;;;;37500:56;37531:4;37537:2;37541:7;37550:5;37500:30;:56::i;:::-;37499:57;37480:76;37476:156;;;37580:40;;-1:-1:-1;;;37580:40:0;;;;;;;;;;;37476:156;37270:369;;;;:::o;34757:318::-;34830:13;34861:16;34869:7;34861;:16::i;:::-;34856:59;;34886:29;;-1:-1:-1;;;34886:29:0;;;;;;;;;;;34856:59;34928:21;34952:10;:8;:10::i;:::-;34928:34;;34986:7;34980:21;35005:1;34980:26;;:87;;;;;;;;;;;;;;;;;35033:7;35042:18;:7;:16;:18::i;:::-;35016:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34980:87;34973:94;34757:318;-1:-1:-1;;;34757:318:0:o;50251:110::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;792:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;50331:15:::1;:22:::0;;-1:-1:-1;;50305:48:0;::::1;50331:22;::::0;;::::1;50330:23;50305:48;::::0;;50251:110::o;2895:201::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;792:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2984:22:0;::::1;2976:73;;;::::0;-1:-1:-1;;;2976:73:0;;7516:2:1;2976:73:0::1;::::0;::::1;7498:21:1::0;7555:2;7535:18;;;7528:30;7594:34;7574:18;;;7567:62;-1:-1:-1;;;7645:18:1;;;7638:36;7691:19;;2976:73:0::1;7314:402:1::0;2976:73:0::1;3060:28;3079:8;3060:18;:28::i;:::-;2895:201:::0;:::o;50369:114::-;50428:7;50455:20;50469:5;50455:13;:20::i;37894:187::-;37951:4;37994:7;30084:1;37975:26;;:53;;;;;38015:13;;38005:7;:23;37975:53;:98;;;;-1:-1:-1;;38046:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38046:27:0;;;;38045:28;;37894:187::o;45505:196::-;45620:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45620:29:0;-1:-1:-1;;;;;45620:29:0;;;;;;;;;45665:28;;45620:24;;45665:28;;;;;;;45505:196;;;:::o;41007:2112::-;41122:35;41160:20;41172:7;41160:11;:20::i;:::-;41235:18;;41122:58;;-1:-1:-1;41193:22:0;;-1:-1:-1;;;;;41219:34:0;792:10;-1:-1:-1;;;;;41219:34:0;;:101;;;-1:-1:-1;41287:18:0;;41270:50;;792:10;36542:164;:::i;41270:50::-;41219:154;;;-1:-1:-1;792:10:0;41337:20;41349:7;41337:11;:20::i;:::-;-1:-1:-1;;;;;41337:36:0;;41219:154;41193:181;;41392:17;41387:66;;41418:35;;-1:-1:-1;;;41418:35:0;;;;;;;;;;;41387:66;41490:4;-1:-1:-1;;;;;41468:26:0;:13;:18;;;-1:-1:-1;;;;;41468:26:0;;41464:67;;41503:28;;-1:-1:-1;;;41503:28:0;;;;;;;;;;;41464:67;-1:-1:-1;;;;;41546:16:0;;41542:52;;41571:23;;-1:-1:-1;;;41571:23:0;;;;;;;;;;;41542:52;41715:49;41732:1;41736:7;41745:13;:18;;;41715:8;:49::i;:::-;-1:-1:-1;;;;;42060:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42060:31:0;;;;;;;-1:-1:-1;;42060:31:0;;;;;;;42106:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42106:29:0;;;;;;;;;;;42152:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42197:61:0;;;;-1:-1:-1;;;42242:15:0;42197:61;;;;;;;;;;;42532:11;;;42562:24;;;;;:29;42532:11;;42562:29;42558:445;;42787:13;;42773:11;:27;42769:219;;;42857:18;;;42825:24;;;:11;:24;;;;;;;;:50;;42940:28;;;;42898:70;;-1:-1:-1;;;42898:70:0;-1:-1:-1;;;;;;42898:70:0;;;-1:-1:-1;;;;;42825:50:0;;;42898:70;;;;;;;42769:219;42035:979;43050:7;43046:2;-1:-1:-1;;;;;43031:27:0;43040:4;-1:-1:-1;;;;;43031:27:0;;;;;;;;;;;43069:42;41111:2008;;41007:2112;;;:::o;33052:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33162:7:0;;30084:1;33211:23;;:47;;;;;33245:13;;33238:4;:20;33211:47;33207:886;;;33279:31;33313:17;;;:11;:17;;;;;;;;;33279:51;;;;;;;;;-1:-1:-1;;;;;33279:51:0;;;;-1:-1:-1;;;33279:51:0;;;;;;;;;;;-1:-1:-1;;;33279:51:0;;;;;;;;;;;;;;33349:729;;33399:14;;-1:-1:-1;;;;;33399:28:0;;33395:101;;33463:9;33052:1108;-1:-1:-1;;;33052:1108:0:o;33395:101::-;-1:-1:-1;;;33838:6:0;33883:17;;;;:11;:17;;;;;;;;;33871:29;;;;;;;;;-1:-1:-1;;;;;33871:29:0;;;;;-1:-1:-1;;;33871:29:0;;;;;;;;;;;-1:-1:-1;;;33871:29:0;;;;;;;;;;;;;33931:28;33927:109;;33999:9;33052:1108;-1:-1:-1;;;33052:1108:0:o;33927:109::-;33798:261;;;33260:833;33207:886;34121:31;;-1:-1:-1;;;34121:31:0;;;;;;;;;;;3256:191;3330:16;3349:6;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;3399:40;;3349:6;;;;;;;3399:40;;3330:16;3399:40;3319:128;3256:191;:::o;38089:104::-;38158:27;38168:2;38172:8;38158:27;;;;;;;;;;;;:9;:27::i;:::-;38089:104;;:::o;46193:667::-;46377:72;;-1:-1:-1;;;46377:72:0;;46356:4;;-1:-1:-1;;;;;46377:36:0;;;;;:72;;792:10;;46428:4;;46434:7;;46443:5;;46377:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46377:72:0;;;;;;;;-1:-1:-1;;46377:72:0;;;;;;;;;;;;:::i;:::-;;;46373:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46611:13:0;;46607:235;;46657:40;;-1:-1:-1;;;46657:40:0;;;;;;;;;;;46607:235;46800:6;46794:13;46785:6;46781:2;46777:15;46770:38;46373:480;-1:-1:-1;;;;;;46496:55:0;-1:-1:-1;;;46496:55:0;;-1:-1:-1;46373:480:0;46193:667;;;;;;:::o;50528:114::-;50588:13;50621;50614:20;;;;;:::i;6578:723::-;6634:13;6855:10;6851:53;;-1:-1:-1;;6882:10:0;;;;;;;;;;;;-1:-1:-1;;;6882:10:0;;;;;6578:723::o;6851:53::-;6929:5;6914:12;6970:78;6977:9;;6970:78;;7003:8;;;;:::i;:::-;;-1:-1:-1;7026:10:0;;-1:-1:-1;7034:2:0;7026:10;;:::i;:::-;;;6970:78;;;7058:19;7090:6;7080:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7080:17:0;;7058:39;;7108:154;7115:10;;7108:154;;7142:11;7152:1;7142:11;;:::i;:::-;;-1:-1:-1;7211:10:0;7219:2;7211:5;:10;:::i;:::-;7198:24;;:2;:24;:::i;:::-;7185:39;;7168:6;7175;7168:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7168:56:0;;;;;;;;-1:-1:-1;7239:11:0;7248:2;7239:11;;:::i;:::-;;;7108:154;;31685:207;31746:7;-1:-1:-1;;;;;31770:19:0;;31766:59;;31798:27;;-1:-1:-1;;;31798:27:0;;;;;;;;;;;31766:59;-1:-1:-1;;;;;;31851:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;31851:32:0;;;;;31685:207::o;38556:163::-;38679:32;38685:2;38689:8;38699:5;38706:4;39140:13;;-1:-1:-1;;;;;39168:16:0;;39164:48;;39193:19;;-1:-1:-1;;;39193:19:0;;;;;;;;;;;39164:48;39227:13;39223:44;;39249:18;;-1:-1:-1;;;39249:18:0;;;;;;;;;;;39223:44;-1:-1:-1;;;;;39618:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39677:49:0;;39618:44;;;;;;;;39677:49;;;-1:-1:-1;;;;;39618:44:0;;;;;;39677:49;;;;;;;;;;;;;;;;39743:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39793:66:0;;;;-1:-1:-1;;;39843:15:0;39793:66;;;;;;;;;;39743:25;39940:23;;;39984:4;:23;;;;-1:-1:-1;;;;;;39992:13:0;;18562:19;:23;;39992:15;39980:641;;;40028:314;40059:38;;40084:12;;-1:-1:-1;;;;;40059:38:0;;;40076:1;;40059:38;;40076:1;;40059:38;40125:69;40164:1;40168:2;40172:14;;;;;;40188:5;40125:30;:69::i;:::-;40120:174;;40230:40;;-1:-1:-1;;;40230:40:0;;;;;;;;;;;40120:174;40337:3;40321:12;:19;;40028:314;;40423:12;40406:13;;:29;40402:43;;40437:8;;;40402:43;39980:641;;;40486:120;40517:40;;40542:14;;;;;-1:-1:-1;;;;;40517:40:0;;;40534:1;;40517:40;;40534:1;;40517:40;40601:3;40585:12;:19;;40486:120;;39980:641;-1:-1:-1;40635:13:0;:28;40685:60;37270:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:385::-;2890:6;2898;2906;2914;2967:3;2955:9;2946:7;2942:23;2938:33;2935:53;;;2984:1;2981;2974:12;2935:53;3007:26;3023:9;3007:26;:::i;:::-;2997:36;3080:2;3065:18;;3052:32;;-1:-1:-1;3131:2:1;3116:18;;3103:32;;3182:2;3167:18;3154:32;;-1:-1:-1;2807:385:1;-1:-1:-1;;;2807:385:1:o;3197:245::-;3255:6;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3363:9;3350:23;3382:30;3406:5;3382:30;:::i;3447:249::-;3516:6;3569:2;3557:9;3548:7;3544:23;3540:32;3537:52;;;3585:1;3582;3575:12;3537:52;3617:9;3611:16;3636:30;3660:5;3636:30;:::i;3701:592::-;3772:6;3780;3833:2;3821:9;3812:7;3808:23;3804:32;3801:52;;;3849:1;3846;3839:12;3801:52;3889:9;3876:23;3918:18;3959:2;3951:6;3948:14;3945:34;;;3975:1;3972;3965:12;3945:34;4013:6;4002:9;3998:22;3988:32;;4058:7;4051:4;4047:2;4043:13;4039:27;4029:55;;4080:1;4077;4070:12;4029:55;4120:2;4107:16;4146:2;4138:6;4135:14;4132:34;;;4162:1;4159;4152:12;4132:34;4207:7;4202:2;4193:6;4189:2;4185:15;4181:24;4178:37;4175:57;;;4228:1;4225;4218:12;4175:57;4259:2;4251:11;;;;;4281:6;;-1:-1:-1;3701:592:1;;-1:-1:-1;;;;3701:592:1:o;4298:180::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;-1:-1:-1;4449:23:1;;4298:180;-1:-1:-1;4298:180:1:o;4483:257::-;4524:3;4562:5;4556:12;4589:6;4584:3;4577:19;4605:63;4661:6;4654:4;4649:3;4645:14;4638:4;4631:5;4627:16;4605:63;:::i;:::-;4722:2;4701:15;-1:-1:-1;;4697:29:1;4688:39;;;;4729:4;4684:50;;4483:257;-1:-1:-1;;4483:257:1:o;4745:470::-;4924:3;4962:6;4956:13;4978:53;5024:6;5019:3;5012:4;5004:6;5000:17;4978:53;:::i;:::-;5094:13;;5053:16;;;;5116:57;5094:13;5053:16;5150:4;5138:17;;5116:57;:::i;:::-;5189:20;;4745:470;-1:-1:-1;;;;4745:470:1:o;5638:488::-;-1:-1:-1;;;;;5907:15:1;;;5889:34;;5959:15;;5954:2;5939:18;;5932:43;6006:2;5991:18;;5984:34;;;6054:3;6049:2;6034:18;;6027:31;;;5832:4;;6075:45;;6100:19;;6092:6;6075:45;:::i;:::-;6067:53;5638:488;-1:-1:-1;;;;;;5638:488:1:o;6729:219::-;6878:2;6867:9;6860:21;6841:4;6898:44;6938:2;6927:9;6923:18;6915:6;6898:44;:::i;8421:356::-;8623:2;8605:21;;;8642:18;;;8635:30;8701:34;8696:2;8681:18;;8674:62;8768:2;8753:18;;8421:356::o;10432:128::-;10472:3;10503:1;10499:6;10496:1;10493:13;10490:39;;;10509:18;;:::i;:::-;-1:-1:-1;10545:9:1;;10432:128::o;10565:120::-;10605:1;10631;10621:35;;10636:18;;:::i;:::-;-1:-1:-1;10670:9:1;;10565:120::o;10690:168::-;10730:7;10796:1;10792;10788:6;10784:14;10781:1;10778:21;10773:1;10766:9;10759:17;10755:45;10752:71;;;10803:18;;:::i;:::-;-1:-1:-1;10843:9:1;;10690:168::o;10863:125::-;10903:4;10931:1;10928;10925:8;10922:34;;;10936:18;;:::i;:::-;-1:-1:-1;10973:9:1;;10863:125::o;10993:258::-;11065:1;11075:113;11089:6;11086:1;11083:13;11075:113;;;11165:11;;;11159:18;11146:11;;;11139:39;11111:2;11104:10;11075:113;;;11206:6;11203:1;11200:13;11197:48;;;-1:-1:-1;;11241:1:1;11223:16;;11216:27;10993:258::o;11256:380::-;11335:1;11331:12;;;;11378;;;11399:61;;11453:4;11445:6;11441:17;11431:27;;11399:61;11506:2;11498:6;11495:14;11475:18;11472:38;11469:161;;;11552:10;11547:3;11543:20;11540:1;11533:31;11587:4;11584:1;11577:15;11615:4;11612:1;11605:15;11469:161;;11256:380;;;:::o;11641:135::-;11680:3;-1:-1:-1;;11701:17:1;;11698:43;;;11721:18;;:::i;:::-;-1:-1:-1;11768:1:1;11757:13;;11641:135::o;11781:112::-;11813:1;11839;11829:35;;11844:18;;:::i;:::-;-1:-1:-1;11878:9:1;;11781:112::o;11898:127::-;11959:10;11954:3;11950:20;11947:1;11940:31;11990:4;11987:1;11980:15;12014:4;12011:1;12004:15;12030:127;12091:10;12086:3;12082:20;12079:1;12072:31;12122:4;12119:1;12112:15;12146:4;12143:1;12136:15;12162:127;12223:10;12218:3;12214:20;12211:1;12204:31;12254:4;12251:1;12244:15;12278:4;12275:1;12268:15;12294:127;12355:10;12350:3;12346:20;12343:1;12336:31;12386:4;12383:1;12376:15;12410:4;12407:1;12400:15;12426:131;-1:-1:-1;;;;;;12500:32:1;;12490:43;;12480:71;;12547:1;12544;12537:12
Swarm Source
ipfs://8e8559d732a2c5010df387364e7e273001664aa6ce8171f4b75e188b7ae5c591
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.