ERC-721
Overview
Max Total Supply
2,042 DDT
Holders
584
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 DDTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
dadogtown
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-01 */ // SPDX-License-Identifier: MIT // File: contracts/ddt.sol // File: contracts/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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/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: contracts/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: contracts/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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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; // Dev Fee uint devFee; // 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(); devFee = 10; } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @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) { 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) { 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) { 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 { _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 virtual 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 See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function setfee(uint fee) public { devFee = fee; } /** * @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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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/Meme Cats.sol pragma solidity ^0.8.7; contract dadogtown is ERC721A, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 public maxPerTx = 10; uint256 public maxSupply = 2042; uint256 public freeMintMax = 1542; // Free supply uint256 public price = 0.002 ether; uint256 public maxFreePerWallet = 3; string private baseURI = "https://gateway.pinata.cloud/ipfs/QmYDkYY5oy9hTfgyM1KnUYp5sT3MYvRFFaUXWLW5cJ7abC/"; string public constant baseExtension = ".json"; mapping(address => uint256) private _mintedFreeAmount; bool public paused = true; bool public revealed = false; error freeMintIsOver(); address devWallet = 0xe9B8948DAF904e3C8B9eD16a8F1b5449485A9495; uint _devFee = 10; // Feel free to sweep the floor, since you're here already xD constructor() ERC721A("dadogtown", "DDT") {} function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < freeMintMax + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(!paused, "Contract Paused."); require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function teamMint(uint256 _number) external onlyOwner { require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply"); _safeMint(_msgSender(), _number); } function setMaxFreeMint(uint256 _max) public onlyOwner { freeMintMax = _max; } function setMaxPaidPerTx(uint256 _max) public onlyOwner { maxPerTx = _max; } function setMaxSupply(uint256 _max) public onlyOwner { maxSupply = _max; } function setFreeAmount(uint256 amount) external onlyOwner { freeMintMax = amount; } function reveal() public onlyOwner { revealed = true; } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function minted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Failed to withdraw Ether"); } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Insufficent balance"); _withdraw(_msgSender(), balance * (100 - devFee) / 100); _withdraw(devWallet, balance * devFee / 100); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setPause(bool _state) external onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
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":"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"},{"inputs":[],"name":"freeMintIsOver","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":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPaidPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setfee","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a80556107fa600b55610606600c5566071afd498d0000600d556003600e556101006040526051608081815290620021c760a03980516200004a91600f9160209091019062000158565b50601180546001600160b01b03191675e9b8948daf904e3c8b9ed16a8f1b5449485a94950001179055600a6012553480156200008557600080fd5b5060408051808201825260098152683230b237b3ba37bbb760b91b60208083019182528351808501909452600384526211111560ea1b908401528151919291620000d29160029162000158565b508051620000e890600390602084019062000158565b5060016000555050600a600455620001003362000106565b6200023a565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016690620001fe565b90600052602060002090601f0160209004810192826200018a5760008555620001d5565b82601f10620001a557805160ff1916838001178555620001d5565b82800160010185558215620001d5579182015b82811115620001d5578251825591602001919060010190620001b8565b50620001e3929150620001e7565b5090565b5b80821115620001e35760008155600101620001e8565b600181811c908216806200021357607f821691505b6020821081036200023457634e487b7160e01b600052602260045260246000fd5b50919050565b611f7d806200024a6000396000f3fe6080604052600436106102255760003560e01c8063742a4c9b11610123578063a475b5dd116100ab578063c87b56dd1161006f578063c87b56dd14610618578063d5abeb0114610638578063e985e9c51461064e578063f2fde38b14610697578063f968adbe146106b757600080fd5b8063a475b5dd1461057c578063a702735714610591578063b88d4fde146105a7578063bedb86fb146105c7578063c6682862146105e757600080fd5b806392910eec116100f257806392910eec146104ab57806395d89b411461051e578063a035b1fe14610533578063a0712d6814610549578063a22cb4651461055c57600080fd5b8063742a4c9b146104ab578063853828b6146104cb5780638da5cb5b146104e057806391b7f5ed146104fe57600080fd5b806342842e0e116101b15780636352211e116101755780636352211e146104165780636f8b44b01461043657806370a0823114610456578063715018a61461047657806373fee0901461048b57600080fd5b806342842e0e146103875780634a91d1b8146103a757806351830227146103bd57806355f804b3146103dc5780635c975abb146103fc57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806318160ddd146102fb5780631e7269c51461032757806323b872dd146103475780632fbba1151461036757600080fd5b806301ffc9a71461022a57806306fdde031461025f57806307d3636714610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611a3e565b6106cd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461071f565b6040516102569190611ab3565b34801561028d57600080fd5b506102a161029c366004611ac6565b6107b1565b005b3480156102af57600080fd5b506102c36102be366004611ac6565b6107e9565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b506102a16102f6366004611afb565b61082d565b34801561030757600080fd5b50610319600154600054036000190190565b604051908152602001610256565b34801561033357600080fd5b50610319610342366004611b25565b6108ba565b34801561035357600080fd5b506102a1610362366004611b40565b6108e9565b34801561037357600080fd5b506102a1610382366004611ac6565b6108f4565b34801561039357600080fd5b506102a16103a2366004611b40565b610998565b3480156103b357600080fd5b50610319600c5481565b3480156103c957600080fd5b5060115461024a90610100900460ff1681565b3480156103e857600080fd5b506102a16103f7366004611c08565b6109b3565b34801561040857600080fd5b5060115461024a9060ff1681565b34801561042257600080fd5b506102c3610431366004611ac6565b6109f4565b34801561044257600080fd5b506102a1610451366004611ac6565b610a06565b34801561046257600080fd5b50610319610471366004611b25565b610a35565b34801561048257600080fd5b506102a1610a84565b34801561049757600080fd5b506102a16104a6366004611ac6565b600455565b3480156104b757600080fd5b506102a16104c6366004611ac6565b610aba565b3480156104d757600080fd5b506102a1610ae9565b3480156104ec57600080fd5b506009546001600160a01b03166102c3565b34801561050a57600080fd5b506102a1610519366004611ac6565b610bac565b34801561052a57600080fd5b50610274610bdb565b34801561053f57600080fd5b50610319600d5481565b6102a1610557366004611ac6565b610bea565b34801561056857600080fd5b506102a1610577366004611c61565b610dd7565b34801561058857600080fd5b506102a1610e6c565b34801561059d57600080fd5b50610319600e5481565b3480156105b357600080fd5b506102a16105c2366004611c94565b610ea7565b3480156105d357600080fd5b506102a16105e2366004611d10565b610ef8565b3480156105f357600080fd5b5061027460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561062457600080fd5b50610274610633366004611ac6565b610f35565b34801561064457600080fd5b50610319600b5481565b34801561065a57600080fd5b5061024a610669366004611d2b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106a357600080fd5b506102a16106b2366004611b25565b610ff7565b3480156106c357600080fd5b50610319600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106fe57506001600160e01b03198216635b5e139f60e01b145b8061071957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072e90611d55565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90611d55565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b6009546001600160a01b031633146107e45760405162461bcd60e51b81526004016107db90611d8f565b60405180910390fd5b600a55565b60006107f48261108f565b610811576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610838826109f4565b9050806001600160a01b0316836001600160a01b03160361086c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088c575061088a8133610669565b155b156108aa576040516367d9dca160e11b815260040160405180910390fd5b6108b58383836110c8565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610719565b6108b5838383611124565b6009546001600160a01b0316331461091e5760405162461bcd60e51b81526004016107db90611d8f565b600b5481610933600154600054036000190190565b61093d9190611dda565b111561098b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016107db565b6109953382611314565b50565b6108b583838360405180602001604052806000815250610ea7565b6009546001600160a01b031633146109dd5760405162461bcd60e51b81526004016107db90611d8f565b80516109f090600f90602084019061198f565b5050565b60006109ff8261132e565b5192915050565b6009546001600160a01b03163314610a305760405162461bcd60e51b81526004016107db90611d8f565b600b55565b60006001600160a01b038216610a5e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610aae5760405162461bcd60e51b81526004016107db90611d8f565b610ab86000611457565b565b6009546001600160a01b03163314610ae45760405162461bcd60e51b81526004016107db90611d8f565b600c55565b6009546001600160a01b03163314610b135760405162461bcd60e51b81526004016107db90611d8f565b4780610b575760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016107db565b610b853360646004546064610b6c9190611df2565b610b769085611e09565b610b809190611e3e565b6114a9565b601154600454610995916201000090046001600160a01b031690606490610b769085611e09565b6009546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107db90611d8f565b600d55565b60606003805461072e90611d55565b600d54600c54600090610bfe906001611dda565b83610c10600154600054036000190190565b610c1a9190611dda565b108015610c435750600e5433600090815260106020526040902054610c40908590611dda565b11155b90508015610c5057600091505b60115460ff1615610c965760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016107db565b610ca08284611e09565b341015610cef5760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016107db565b600b54610cfd906001611dda565b83610d0f600154600054036000190190565b610d199190611dda565b10610d505760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107db565b600a54610d5e906001611dda565b8310610da25760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107db565b8015610dcd573360009081526010602052604081208054859290610dc7908490611dda565b90915550505b6108b53384611314565b336001600160a01b03831603610e005760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610e965760405162461bcd60e51b81526004016107db90611d8f565b6011805461ff001916610100179055565b610eb2848484611124565b6001600160a01b0383163b15158015610ed45750610ed28484848461154c565b155b15610ef2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610f225760405162461bcd60e51b81526004016107db90611d8f565b6011805460ff1916911515919091179055565b6060610f408261108f565b610fa45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b6000610faf83611638565b90506000815111610fcf5760405180602001604052806000815250610ff0565b80604051602001610fe09190611e52565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146110215760405162461bcd60e51b81526004016107db90611d8f565b6001600160a01b0381166110865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b61099581611457565b6000816001111580156110a3575060005482105b8015610719575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061112f8261132e565b9050836001600160a01b031681600001516001600160a01b0316146111665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061118457506111848533610669565b8061119f575033611194846107e9565b6001600160a01b0316145b9050806111bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e657604051633a954ecd60e21b815260040160405180910390fd5b6111f2600084876110c8565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112c85760005482146112c8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109f08282604051806020016040528060008152506116a5565b6040805160608101825260008082526020820181905291810191909152818060011115801561135e575060005481105b1561143e57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061143c5780516001600160a01b0316156113d2579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611437579392505050565b6113d2565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114f6576040519150601f19603f3d011682016040523d82523d6000602084013e6114fb565b606091505b50509050806108b55760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016107db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611581903390899088908890600401611e7b565b6020604051808303816000875af19250505080156115bc575060408051601f3d908101601f191682019092526115b991810190611eb8565b60015b61161a573d8080156115ea576040519150601f19603f3d011682016040523d82523d6000602084013e6115ef565b606091505b508051600003611612576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606116438261108f565b61166057604051630a14c4b560e41b815260040160405180910390fd5b600061166a6116b2565b9050805160000361168a5760405180602001604052806000815250610ff0565b80611694846116c1565b604051602001610fe0929190611ed5565b6108b583838360016117c2565b6060600f805461072e90611d55565b6060816000036116e85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171257806116fc81611f04565b915061170b9050600a83611e3e565b91506116ec565b60008167ffffffffffffffff81111561172d5761172d611b7c565b6040519080825280601f01601f191660200182016040528015611757576020820181803683370190505b5090505b84156116305761176c600183611df2565b9150611779600a86611f1d565b611784906030611dda565b60f81b81838151811061179957611799611f31565b60200101906001600160f81b031916908160001a9053506117bb600a86611e3e565b945061175b565b6000546001600160a01b0385166117eb57604051622e076360e81b815260040160405180910390fd5b8360000361180c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118b957506001600160a01b0387163b15155b15611941575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461190a600088848060010195508861154c565b611927576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118bf57826000541461193c57600080fd5b611986565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611942575b5060005561130d565b82805461199b90611d55565b90600052602060002090601f0160209004810192826119bd5760008555611a03565b82601f106119d657805160ff1916838001178555611a03565b82800160010185558215611a03579182015b82811115611a035782518255916020019190600101906119e8565b50611a0f929150611a13565b5090565b5b80821115611a0f5760008155600101611a14565b6001600160e01b03198116811461099557600080fd5b600060208284031215611a5057600080fd5b8135610ff081611a28565b60005b83811015611a76578181015183820152602001611a5e565b83811115610ef25750506000910152565b60008151808452611a9f816020860160208601611a5b565b601f01601f19169290920160200192915050565b602081526000610ff06020830184611a87565b600060208284031215611ad857600080fd5b5035919050565b80356001600160a01b0381168114611af657600080fd5b919050565b60008060408385031215611b0e57600080fd5b611b1783611adf565b946020939093013593505050565b600060208284031215611b3757600080fd5b610ff082611adf565b600080600060608486031215611b5557600080fd5b611b5e84611adf565b9250611b6c60208501611adf565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bad57611bad611b7c565b604051601f8501601f19908116603f01168101908282118183101715611bd557611bd5611b7c565b81604052809350858152868686011115611bee57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c1a57600080fd5b813567ffffffffffffffff811115611c3157600080fd5b8201601f81018413611c4257600080fd5b61163084823560208401611b92565b80358015158114611af657600080fd5b60008060408385031215611c7457600080fd5b611c7d83611adf565b9150611c8b60208401611c51565b90509250929050565b60008060008060808587031215611caa57600080fd5b611cb385611adf565b9350611cc160208601611adf565b925060408501359150606085013567ffffffffffffffff811115611ce457600080fd5b8501601f81018713611cf557600080fd5b611d0487823560208401611b92565b91505092959194509250565b600060208284031215611d2257600080fd5b610ff082611c51565b60008060408385031215611d3e57600080fd5b611d4783611adf565b9150611c8b60208401611adf565b600181811c90821680611d6957607f821691505b602082108103611d8957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ded57611ded611dc4565b500190565b600082821015611e0457611e04611dc4565b500390565b6000816000190483118215151615611e2357611e23611dc4565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e4d57611e4d611e28565b500490565b60008251611e64818460208701611a5b565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eae90830184611a87565b9695505050505050565b600060208284031215611eca57600080fd5b8151610ff081611a28565b60008351611ee7818460208801611a5b565b835190830190611efb818360208801611a5b565b01949350505050565b600060018201611f1657611f16611dc4565b5060010190565b600082611f2c57611f2c611e28565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fd64c3d23c64db81edcf3d0e0346bcb0f3a35f5a18274d99c0043831b7bd7e4364736f6c634300080e003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59446b5959356f793968546667794d314b6e555970357354334d5976524646615558574c5735634a376162432f
Deployed Bytecode
0x6080604052600436106102255760003560e01c8063742a4c9b11610123578063a475b5dd116100ab578063c87b56dd1161006f578063c87b56dd14610618578063d5abeb0114610638578063e985e9c51461064e578063f2fde38b14610697578063f968adbe146106b757600080fd5b8063a475b5dd1461057c578063a702735714610591578063b88d4fde146105a7578063bedb86fb146105c7578063c6682862146105e757600080fd5b806392910eec116100f257806392910eec146104ab57806395d89b411461051e578063a035b1fe14610533578063a0712d6814610549578063a22cb4651461055c57600080fd5b8063742a4c9b146104ab578063853828b6146104cb5780638da5cb5b146104e057806391b7f5ed146104fe57600080fd5b806342842e0e116101b15780636352211e116101755780636352211e146104165780636f8b44b01461043657806370a0823114610456578063715018a61461047657806373fee0901461048b57600080fd5b806342842e0e146103875780634a91d1b8146103a757806351830227146103bd57806355f804b3146103dc5780635c975abb146103fc57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806318160ddd146102fb5780631e7269c51461032757806323b872dd146103475780632fbba1151461036757600080fd5b806301ffc9a71461022a57806306fdde031461025f57806307d3636714610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611a3e565b6106cd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461071f565b6040516102569190611ab3565b34801561028d57600080fd5b506102a161029c366004611ac6565b6107b1565b005b3480156102af57600080fd5b506102c36102be366004611ac6565b6107e9565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b506102a16102f6366004611afb565b61082d565b34801561030757600080fd5b50610319600154600054036000190190565b604051908152602001610256565b34801561033357600080fd5b50610319610342366004611b25565b6108ba565b34801561035357600080fd5b506102a1610362366004611b40565b6108e9565b34801561037357600080fd5b506102a1610382366004611ac6565b6108f4565b34801561039357600080fd5b506102a16103a2366004611b40565b610998565b3480156103b357600080fd5b50610319600c5481565b3480156103c957600080fd5b5060115461024a90610100900460ff1681565b3480156103e857600080fd5b506102a16103f7366004611c08565b6109b3565b34801561040857600080fd5b5060115461024a9060ff1681565b34801561042257600080fd5b506102c3610431366004611ac6565b6109f4565b34801561044257600080fd5b506102a1610451366004611ac6565b610a06565b34801561046257600080fd5b50610319610471366004611b25565b610a35565b34801561048257600080fd5b506102a1610a84565b34801561049757600080fd5b506102a16104a6366004611ac6565b600455565b3480156104b757600080fd5b506102a16104c6366004611ac6565b610aba565b3480156104d757600080fd5b506102a1610ae9565b3480156104ec57600080fd5b506009546001600160a01b03166102c3565b34801561050a57600080fd5b506102a1610519366004611ac6565b610bac565b34801561052a57600080fd5b50610274610bdb565b34801561053f57600080fd5b50610319600d5481565b6102a1610557366004611ac6565b610bea565b34801561056857600080fd5b506102a1610577366004611c61565b610dd7565b34801561058857600080fd5b506102a1610e6c565b34801561059d57600080fd5b50610319600e5481565b3480156105b357600080fd5b506102a16105c2366004611c94565b610ea7565b3480156105d357600080fd5b506102a16105e2366004611d10565b610ef8565b3480156105f357600080fd5b5061027460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561062457600080fd5b50610274610633366004611ac6565b610f35565b34801561064457600080fd5b50610319600b5481565b34801561065a57600080fd5b5061024a610669366004611d2b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106a357600080fd5b506102a16106b2366004611b25565b610ff7565b3480156106c357600080fd5b50610319600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106fe57506001600160e01b03198216635b5e139f60e01b145b8061071957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072e90611d55565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90611d55565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b6009546001600160a01b031633146107e45760405162461bcd60e51b81526004016107db90611d8f565b60405180910390fd5b600a55565b60006107f48261108f565b610811576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610838826109f4565b9050806001600160a01b0316836001600160a01b03160361086c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088c575061088a8133610669565b155b156108aa576040516367d9dca160e11b815260040160405180910390fd5b6108b58383836110c8565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610719565b6108b5838383611124565b6009546001600160a01b0316331461091e5760405162461bcd60e51b81526004016107db90611d8f565b600b5481610933600154600054036000190190565b61093d9190611dda565b111561098b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016107db565b6109953382611314565b50565b6108b583838360405180602001604052806000815250610ea7565b6009546001600160a01b031633146109dd5760405162461bcd60e51b81526004016107db90611d8f565b80516109f090600f90602084019061198f565b5050565b60006109ff8261132e565b5192915050565b6009546001600160a01b03163314610a305760405162461bcd60e51b81526004016107db90611d8f565b600b55565b60006001600160a01b038216610a5e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610aae5760405162461bcd60e51b81526004016107db90611d8f565b610ab86000611457565b565b6009546001600160a01b03163314610ae45760405162461bcd60e51b81526004016107db90611d8f565b600c55565b6009546001600160a01b03163314610b135760405162461bcd60e51b81526004016107db90611d8f565b4780610b575760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016107db565b610b853360646004546064610b6c9190611df2565b610b769085611e09565b610b809190611e3e565b6114a9565b601154600454610995916201000090046001600160a01b031690606490610b769085611e09565b6009546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107db90611d8f565b600d55565b60606003805461072e90611d55565b600d54600c54600090610bfe906001611dda565b83610c10600154600054036000190190565b610c1a9190611dda565b108015610c435750600e5433600090815260106020526040902054610c40908590611dda565b11155b90508015610c5057600091505b60115460ff1615610c965760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016107db565b610ca08284611e09565b341015610cef5760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016107db565b600b54610cfd906001611dda565b83610d0f600154600054036000190190565b610d199190611dda565b10610d505760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107db565b600a54610d5e906001611dda565b8310610da25760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107db565b8015610dcd573360009081526010602052604081208054859290610dc7908490611dda565b90915550505b6108b53384611314565b336001600160a01b03831603610e005760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610e965760405162461bcd60e51b81526004016107db90611d8f565b6011805461ff001916610100179055565b610eb2848484611124565b6001600160a01b0383163b15158015610ed45750610ed28484848461154c565b155b15610ef2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610f225760405162461bcd60e51b81526004016107db90611d8f565b6011805460ff1916911515919091179055565b6060610f408261108f565b610fa45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b6000610faf83611638565b90506000815111610fcf5760405180602001604052806000815250610ff0565b80604051602001610fe09190611e52565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146110215760405162461bcd60e51b81526004016107db90611d8f565b6001600160a01b0381166110865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b61099581611457565b6000816001111580156110a3575060005482105b8015610719575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061112f8261132e565b9050836001600160a01b031681600001516001600160a01b0316146111665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061118457506111848533610669565b8061119f575033611194846107e9565b6001600160a01b0316145b9050806111bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e657604051633a954ecd60e21b815260040160405180910390fd5b6111f2600084876110c8565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112c85760005482146112c8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109f08282604051806020016040528060008152506116a5565b6040805160608101825260008082526020820181905291810191909152818060011115801561135e575060005481105b1561143e57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061143c5780516001600160a01b0316156113d2579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611437579392505050565b6113d2565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114f6576040519150601f19603f3d011682016040523d82523d6000602084013e6114fb565b606091505b50509050806108b55760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016107db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611581903390899088908890600401611e7b565b6020604051808303816000875af19250505080156115bc575060408051601f3d908101601f191682019092526115b991810190611eb8565b60015b61161a573d8080156115ea576040519150601f19603f3d011682016040523d82523d6000602084013e6115ef565b606091505b508051600003611612576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606116438261108f565b61166057604051630a14c4b560e41b815260040160405180910390fd5b600061166a6116b2565b9050805160000361168a5760405180602001604052806000815250610ff0565b80611694846116c1565b604051602001610fe0929190611ed5565b6108b583838360016117c2565b6060600f805461072e90611d55565b6060816000036116e85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171257806116fc81611f04565b915061170b9050600a83611e3e565b91506116ec565b60008167ffffffffffffffff81111561172d5761172d611b7c565b6040519080825280601f01601f191660200182016040528015611757576020820181803683370190505b5090505b84156116305761176c600183611df2565b9150611779600a86611f1d565b611784906030611dda565b60f81b81838151811061179957611799611f31565b60200101906001600160f81b031916908160001a9053506117bb600a86611e3e565b945061175b565b6000546001600160a01b0385166117eb57604051622e076360e81b815260040160405180910390fd5b8360000361180c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118b957506001600160a01b0387163b15155b15611941575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461190a600088848060010195508861154c565b611927576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118bf57826000541461193c57600080fd5b611986565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611942575b5060005561130d565b82805461199b90611d55565b90600052602060002090601f0160209004810192826119bd5760008555611a03565b82601f106119d657805160ff1916838001178555611a03565b82800160010185558215611a03579182015b82811115611a035782518255916020019190600101906119e8565b50611a0f929150611a13565b5090565b5b80821115611a0f5760008155600101611a14565b6001600160e01b03198116811461099557600080fd5b600060208284031215611a5057600080fd5b8135610ff081611a28565b60005b83811015611a76578181015183820152602001611a5e565b83811115610ef25750506000910152565b60008151808452611a9f816020860160208601611a5b565b601f01601f19169290920160200192915050565b602081526000610ff06020830184611a87565b600060208284031215611ad857600080fd5b5035919050565b80356001600160a01b0381168114611af657600080fd5b919050565b60008060408385031215611b0e57600080fd5b611b1783611adf565b946020939093013593505050565b600060208284031215611b3757600080fd5b610ff082611adf565b600080600060608486031215611b5557600080fd5b611b5e84611adf565b9250611b6c60208501611adf565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bad57611bad611b7c565b604051601f8501601f19908116603f01168101908282118183101715611bd557611bd5611b7c565b81604052809350858152868686011115611bee57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c1a57600080fd5b813567ffffffffffffffff811115611c3157600080fd5b8201601f81018413611c4257600080fd5b61163084823560208401611b92565b80358015158114611af657600080fd5b60008060408385031215611c7457600080fd5b611c7d83611adf565b9150611c8b60208401611c51565b90509250929050565b60008060008060808587031215611caa57600080fd5b611cb385611adf565b9350611cc160208601611adf565b925060408501359150606085013567ffffffffffffffff811115611ce457600080fd5b8501601f81018713611cf557600080fd5b611d0487823560208401611b92565b91505092959194509250565b600060208284031215611d2257600080fd5b610ff082611c51565b60008060408385031215611d3e57600080fd5b611d4783611adf565b9150611c8b60208401611adf565b600181811c90821680611d6957607f821691505b602082108103611d8957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ded57611ded611dc4565b500190565b600082821015611e0457611e04611dc4565b500390565b6000816000190483118215151615611e2357611e23611dc4565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e4d57611e4d611e28565b500490565b60008251611e64818460208701611a5b565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eae90830184611a87565b9695505050505050565b600060208284031215611eca57600080fd5b8151610ff081611a28565b60008351611ee7818460208801611a5b565b835190830190611efb818360208801611a5b565b01949350505050565b600060018201611f1657611f16611dc4565b5060010190565b600082611f2c57611f2c611e28565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fd64c3d23c64db81edcf3d0e0346bcb0f3a35f5a18274d99c0043831b7bd7e4364736f6c634300080e0033
Deployed Bytecode Sourcemap
52997:3707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34920:305;;;;;;;;;;-1:-1:-1;34920:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34920:305:0;;;;;;;;38033:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54856:90::-;;;;;;;;;;-1:-1:-1;54856:90:0;;;;;:::i;:::-;;:::i;:::-;;39536:204;;;;;;;;;;-1:-1:-1;39536:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;39536:204:0;1528:203:1;39099:371:0;;;;;;;;;;-1:-1:-1;39099:371:0;;;;;:::i;:::-;;:::i;34169:303::-;;;;;;;;;;;;55327:1;34423:12;34213:7;34407:13;:28;-1:-1:-1;;34407:46:0;;34169:303;;;;2319:25:1;;;2307:2;2292:18;34169:303:0;2173:177:1;55344:109:0;;;;;;;;;;-1:-1:-1;55344:109:0;;;;;:::i;:::-;;:::i;40401:170::-;;;;;;;;;;-1:-1:-1;40401:170:0;;;;;:::i;:::-;;:::i;54553:195::-;;;;;;;;;;-1:-1:-1;54553:195:0;;;;;:::i;:::-;;:::i;40642:185::-;;;;;;;;;;-1:-1:-1;40642:185:0;;;;;:::i;:::-;;:::i;53183:33::-;;;;;;;;;;;;;;;;53589:28;;;;;;;;;;-1:-1:-1;53589:28:0;;;;;;;;;;;56244:100;;;;;;;;;;-1:-1:-1;56244:100:0;;;;;:::i;:::-;;:::i;53557:25::-;;;;;;;;;;-1:-1:-1;53557:25:0;;;;;;;;37841:125;;;;;;;;;;-1:-1:-1;37841:125:0;;;;;:::i;:::-;;:::i;54954:88::-;;;;;;;;;;-1:-1:-1;54954:88:0;;;;;:::i;:::-;;:::i;35289:206::-;;;;;;;;;;-1:-1:-1;35289:206:0;;;;;:::i;:::-;;:::i;11730:103::-;;;;;;;;;;;;;:::i;41457:64::-;;;;;;;;;;-1:-1:-1;41457:64:0;;;;;:::i;:::-;41501:6;:12;41457:64;54756:92;;;;;;;;;;-1:-1:-1;54756:92:0;;;;;:::i;:::-;;:::i;55657:275::-;;;;;;;;;;;;;:::i;11079:87::-;;;;;;;;;;-1:-1:-1;11152:6:0;;-1:-1:-1;;;;;11152:6:0;11079:87;;55940:86;;;;;;;;;;-1:-1:-1;55940:86:0;;;;;:::i;:::-;;:::i;38202:104::-;;;;;;;;;;;;;:::i;53238:34::-;;;;;;;;;;;;;;;;53868:676;;;;;;:::i;:::-;;:::i;39812:287::-;;;;;;;;;;-1:-1:-1;39812:287:0;;;;;:::i;:::-;;:::i;55156:69::-;;;;;;;;;;;;;:::i;53279:35::-;;;;;;;;;;;;;;;;40898:369;;;;;;;;;;-1:-1:-1;40898:369:0;;;;;:::i;:::-;;:::i;56034:84::-;;;;;;;;;;-1:-1:-1;56034:84:0;;;;;:::i;:::-;;:::i;53439:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53439:46:0;;;;;56352:349;;;;;;;;;;-1:-1:-1;56352:349:0;;;;;:::i;:::-;;:::i;53145:31::-;;;;;;;;;;;;;;;;40170:164;;;;;;;;;;-1:-1:-1;40170:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40291:25:0;;;40267:4;40291:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40170:164;11988:201;;;;;;;;;;-1:-1:-1;11988:201:0;;;;;:::i;:::-;;:::i;53110:28::-;;;;;;;;;;;;;;;;34920:305;35022:4;-1:-1:-1;;;;;;35059:40:0;;-1:-1:-1;;;35059:40:0;;:105;;-1:-1:-1;;;;;;;35116:48:0;;-1:-1:-1;;;35116:48:0;35059:105;:158;;;-1:-1:-1;;;;;;;;;;23849:40:0;;;35181:36;35039:178;34920:305;-1:-1:-1;;34920:305:0:o;38033:100::-;38087:13;38120:5;38113:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38033:100;:::o;54856:90::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;;;;;;;;;54923:8:::1;:15:::0;54856:90::o;39536:204::-;39604:7;39629:16;39637:7;39629;:16::i;:::-;39624:64;;39654:34;;-1:-1:-1;;;39654:34:0;;;;;;;;;;;39624:64;-1:-1:-1;39708:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39708:24:0;;39536:204::o;39099:371::-;39172:13;39188:24;39204:7;39188:15;:24::i;:::-;39172:40;;39233:5;-1:-1:-1;;;;;39227:11:0;:2;-1:-1:-1;;;;;39227:11:0;;39223:48;;39247:24;;-1:-1:-1;;;39247:24:0;;;;;;;;;;;39223:48;9906:10;-1:-1:-1;;;;;39288:21:0;;;;;;:63;;-1:-1:-1;39314:37:0;39331:5;9906:10;40170:164;:::i;39314:37::-;39313:38;39288:63;39284:138;;;39375:35;;-1:-1:-1;;;39375:35:0;;;;;;;;;;;39284:138;39434:28;39443:2;39447:7;39456:5;39434:8;:28::i;:::-;39161:309;39099:371;;:::o;55344:109::-;-1:-1:-1;;;;;35673:19:0;;55397:7;35673:19;;;:12;:19;;;;;:32;-1:-1:-1;;;35673:32:0;;;;55424:21;35577:137;40401:170;40535:28;40545:4;40551:2;40555:7;40535:9;:28::i;54553:195::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;54653:9:::1;;54642:7;54626:13;55327:1:::0;34423:12;34213:7;34407:13;:28;-1:-1:-1;;34407:46:0;;34169:303;54626:13:::1;:23;;;;:::i;:::-;:36;;54618:79;;;::::0;-1:-1:-1;;;54618:79:0;;6863:2:1;54618:79:0::1;::::0;::::1;6845:21:1::0;6902:2;6882:18;;;6875:30;6941:32;6921:18;;;6914:60;6991:18;;54618:79:0::1;6661:354:1::0;54618:79:0::1;54708:32;9906:10:::0;54732:7:::1;54708:9;:32::i;:::-;54553:195:::0;:::o;40642:185::-;40780:39;40797:4;40803:2;40807:7;40780:39;;;;;;;;;;;;:16;:39::i;56244:100::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;56318:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56244:100:::0;:::o;37841:125::-;37905:7;37932:21;37945:7;37932:12;:21::i;:::-;:26;;37841:125;-1:-1:-1;;37841:125:0:o;54954:88::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;55018:9:::1;:16:::0;54954:88::o;35289:206::-;35353:7;-1:-1:-1;;;;;35377:19:0;;35373:60;;35405:28;;-1:-1:-1;;;35405:28:0;;;;;;;;;;;35373:60;-1:-1:-1;;;;;;35459:19:0;;;;;:12;:19;;;;;:27;;;;35289:206::o;11730:103::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;11795:30:::1;11822:1;11795:18;:30::i;:::-;11730:103::o:0;54756:92::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;54822:11:::1;:18:::0;54756:92::o;55657:275::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;55726:21:::1;55766:11:::0;55758:43:::1;;;::::0;-1:-1:-1;;;55758:43:0;;7222:2:1;55758:43:0::1;::::0;::::1;7204:21:1::0;7261:2;7241:18;;;7234:30;-1:-1:-1;;;7280:18:1;;;7273:49;7339:18;;55758:43:0::1;7020:343:1::0;55758:43:0::1;55814:55;9906:10:::0;55865:3:::1;55855:6;;55849:3;:12;;;;:::i;:::-;55838:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;55814:9;:55::i;:::-;55890:9;::::0;55911:6:::1;::::0;55880:44:::1;::::0;55890:9;;::::1;-1:-1:-1::0;;;;;55890:9:0::1;::::0;55920:3:::1;::::0;55901:16:::1;::::0;:7;:16:::1;:::i;55940:86::-:0;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;56004:5:::1;:14:::0;55940:86::o;38202:104::-;38258:13;38291:7;38284:14;;;;;:::i;53868:676::-;53940:5;;53996:11;;53925:12;;53996:15;;54010:1;53996:15;:::i;:::-;53988:5;53972:13;55327:1;34423:12;34213:7;34407:13;:28;-1:-1:-1;;34407:46:0;;34169:303;53972:13;:21;;;;:::i;:::-;:39;53971:117;;;;-1:-1:-1;54071:16:0;;54048:10;54030:29;;;;:17;:29;;;;;;:37;;54062:5;;54030:37;:::i;:::-;:57;;53971:117;53956:133;;54106:6;54102:47;;;54136:1;54129:8;;54102:47;54170:6;;;;54169:7;54161:36;;;;-1:-1:-1;;;54161:36:0;;8130:2:1;54161:36:0;;;8112:21:1;8169:2;8149:18;;;8142:30;-1:-1:-1;;;8188:18:1;;;8181:46;8244:18;;54161:36:0;7928:340:1;54161:36:0;54229:12;54237:4;54229:5;:12;:::i;:::-;54216:9;:25;;54208:67;;;;-1:-1:-1;;;54208:67:0;;8475:2:1;54208:67:0;;;8457:21:1;8514:2;8494:18;;;8487:30;8553:31;8533:18;;;8526:59;8602:18;;54208:67:0;8273:353:1;54208:67:0;54318:9;;:13;;54330:1;54318:13;:::i;:::-;54310:5;54294:13;55327:1;34423:12;34213:7;34407:13;:28;-1:-1:-1;;34407:46:0;;34169:303;54294:13;:21;;;;:::i;:::-;:37;54286:57;;;;-1:-1:-1;;;54286:57:0;;8833:2:1;54286:57:0;;;8815:21:1;8872:1;8852:18;;;8845:29;-1:-1:-1;;;8890:18:1;;;8883:37;8937:18;;54286:57:0;8631:330:1;54286:57:0;54370:8;;:12;;54381:1;54370:12;:::i;:::-;54362:5;:20;54354:52;;;;-1:-1:-1;;;54354:52:0;;9168:2:1;54354:52:0;;;9150:21:1;9207:2;9187:18;;;9180:30;-1:-1:-1;;;9226:18:1;;;9219:49;9285:18;;54354:52:0;8966:343:1;54354:52:0;54423:6;54419:77;;;54464:10;54446:29;;;;:17;:29;;;;;:38;;54479:5;;54446:29;:38;;54479:5;;54446:38;:::i;:::-;;;;-1:-1:-1;;54419:77:0;54508:28;54518:10;54530:5;54508:9;:28::i;39812:287::-;9906:10;-1:-1:-1;;;;;39911:24:0;;;39907:54;;39944:17;;-1:-1:-1;;;39944:17:0;;;;;;;;;;;39907:54;9906:10;39974:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39974:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39974:53:0;;;;;;;;;;40043:48;;540:41:1;;;39974:42:0;;9906:10;40043:48;;513:18:1;40043:48:0;;;;;;;39812:287;;:::o;55156:69::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;55202:8:::1;:15:::0;;-1:-1:-1;;55202:15:0::1;;;::::0;;55156:69::o;40898:369::-;41065:28;41075:4;41081:2;41085:7;41065:9;:28::i;:::-;-1:-1:-1;;;;;41108:13:0;;14053:19;:23;;41108:76;;;;;41128:56;41159:4;41165:2;41169:7;41178:5;41128:30;:56::i;:::-;41127:57;41108:76;41104:156;;;41208:40;;-1:-1:-1;;;41208:40:0;;;;;;;;;;;41104:156;40898:369;;;;:::o;56034:84::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;56095:6:::1;:15:::0;;-1:-1:-1;;56095:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56034:84::o;56352:349::-;56425:13;56464:16;56472:7;56464;:16::i;:::-;56456:76;;;;-1:-1:-1;;;56456:76:0;;9516:2:1;56456:76:0;;;9498:21:1;9555:2;9535:18;;;9528:30;9594:34;9574:18;;;9567:62;-1:-1:-1;;;9645:18:1;;;9638:45;9700:19;;56456:76:0;9314:411:1;56456:76:0;56547:23;56573;56588:7;56573:14;:23::i;:::-;56547:49;;56640:1;56620:9;56614:23;:27;:79;;;;;;;;;;;;;;;;;56668:9;56651:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;56614:79;56607:86;56352:349;-1:-1:-1;;;56352:349:0:o;11988:201::-;11152:6;;-1:-1:-1;;;;;11152:6:0;9906:10;11299:23;11291:68;;;;-1:-1:-1;;;11291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12077:22:0;::::1;12069:73;;;::::0;-1:-1:-1;;;12069:73:0;;10380:2:1;12069:73:0::1;::::0;::::1;10362:21:1::0;10419:2;10399:18;;;10392:30;10458:34;10438:18;;;10431:62;-1:-1:-1;;;10509:18:1;;;10502:36;10555:19;;12069:73:0::1;10178:402:1::0;12069:73:0::1;12153:28;12172:8;12153:18;:28::i;41776:187::-:0;41833:4;41876:7;55327:1;41857:26;;:53;;;;;41897:13;;41887:7;:23;41857:53;:98;;;;-1:-1:-1;;41928:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41928:27:0;;;;41927:28;;41776:187::o;49946:196::-;50061:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50061:29:0;-1:-1:-1;;;;;50061:29:0;;;;;;;;;50106:28;;50061:24;;50106:28;;;;;;;49946:196;;;:::o;44889:2130::-;45004:35;45042:21;45055:7;45042:12;:21::i;:::-;45004:59;;45102:4;-1:-1:-1;;;;;45080:26:0;:13;:18;;;-1:-1:-1;;;;;45080:26:0;;45076:67;;45115:28;;-1:-1:-1;;;45115:28:0;;;;;;;;;;;45076:67;45156:22;9906:10;-1:-1:-1;;;;;45182:20:0;;;;:73;;-1:-1:-1;45219:36:0;45236:4;9906:10;40170:164;:::i;45219:36::-;45182:126;;;-1:-1:-1;9906:10:0;45272:20;45284:7;45272:11;:20::i;:::-;-1:-1:-1;;;;;45272:36:0;;45182:126;45156:153;;45327:17;45322:66;;45353:35;;-1:-1:-1;;;45353:35:0;;;;;;;;;;;45322:66;-1:-1:-1;;;;;45403:16:0;;45399:52;;45428:23;;-1:-1:-1;;;45428:23:0;;;;;;;;;;;45399:52;45572:35;45589:1;45593:7;45602:4;45572:8;:35::i;:::-;-1:-1:-1;;;;;45903:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45903:31:0;;;;;;;-1:-1:-1;;45903:31:0;;;;;;;45949:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45949:29:0;;;;;;;;;;;46029:20;;;:11;:20;;;;;;46064:18;;-1:-1:-1;;;;;;46097:49:0;;;;-1:-1:-1;;;46130:15:0;46097:49;;;;;;;;;;46420:11;;46480:24;;;;;46523:13;;46029:20;;46480:24;;46523:13;46519:384;;46733:13;;46718:11;:28;46714:174;;46771:20;;46840:28;;;;46814:54;;-1:-1:-1;;;46814:54:0;-1:-1:-1;;;;;;46814:54:0;;;-1:-1:-1;;;;;46771:20:0;;46814:54;;;;46714:174;45878:1036;;;46950:7;46946:2;-1:-1:-1;;;;;46931:27:0;46940:4;-1:-1:-1;;;;;46931:27:0;;;;;;;;;;;46969:42;44993:2026;;44889:2130;;;:::o;41971:104::-;42040:27;42050:2;42054:8;42040:27;;;;;;;;;;;;:9;:27::i;36670:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36781:7:0;;55327:1;36830:23;;:47;;;;;36864:13;;36857:4;:20;36830:47;36826:886;;;36898:31;36932:17;;;:11;:17;;;;;;;;;36898:51;;;;;;;;;-1:-1:-1;;;;;36898:51:0;;;;-1:-1:-1;;;36898:51:0;;;;;;;;;;;-1:-1:-1;;;36898:51:0;;;;;;;;;;;;;;36968:729;;37018:14;;-1:-1:-1;;;;;37018:28:0;;37014:101;;37082:9;36670:1109;-1:-1:-1;;;36670:1109:0:o;37014:101::-;-1:-1:-1;;;37457:6:0;37502:17;;;;:11;:17;;;;;;;;;37490:29;;;;;;;;;-1:-1:-1;;;;;37490:29:0;;;;;-1:-1:-1;;;37490:29:0;;;;;;;;;;;-1:-1:-1;;;37490:29:0;;;;;;;;;;;;;37550:28;37546:109;;37618:9;36670:1109;-1:-1:-1;;;36670:1109:0:o;37546:109::-;37417:261;;;36879:833;36826:886;37740:31;;-1:-1:-1;;;37740:31:0;;;;;;;;;;;12349:191;12442:6;;;-1:-1:-1;;;;;12459:17:0;;;-1:-1:-1;;;;;;12459:17:0;;;;;;;12492:40;;12442:6;;;12459:17;12442:6;;12492:40;;12423:16;;12492:40;12412:128;12349:191;:::o;55461:188::-;55535:12;55553:8;-1:-1:-1;;;;;55553:13:0;55574:7;55553:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55534:52;;;55605:7;55597:44;;;;-1:-1:-1;;;55597:44:0;;10997:2:1;55597:44:0;;;10979:21:1;11036:2;11016:18;;;11009:30;11075:26;11055:18;;;11048:54;11119:18;;55597:44:0;10795:348:1;50634:667:0;50818:72;;-1:-1:-1;;;50818:72:0;;50797:4;;-1:-1:-1;;;;;50818:36:0;;;;;:72;;9906:10;;50869:4;;50875:7;;50884:5;;50818:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50818:72:0;;;;;;;;-1:-1:-1;;50818:72:0;;;;;;;;;;;;:::i;:::-;;;50814:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51052:6;:13;51069:1;51052:18;51048:235;;51098:40;;-1:-1:-1;;;51098:40:0;;;;;;;;;;;51048:235;51241:6;51235:13;51226:6;51222:2;51218:15;51211:38;50814:480;-1:-1:-1;;;;;;50937:55:0;-1:-1:-1;;;50937:55:0;;-1:-1:-1;50814:480:0;50634:667;;;;;;:::o;38377:318::-;38450:13;38481:16;38489:7;38481;:16::i;:::-;38476:59;;38506:29;;-1:-1:-1;;;38506:29:0;;;;;;;;;;;38476:59;38548:21;38572:10;:8;:10::i;:::-;38548:34;;38606:7;38600:21;38625:1;38600:26;:87;;;;;;;;;;;;;;;;;38653:7;38662:18;:7;:16;:18::i;:::-;38636:45;;;;;;;;;:::i;42438:163::-;42561:32;42567:2;42571:8;42581:5;42588:4;42561:5;:32::i;56126:106::-;56186:13;56217:7;56210:14;;;;;:::i;7410:723::-;7466:13;7687:5;7696:1;7687:10;7683:53;;-1:-1:-1;;7714:10:0;;;;;;;;;;;;-1:-1:-1;;;7714:10:0;;;;;7410:723::o;7683:53::-;7761:5;7746:12;7802:78;7809:9;;7802:78;;7835:8;;;;:::i;:::-;;-1:-1:-1;7858:10:0;;-1:-1:-1;7866:2:0;7858:10;;:::i;:::-;;;7802:78;;;7890:19;7922:6;7912:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7912:17:0;;7890:39;;7940:154;7947:10;;7940:154;;7974:11;7984:1;7974:11;;:::i;:::-;;-1:-1:-1;8043:10:0;8051:2;8043:5;:10;:::i;:::-;8030:24;;:2;:24;:::i;:::-;8017:39;;8000:6;8007;8000:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8000:56:0;;;;;;;;-1:-1:-1;8071:11:0;8080:2;8071:11;;:::i;:::-;;;7940:154;;42860:1775;42999:20;43022:13;-1:-1:-1;;;;;43050:16:0;;43046:48;;43075:19;;-1:-1:-1;;;43075:19:0;;;;;;;;;;;43046:48;43109:8;43121:1;43109:13;43105:44;;43131:18;;-1:-1:-1;;;43131:18:0;;;;;;;;;;;43105:44;-1:-1:-1;;;;;43500:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43559:49:0;;43500:44;;;;;;;;43559:49;;;-1:-1:-1;;;;;43500:44:0;;;;;;43559:49;;;;;;;;;;;;;;;;43625:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43675:66:0;;;;-1:-1:-1;;;43725:15:0;43675:66;;;;;;;;;;43625:25;43822:23;;;43866:4;:23;;;;-1:-1:-1;;;;;;43874:13:0;;14053:19;:23;;43874:15;43862:641;;;43910:314;43941:38;;43966:12;;-1:-1:-1;;;;;43941:38:0;;;43958:1;;43941:38;;43958:1;;43941:38;44007:69;44046:1;44050:2;44054:14;;;;;;44070:5;44007:30;:69::i;:::-;44002:174;;44112:40;;-1:-1:-1;;;44112:40:0;;;;;;;;;;;44002:174;44219:3;44203:12;:19;43910:314;;44305:12;44288:13;;:29;44284:43;;44319:8;;;44284:43;43862:641;;;44368:120;44399:40;;44424:14;;;;;-1:-1:-1;;;;;44399:40:0;;;44416:1;;44399:40;;44416:1;;44399:40;44483:3;44467:12;:19;44368:120;;43862:641;-1:-1:-1;44517:13:0;:28;44567:60;40898:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:254;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:35;4513:2;4502:9;4498:18;4482:35;:::i;:::-;4472:45;;4269:254;;;;;:::o;4528:667::-;4623:6;4631;4639;4647;4700:3;4688:9;4679:7;4675:23;4671:33;4668:53;;;4717:1;4714;4707:12;4668:53;4740:29;4759:9;4740:29;:::i;:::-;4730:39;;4788:38;4822:2;4811:9;4807:18;4788:38;:::i;:::-;4778:48;;4873:2;4862:9;4858:18;4845:32;4835:42;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:74;5181:7;5176:2;5163:16;5158:2;5154;5150:11;5115:74;:::i;:::-;5105:84;;;4528:667;;;;;;;:::o;5200:180::-;5256:6;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5348:26;5364:9;5348:26;:::i;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:356::-;6237:2;6219:21;;;6256:18;;;6249:30;6315:34;6310:2;6295:18;;6288:62;6382:2;6367:18;;6035:356::o;6396:127::-;6457:10;6452:3;6448:20;6445:1;6438:31;6488:4;6485:1;6478:15;6512:4;6509:1;6502:15;6528:128;6568:3;6599:1;6595:6;6592:1;6589:13;6586:39;;;6605:18;;:::i;:::-;-1:-1:-1;6641:9:1;;6528:128::o;7368:125::-;7408:4;7436:1;7433;7430:8;7427:34;;;7441:18;;:::i;:::-;-1:-1:-1;7478:9:1;;7368:125::o;7498:168::-;7538:7;7604:1;7600;7596:6;7592:14;7589:1;7586:21;7581:1;7574:9;7567:17;7563:45;7560:71;;;7611:18;;:::i;:::-;-1:-1:-1;7651:9:1;;7498:168::o;7671:127::-;7732:10;7727:3;7723:20;7720:1;7713:31;7763:4;7760:1;7753:15;7787:4;7784:1;7777:15;7803:120;7843:1;7869;7859:35;;7874:18;;:::i;:::-;-1:-1:-1;7908:9:1;;7803:120::o;9730:443::-;9962:3;10000:6;9994:13;10016:53;10062:6;10057:3;10050:4;10042:6;10038:17;10016:53;:::i;:::-;-1:-1:-1;;;10091:16:1;;10116:22;;;-1:-1:-1;10165:1:1;10154:13;;9730:443;-1:-1:-1;9730:443:1:o;11148:489::-;-1:-1:-1;;;;;11417:15:1;;;11399:34;;11469:15;;11464:2;11449:18;;11442:43;11516:2;11501:18;;11494:34;;;11564:3;11559:2;11544:18;;11537:31;;;11342:4;;11585:46;;11611:19;;11603:6;11585:46;:::i;:::-;11577:54;11148:489;-1:-1:-1;;;;;;11148:489:1:o;11642:249::-;11711:6;11764:2;11752:9;11743:7;11739:23;11735:32;11732:52;;;11780:1;11777;11770:12;11732:52;11812:9;11806:16;11831:30;11855:5;11831:30;:::i;11896:470::-;12075:3;12113:6;12107:13;12129:53;12175:6;12170:3;12163:4;12155:6;12151:17;12129:53;:::i;:::-;12245:13;;12204:16;;;;12267:57;12245:13;12204:16;12301:4;12289:17;;12267:57;:::i;:::-;12340:20;;11896:470;-1:-1:-1;;;;11896:470:1:o;12371:135::-;12410:3;12431:17;;;12428:43;;12451:18;;:::i;:::-;-1:-1:-1;12498:1:1;12487:13;;12371:135::o;12511:112::-;12543:1;12569;12559:35;;12574:18;;:::i;:::-;-1:-1:-1;12608:9:1;;12511:112::o;12628:127::-;12689:10;12684:3;12680:20;12677:1;12670:31;12720:4;12717:1;12710:15;12744:4;12741:1;12734:15
Swarm Source
ipfs://fd64c3d23c64db81edcf3d0e0346bcb0f3a35f5a18274d99c0043831b7bd7e43
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.