Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,014 IEWT
Holders
426
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 IEWTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InEthWeTrust
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-22 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/InEthWeTrust.sol pragma solidity ^0.8.11; contract InEthWeTrust is ERC721A, Ownable { uint256 public mintPrice = 0.004878 ether; string _baseTokenURI; bool public isActive = false; uint256 public MAX_SUPPLY = 4878; uint256 public constant MAX_FREE_PER_WALLET = 1; uint256 public maximumAllowedTokensPerPurchase = 10; uint256 public maximumAllowedTokensPerWallet = 10; constructor(string memory baseURI) ERC721A("In Eth We Trust", "IEWT") { setBaseURI(baseURI); } modifier saleIsOpen { require(totalSupply() <= MAX_SUPPLY, "Sale has ended."); _; } function setMaximumAllowedTokens(uint256 _count) public onlyOwner { maximumAllowedTokensPerPurchase = _count; } function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyOwner { maximumAllowedTokensPerWallet = _count; } function setMaxMintSupply(uint256 maxMintSupply) external onlyOwner { MAX_SUPPLY = maxMintSupply; } function setPrice(uint256 _price) public onlyOwner { mintPrice = _price; } function toggleSaleStatus() public onlyOwner { isActive = !isActive; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function mint(uint256 _count) public payable saleIsOpen { uint256 mintIndex = totalSupply(); require(balanceOf(msg.sender) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached."); require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens"); require(isActive, "Sale is not active currently."); require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded."); if(balanceOf(msg.sender) == 0 && _count > 1) { uint256 discountPrice = _count - 1; require(msg.value >= mintPrice * discountPrice, "Insufficient ETH amount sent."); } if(balanceOf(msg.sender) >= 1) { require(msg.value >= mintPrice * _count, "Insufficient ETH amount sent."); } _safeMint(msg.sender, _count); } function withdraw() external onlyOwner { uint balance = address(this).balance; payable(owner()).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","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":[],"name":"mintPrice","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleSaleStatus","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266115483e136e0006009556000600b60006101000a81548160ff02191690831515021790555061130e600c55600a600d55600a600e553480156200004757600080fd5b50604051620032d8380380620032d883398181016040528101906200006d919062000562565b6040518060400160405280600f81526020017f496e2045746820576520547275737400000000000000000000000000000000008152506040518060400160405280600481526020017f49455754000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f192919062000315565b5080600390805190602001906200010a92919062000315565b506200011b6200015b60201b60201c565b600081905550505062000143620001376200016060201b60201c565b6200016860201b60201c565b62000154816200022e60201b60201c565b506200069b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023e6200025a60201b60201c565b80600a90805190602001906200025692919062000315565b5050565b6200026a6200016060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000290620002eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e09062000614565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003239062000665565b90600052602060002090601f01602090048101928262000347576000855562000393565b82601f106200036257805160ff191683800117855562000393565b8280016001018555821562000393579182015b828111156200039257825182559160200191906001019062000375565b5b509050620003a29190620003a6565b5090565b5b80821115620003c1576000816000905550600101620003a7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042e82620003e3565b810181811067ffffffffffffffff8211171562000450576200044f620003f4565b5b80604052505050565b600062000465620003c5565b905062000473828262000423565b919050565b600067ffffffffffffffff821115620004965762000495620003f4565b5b620004a182620003e3565b9050602081019050919050565b60005b83811015620004ce578082015181840152602081019050620004b1565b83811115620004de576000848401525b50505050565b6000620004fb620004f58462000478565b62000459565b9050828152602081018484840111156200051a5762000519620003de565b5b62000527848285620004ae565b509392505050565b600082601f830112620005475762000546620003d9565b5b815162000559848260208601620004e4565b91505092915050565b6000602082840312156200057b576200057a620003cf565b5b600082015167ffffffffffffffff8111156200059c576200059b620003d4565b5b620005aa848285016200052f565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620005fc602083620005b3565b91506200060982620005c4565b602082019050919050565b600060208201905081810360008301526200062f81620005ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200067e57607f821691505b6020821081141562000695576200069462000636565b5b50919050565b612c2d80620006ab6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a0712d6811610095578063cadf881811610064578063cadf881814610663578063e985e9c51461068e578063ea6eb836146106cb578063f2fde38b146106f4576101d8565b8063a0712d68146105b8578063a22cb465146105d4578063b88d4fde146105fd578063c87b56dd14610626576101d8565b806391b7f5ed116100d157806391b7f5ed1461050e57806395d89b411461053757806398710d1e146105625780639a3bf7281461058d576101d8565b806370a0823114610466578063715018a6146104a35780637389fbb7146104ba5780638da5cb5b146104e3576101d8565b806323b872dd1161017a5780634dfea627116101495780634dfea627146103ac57806355f804b3146103d55780636352211e146103fe5780636817c76c1461043b576101d8565b806323b872dd1461031857806332cb6b0c146103415780633ccfd60b1461036c57806342842e0e14610383576101d8565b8063081812fc116101b6578063081812fc1461025c578063095ea7b31461029957806318160ddd146102c257806322f3e2d4146102ed576101d8565b806301ffc9a7146101dd578063049c5c491461021a57806306fdde0314610231575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190611f79565b61071d565b6040516102119190611fc1565b60405180910390f35b34801561022657600080fd5b5061022f6107af565b005b34801561023d57600080fd5b506102466107e3565b6040516102539190612075565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906120cd565b610875565b604051610290919061213b565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612182565b6108f4565b005b3480156102ce57600080fd5b506102d7610a38565b6040516102e491906121d1565b60405180910390f35b3480156102f957600080fd5b50610302610a4f565b60405161030f9190611fc1565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906121ec565b610a62565b005b34801561034d57600080fd5b50610356610d87565b60405161036391906121d1565b60405180910390f35b34801561037857600080fd5b50610381610d8d565b005b34801561038f57600080fd5b506103aa60048036038101906103a591906121ec565b610deb565b005b3480156103b857600080fd5b506103d360048036038101906103ce91906120cd565b610e0b565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612374565b610e1d565b005b34801561040a57600080fd5b50610425600480360381019061042091906120cd565b610e3f565b604051610432919061213b565b60405180910390f35b34801561044757600080fd5b50610450610e51565b60405161045d91906121d1565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906123bd565b610e57565b60405161049a91906121d1565b60405180910390f35b3480156104af57600080fd5b506104b8610f10565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906120cd565b610f24565b005b3480156104ef57600080fd5b506104f8610f36565b604051610505919061213b565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906120cd565b610f60565b005b34801561054357600080fd5b5061054c610f72565b6040516105599190612075565b60405180910390f35b34801561056e57600080fd5b50610577611004565b60405161058491906121d1565b60405180910390f35b34801561059957600080fd5b506105a2611009565b6040516105af91906121d1565b60405180910390f35b6105d260048036038101906105cd91906120cd565b61100f565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612416565b611292565b005b34801561060957600080fd5b50610624600480360381019061061f91906124f7565b61140a565b005b34801561063257600080fd5b5061064d600480360381019061064891906120cd565b61147d565b60405161065a9190612075565b60405180910390f35b34801561066f57600080fd5b5061067861151c565b60405161068591906121d1565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061257a565b611522565b6040516106c29190611fc1565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906120cd565b6115b6565b005b34801561070057600080fd5b5061071b600480360381019061071691906123bd565b6115c8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107b761164c565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6060600280546107f2906125e9565b80601f016020809104026020016040519081016040528092919081815260200182805461081e906125e9565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000610880826116ca565b6108b6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ff82610e3f565b90508073ffffffffffffffffffffffffffffffffffffffff16610920611729565b73ffffffffffffffffffffffffffffffffffffffff16146109835761094c81610947611729565b611522565b610982576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a42611731565b6001546000540303905090565b600b60009054906101000a900460ff1681565b6000610a6d82611736565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae084611804565b91509150610af68187610af1611729565b61182b565b610b4257610b0b86610b06611729565b611522565b610b41576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb6868686600161186f565b8015610bc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8f85610c6b888887611875565b7c02000000000000000000000000000000000000000000000000000000001761189d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d17576000600185019050600060046000838152602001908152602001600020541415610d15576000548114610d14578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7f86868660016118c8565b505050505050565b600c5481565b610d9561164c565b6000479050610da2610f36565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610de7573d6000803e3d6000fd5b5050565b610e068383836040518060200160405280600081525061140a565b505050565b610e1361164c565b80600d8190555050565b610e2561164c565b80600a9080519060200190610e3b929190611e6a565b5050565b6000610e4a82611736565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f1861164c565b610f2260006118ce565b565b610f2c61164c565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6861164c565b8060098190555050565b606060038054610f81906125e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad906125e9565b8015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b600181565b600d5481565b600c5461101a610a38565b111561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290612667565b60405180910390fd5b6000611065610a38565b9050600e548261107433610e57565b61107e91906126b6565b11156110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612758565b60405180910390fd5b600d54821115611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906127c4565b60405180910390fd5b600b60009054906101000a900460ff16611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90612830565b60405180910390fd5b600c54828261116291906126b6565b11156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061289c565b60405180910390fd5b60006111ae33610e57565b1480156111bb5750600182115b156112235760006001836111cf91906128bc565b9050806009546111df91906128f0565b341015611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612996565b60405180910390fd5b505b600161122e33610e57565b10611284578160095461124191906128f0565b341015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90612996565b60405180910390fd5b5b61128e3383611994565b5050565b61129a611729565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061130c611729565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b9611729565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fe9190611fc1565b60405180910390a35050565b611415848484610a62565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461147757611440848484846119b2565b611476576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611488826116ca565b6114be576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114c8611b03565b90506000815114156114e95760405180602001604052806000815250611514565b806114f384611b95565b6040516020016115049291906129f2565b6040516020818303038152906040525b915050919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115be61164c565b80600e8190555050565b6115d061164c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790612a88565b60405180910390fd5b611649816118ce565b50565b611654611bef565b73ffffffffffffffffffffffffffffffffffffffff16611672610f36565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90612af4565b60405180910390fd5b565b6000816116d5611731565b111580156116e4575060005482105b8015611722575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611745611731565b116117cd576000548110156117cc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117ca575b60008114156117c0576004600083600190039350838152602001908152602001600020549050611795565b80925050506117ff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861188c868684611bf7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119ae828260405180602001604052806000815250611c00565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119d8611729565b8786866040518563ffffffff1660e01b81526004016119fa9493929190612b69565b6020604051808303816000875af1925050508015611a3657506040513d601f19601f82011682018060405250810190611a339190612bca565b60015b611ab0573d8060008114611a66576040519150601f19603f3d011682016040523d82523d6000602084013e611a6b565b606091505b50600081511415611aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611b12906125e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3e906125e9565b8015611b8b5780601f10611b6057610100808354040283529160200191611b8b565b820191906000526020600020905b815481529060010190602001808311611b6e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bdb57600183039250600a81066030018353600a81049050611bbb565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611c0a8383611c9d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9857600080549050600083820390505b611c4a60008683806001019450866119b2565b611c80576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c37578160005414611c9557600080fd5b50505b505050565b6000805490506000821415611cde576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ceb600084838561186f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6283611d536000866000611875565b611d5c85611e5a565b1761189d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc8565b506000821415611e3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e5560008483856118c8565b505050565b60006001821460e11b9050919050565b828054611e76906125e9565b90600052602060002090601f016020900481019282611e985760008555611edf565b82601f10611eb157805160ff1916838001178555611edf565b82800160010185558215611edf579182015b82811115611ede578251825591602001919060010190611ec3565b5b509050611eec9190611ef0565b5090565b5b80821115611f09576000816000905550600101611ef1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f5681611f21565b8114611f6157600080fd5b50565b600081359050611f7381611f4d565b92915050565b600060208284031215611f8f57611f8e611f17565b5b6000611f9d84828501611f64565b91505092915050565b60008115159050919050565b611fbb81611fa6565b82525050565b6000602082019050611fd66000830184611fb2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612016578082015181840152602081019050611ffb565b83811115612025576000848401525b50505050565b6000601f19601f8301169050919050565b600061204782611fdc565b6120518185611fe7565b9350612061818560208601611ff8565b61206a8161202b565b840191505092915050565b6000602082019050818103600083015261208f818461203c565b905092915050565b6000819050919050565b6120aa81612097565b81146120b557600080fd5b50565b6000813590506120c7816120a1565b92915050565b6000602082840312156120e3576120e2611f17565b5b60006120f1848285016120b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612125826120fa565b9050919050565b6121358161211a565b82525050565b6000602082019050612150600083018461212c565b92915050565b61215f8161211a565b811461216a57600080fd5b50565b60008135905061217c81612156565b92915050565b6000806040838503121561219957612198611f17565b5b60006121a78582860161216d565b92505060206121b8858286016120b8565b9150509250929050565b6121cb81612097565b82525050565b60006020820190506121e660008301846121c2565b92915050565b60008060006060848603121561220557612204611f17565b5b60006122138682870161216d565b93505060206122248682870161216d565b9250506040612235868287016120b8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122818261202b565b810181811067ffffffffffffffff821117156122a05761229f612249565b5b80604052505050565b60006122b3611f0d565b90506122bf8282612278565b919050565b600067ffffffffffffffff8211156122df576122de612249565b5b6122e88261202b565b9050602081019050919050565b82818337600083830152505050565b6000612317612312846122c4565b6122a9565b90508281526020810184848401111561233357612332612244565b5b61233e8482856122f5565b509392505050565b600082601f83011261235b5761235a61223f565b5b813561236b848260208601612304565b91505092915050565b60006020828403121561238a57612389611f17565b5b600082013567ffffffffffffffff8111156123a8576123a7611f1c565b5b6123b484828501612346565b91505092915050565b6000602082840312156123d3576123d2611f17565b5b60006123e18482850161216d565b91505092915050565b6123f381611fa6565b81146123fe57600080fd5b50565b600081359050612410816123ea565b92915050565b6000806040838503121561242d5761242c611f17565b5b600061243b8582860161216d565b925050602061244c85828601612401565b9150509250929050565b600067ffffffffffffffff82111561247157612470612249565b5b61247a8261202b565b9050602081019050919050565b600061249a61249584612456565b6122a9565b9050828152602081018484840111156124b6576124b5612244565b5b6124c18482856122f5565b509392505050565b600082601f8301126124de576124dd61223f565b5b81356124ee848260208601612487565b91505092915050565b6000806000806080858703121561251157612510611f17565b5b600061251f8782880161216d565b94505060206125308782880161216d565b9350506040612541878288016120b8565b925050606085013567ffffffffffffffff81111561256257612561611f1c565b5b61256e878288016124c9565b91505092959194509250565b6000806040838503121561259157612590611f17565b5b600061259f8582860161216d565b92505060206125b08582860161216d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260157607f821691505b60208210811415612615576126146125ba565b5b50919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612651600f83611fe7565b915061265c8261261b565b602082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126c182612097565b91506126cc83612097565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561270157612700612687565b5b828201905092915050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b6000612742601883611fe7565b915061274d8261270c565b602082019050919050565b6000602082019050818103600083015261277181612735565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006127ae601e83611fe7565b91506127b982612778565b602082019050919050565b600060208201905081810360008301526127dd816127a1565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061281a601d83611fe7565b9150612825826127e4565b602082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612886601683611fe7565b915061289182612850565b602082019050919050565b600060208201905081810360008301526128b581612879565b9050919050565b60006128c782612097565b91506128d283612097565b9250828210156128e5576128e4612687565b5b828203905092915050565b60006128fb82612097565b915061290683612097565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561293f5761293e612687565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612980601d83611fe7565b915061298b8261294a565b602082019050919050565b600060208201905081810360008301526129af81612973565b9050919050565b600081905092915050565b60006129cc82611fdc565b6129d681856129b6565b93506129e6818560208601611ff8565b80840191505092915050565b60006129fe82856129c1565b9150612a0a82846129c1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a72602683611fe7565b9150612a7d82612a16565b604082019050919050565b60006020820190508181036000830152612aa181612a65565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ade602083611fe7565b9150612ae982612aa8565b602082019050919050565b60006020820190508181036000830152612b0d81612ad1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612b3b82612b14565b612b458185612b1f565b9350612b55818560208601611ff8565b612b5e8161202b565b840191505092915050565b6000608082019050612b7e600083018761212c565b612b8b602083018661212c565b612b9860408301856121c2565b8181036060830152612baa8184612b30565b905095945050505050565b600081519050612bc481611f4d565b92915050565b600060208284031215612be057612bdf611f17565b5b6000612bee84828501612bb5565b9150509291505056fea26469706673582212200a50231e2b2d6deaba2295879965b947b117ef9fcaa606b7828d896050f88ebe64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063a0712d6811610095578063cadf881811610064578063cadf881814610663578063e985e9c51461068e578063ea6eb836146106cb578063f2fde38b146106f4576101d8565b8063a0712d68146105b8578063a22cb465146105d4578063b88d4fde146105fd578063c87b56dd14610626576101d8565b806391b7f5ed116100d157806391b7f5ed1461050e57806395d89b411461053757806398710d1e146105625780639a3bf7281461058d576101d8565b806370a0823114610466578063715018a6146104a35780637389fbb7146104ba5780638da5cb5b146104e3576101d8565b806323b872dd1161017a5780634dfea627116101495780634dfea627146103ac57806355f804b3146103d55780636352211e146103fe5780636817c76c1461043b576101d8565b806323b872dd1461031857806332cb6b0c146103415780633ccfd60b1461036c57806342842e0e14610383576101d8565b8063081812fc116101b6578063081812fc1461025c578063095ea7b31461029957806318160ddd146102c257806322f3e2d4146102ed576101d8565b806301ffc9a7146101dd578063049c5c491461021a57806306fdde0314610231575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190611f79565b61071d565b6040516102119190611fc1565b60405180910390f35b34801561022657600080fd5b5061022f6107af565b005b34801561023d57600080fd5b506102466107e3565b6040516102539190612075565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906120cd565b610875565b604051610290919061213b565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612182565b6108f4565b005b3480156102ce57600080fd5b506102d7610a38565b6040516102e491906121d1565b60405180910390f35b3480156102f957600080fd5b50610302610a4f565b60405161030f9190611fc1565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906121ec565b610a62565b005b34801561034d57600080fd5b50610356610d87565b60405161036391906121d1565b60405180910390f35b34801561037857600080fd5b50610381610d8d565b005b34801561038f57600080fd5b506103aa60048036038101906103a591906121ec565b610deb565b005b3480156103b857600080fd5b506103d360048036038101906103ce91906120cd565b610e0b565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612374565b610e1d565b005b34801561040a57600080fd5b50610425600480360381019061042091906120cd565b610e3f565b604051610432919061213b565b60405180910390f35b34801561044757600080fd5b50610450610e51565b60405161045d91906121d1565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906123bd565b610e57565b60405161049a91906121d1565b60405180910390f35b3480156104af57600080fd5b506104b8610f10565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906120cd565b610f24565b005b3480156104ef57600080fd5b506104f8610f36565b604051610505919061213b565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906120cd565b610f60565b005b34801561054357600080fd5b5061054c610f72565b6040516105599190612075565b60405180910390f35b34801561056e57600080fd5b50610577611004565b60405161058491906121d1565b60405180910390f35b34801561059957600080fd5b506105a2611009565b6040516105af91906121d1565b60405180910390f35b6105d260048036038101906105cd91906120cd565b61100f565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612416565b611292565b005b34801561060957600080fd5b50610624600480360381019061061f91906124f7565b61140a565b005b34801561063257600080fd5b5061064d600480360381019061064891906120cd565b61147d565b60405161065a9190612075565b60405180910390f35b34801561066f57600080fd5b5061067861151c565b60405161068591906121d1565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061257a565b611522565b6040516106c29190611fc1565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906120cd565b6115b6565b005b34801561070057600080fd5b5061071b600480360381019061071691906123bd565b6115c8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107b761164c565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6060600280546107f2906125e9565b80601f016020809104026020016040519081016040528092919081815260200182805461081e906125e9565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000610880826116ca565b6108b6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ff82610e3f565b90508073ffffffffffffffffffffffffffffffffffffffff16610920611729565b73ffffffffffffffffffffffffffffffffffffffff16146109835761094c81610947611729565b611522565b610982576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a42611731565b6001546000540303905090565b600b60009054906101000a900460ff1681565b6000610a6d82611736565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae084611804565b91509150610af68187610af1611729565b61182b565b610b4257610b0b86610b06611729565b611522565b610b41576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb6868686600161186f565b8015610bc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8f85610c6b888887611875565b7c02000000000000000000000000000000000000000000000000000000001761189d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d17576000600185019050600060046000838152602001908152602001600020541415610d15576000548114610d14578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7f86868660016118c8565b505050505050565b600c5481565b610d9561164c565b6000479050610da2610f36565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610de7573d6000803e3d6000fd5b5050565b610e068383836040518060200160405280600081525061140a565b505050565b610e1361164c565b80600d8190555050565b610e2561164c565b80600a9080519060200190610e3b929190611e6a565b5050565b6000610e4a82611736565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f1861164c565b610f2260006118ce565b565b610f2c61164c565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6861164c565b8060098190555050565b606060038054610f81906125e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad906125e9565b8015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b600181565b600d5481565b600c5461101a610a38565b111561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290612667565b60405180910390fd5b6000611065610a38565b9050600e548261107433610e57565b61107e91906126b6565b11156110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612758565b60405180910390fd5b600d54821115611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906127c4565b60405180910390fd5b600b60009054906101000a900460ff16611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90612830565b60405180910390fd5b600c54828261116291906126b6565b11156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061289c565b60405180910390fd5b60006111ae33610e57565b1480156111bb5750600182115b156112235760006001836111cf91906128bc565b9050806009546111df91906128f0565b341015611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612996565b60405180910390fd5b505b600161122e33610e57565b10611284578160095461124191906128f0565b341015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90612996565b60405180910390fd5b5b61128e3383611994565b5050565b61129a611729565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061130c611729565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b9611729565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fe9190611fc1565b60405180910390a35050565b611415848484610a62565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461147757611440848484846119b2565b611476576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611488826116ca565b6114be576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114c8611b03565b90506000815114156114e95760405180602001604052806000815250611514565b806114f384611b95565b6040516020016115049291906129f2565b6040516020818303038152906040525b915050919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115be61164c565b80600e8190555050565b6115d061164c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790612a88565b60405180910390fd5b611649816118ce565b50565b611654611bef565b73ffffffffffffffffffffffffffffffffffffffff16611672610f36565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90612af4565b60405180910390fd5b565b6000816116d5611731565b111580156116e4575060005482105b8015611722575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611745611731565b116117cd576000548110156117cc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117ca575b60008114156117c0576004600083600190039350838152602001908152602001600020549050611795565b80925050506117ff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861188c868684611bf7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119ae828260405180602001604052806000815250611c00565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119d8611729565b8786866040518563ffffffff1660e01b81526004016119fa9493929190612b69565b6020604051808303816000875af1925050508015611a3657506040513d601f19601f82011682018060405250810190611a339190612bca565b60015b611ab0573d8060008114611a66576040519150601f19603f3d011682016040523d82523d6000602084013e611a6b565b606091505b50600081511415611aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611b12906125e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3e906125e9565b8015611b8b5780601f10611b6057610100808354040283529160200191611b8b565b820191906000526020600020905b815481529060010190602001808311611b6e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bdb57600183039250600a81066030018353600a81049050611bbb565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611c0a8383611c9d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9857600080549050600083820390505b611c4a60008683806001019450866119b2565b611c80576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c37578160005414611c9557600080fd5b50505b505050565b6000805490506000821415611cde576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ceb600084838561186f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6283611d536000866000611875565b611d5c85611e5a565b1761189d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc8565b506000821415611e3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e5560008483856118c8565b505050565b60006001821460e11b9050919050565b828054611e76906125e9565b90600052602060002090601f016020900481019282611e985760008555611edf565b82601f10611eb157805160ff1916838001178555611edf565b82800160010185558215611edf579182015b82811115611ede578251825591602001919060010190611ec3565b5b509050611eec9190611ef0565b5090565b5b80821115611f09576000816000905550600101611ef1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f5681611f21565b8114611f6157600080fd5b50565b600081359050611f7381611f4d565b92915050565b600060208284031215611f8f57611f8e611f17565b5b6000611f9d84828501611f64565b91505092915050565b60008115159050919050565b611fbb81611fa6565b82525050565b6000602082019050611fd66000830184611fb2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612016578082015181840152602081019050611ffb565b83811115612025576000848401525b50505050565b6000601f19601f8301169050919050565b600061204782611fdc565b6120518185611fe7565b9350612061818560208601611ff8565b61206a8161202b565b840191505092915050565b6000602082019050818103600083015261208f818461203c565b905092915050565b6000819050919050565b6120aa81612097565b81146120b557600080fd5b50565b6000813590506120c7816120a1565b92915050565b6000602082840312156120e3576120e2611f17565b5b60006120f1848285016120b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612125826120fa565b9050919050565b6121358161211a565b82525050565b6000602082019050612150600083018461212c565b92915050565b61215f8161211a565b811461216a57600080fd5b50565b60008135905061217c81612156565b92915050565b6000806040838503121561219957612198611f17565b5b60006121a78582860161216d565b92505060206121b8858286016120b8565b9150509250929050565b6121cb81612097565b82525050565b60006020820190506121e660008301846121c2565b92915050565b60008060006060848603121561220557612204611f17565b5b60006122138682870161216d565b93505060206122248682870161216d565b9250506040612235868287016120b8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122818261202b565b810181811067ffffffffffffffff821117156122a05761229f612249565b5b80604052505050565b60006122b3611f0d565b90506122bf8282612278565b919050565b600067ffffffffffffffff8211156122df576122de612249565b5b6122e88261202b565b9050602081019050919050565b82818337600083830152505050565b6000612317612312846122c4565b6122a9565b90508281526020810184848401111561233357612332612244565b5b61233e8482856122f5565b509392505050565b600082601f83011261235b5761235a61223f565b5b813561236b848260208601612304565b91505092915050565b60006020828403121561238a57612389611f17565b5b600082013567ffffffffffffffff8111156123a8576123a7611f1c565b5b6123b484828501612346565b91505092915050565b6000602082840312156123d3576123d2611f17565b5b60006123e18482850161216d565b91505092915050565b6123f381611fa6565b81146123fe57600080fd5b50565b600081359050612410816123ea565b92915050565b6000806040838503121561242d5761242c611f17565b5b600061243b8582860161216d565b925050602061244c85828601612401565b9150509250929050565b600067ffffffffffffffff82111561247157612470612249565b5b61247a8261202b565b9050602081019050919050565b600061249a61249584612456565b6122a9565b9050828152602081018484840111156124b6576124b5612244565b5b6124c18482856122f5565b509392505050565b600082601f8301126124de576124dd61223f565b5b81356124ee848260208601612487565b91505092915050565b6000806000806080858703121561251157612510611f17565b5b600061251f8782880161216d565b94505060206125308782880161216d565b9350506040612541878288016120b8565b925050606085013567ffffffffffffffff81111561256257612561611f1c565b5b61256e878288016124c9565b91505092959194509250565b6000806040838503121561259157612590611f17565b5b600061259f8582860161216d565b92505060206125b08582860161216d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260157607f821691505b60208210811415612615576126146125ba565b5b50919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612651600f83611fe7565b915061265c8261261b565b602082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126c182612097565b91506126cc83612097565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561270157612700612687565b5b828201905092915050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b6000612742601883611fe7565b915061274d8261270c565b602082019050919050565b6000602082019050818103600083015261277181612735565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006127ae601e83611fe7565b91506127b982612778565b602082019050919050565b600060208201905081810360008301526127dd816127a1565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061281a601d83611fe7565b9150612825826127e4565b602082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612886601683611fe7565b915061289182612850565b602082019050919050565b600060208201905081810360008301526128b581612879565b9050919050565b60006128c782612097565b91506128d283612097565b9250828210156128e5576128e4612687565b5b828203905092915050565b60006128fb82612097565b915061290683612097565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561293f5761293e612687565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612980601d83611fe7565b915061298b8261294a565b602082019050919050565b600060208201905081810360008301526129af81612973565b9050919050565b600081905092915050565b60006129cc82611fdc565b6129d681856129b6565b93506129e6818560208601611ff8565b80840191505092915050565b60006129fe82856129c1565b9150612a0a82846129c1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a72602683611fe7565b9150612a7d82612a16565b604082019050919050565b60006020820190508181036000830152612aa181612a65565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ade602083611fe7565b9150612ae982612aa8565b602082019050919050565b60006020820190508181036000830152612b0d81612ad1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612b3b82612b14565b612b458185612b1f565b9350612b55818560208601611ff8565b612b5e8161202b565b840191505092915050565b6000608082019050612b7e600083018761212c565b612b8b602083018661212c565b612b9860408301856121c2565b8181036060830152612baa8184612b30565b905095945050505050565b600081519050612bc481611f4d565b92915050565b600060208284031215612be057612bdf611f17565b5b6000612bee84828501612bb5565b9150509291505056fea26469706673582212200a50231e2b2d6deaba2295879965b947b117ef9fcaa606b7828d896050f88ebe64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
54913:2282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22028:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55948:78;;;;;;;;;;;;;:::i;:::-;;22930:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18681:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55039:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33120:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55074:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57063:129;;;;;;;;;;;;;:::i;:::-;;36033:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55485:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56032:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24323:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54964:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19865:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;55744:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55860:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23106:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55111:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55163:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56250:807;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29971:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36816:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23316:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55219:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30436:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55612:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22028:639;22113:4;22452:10;22437:25;;:11;:25;;;;:102;;;;22529:10;22514:25;;:11;:25;;;;22437:102;:179;;;;22606:10;22591:25;;:11;:25;;;;22437:179;22417:199;;22028:639;;;:::o;55948:78::-;2014:13;:11;:13::i;:::-;56012:8:::1;;;;;;;;;;;56011:9;56000:8;;:20;;;;;;;;;;;;;;;;;;55948:78::o:0;22930:100::-;22984:13;23017:5;23010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:100;:::o;29413:218::-;29489:7;29514:16;29522:7;29514;:16::i;:::-;29509:64;;29539:34;;;;;;;;;;;;;;29509:64;29593:15;:24;29609:7;29593:24;;;;;;;;;;;:30;;;;;;;;;;;;29586:37;;29413:218;;;:::o;28854:400::-;28935:13;28951:16;28959:7;28951;:16::i;:::-;28935:32;;29007:5;28984:28;;:19;:17;:19::i;:::-;:28;;;28980:175;;29032:44;29049:5;29056:19;:17;:19::i;:::-;29032:16;:44::i;:::-;29027:128;;29104:35;;;;;;;;;;;;;;29027:128;28980:175;29200:2;29167:15;:24;29183:7;29167:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29238:7;29234:2;29218:28;;29227:5;29218:28;;;;;;;;;;;;28924:330;28854:400;;:::o;18681:323::-;18742:7;18970:15;:13;:15::i;:::-;18955:12;;18939:13;;:28;:46;18932:53;;18681:323;:::o;55039:28::-;;;;;;;;;;;;;:::o;33120:2817::-;33254:27;33284;33303:7;33284:18;:27::i;:::-;33254:57;;33369:4;33328:45;;33344:19;33328:45;;;33324:86;;33382:28;;;;;;;;;;;;;;33324:86;33424:27;33453:23;33480:35;33507:7;33480:26;:35::i;:::-;33423:92;;;;33615:68;33640:15;33657:4;33663:19;:17;:19::i;:::-;33615:24;:68::i;:::-;33610:180;;33703:43;33720:4;33726:19;:17;:19::i;:::-;33703:16;:43::i;:::-;33698:92;;33755:35;;;;;;;;;;;;;;33698:92;33610:180;33821:1;33807:16;;:2;:16;;;33803:52;;;33832:23;;;;;;;;;;;;;;33803:52;33868:43;33890:4;33896:2;33900:7;33909:1;33868:21;:43::i;:::-;34004:15;34001:160;;;34144:1;34123:19;34116:30;34001:160;34541:18;:24;34560:4;34541:24;;;;;;;;;;;;;;;;34539:26;;;;;;;;;;;;34610:18;:22;34629:2;34610:22;;;;;;;;;;;;;;;;34608:24;;;;;;;;;;;34932:146;34969:2;35018:45;35033:4;35039:2;35043:19;35018:14;:45::i;:::-;15080:8;34990:73;34932:18;:146::i;:::-;34903:17;:26;34921:7;34903:26;;;;;;;;;;;:175;;;;35249:1;15080:8;35198:19;:47;:52;35194:627;;;35271:19;35303:1;35293:7;:11;35271:33;;35460:1;35426:17;:30;35444:11;35426:30;;;;;;;;;;;;:35;35422:384;;;35564:13;;35549:11;:28;35545:242;;35744:19;35711:17;:30;35729:11;35711:30;;;;;;;;;;;:52;;;;35545:242;35422:384;35252:569;35194:627;35868:7;35864:2;35849:27;;35858:4;35849:27;;;;;;;;;;;;35887:42;35908:4;35914:2;35918:7;35927:1;35887:20;:42::i;:::-;33243:2694;;;33120:2817;;;:::o;55074:32::-;;;;:::o;57063:129::-;2014:13;:11;:13::i;:::-;57109:12:::1;57124:21;57109:36;;57160:7;:5;:7::i;:::-;57152:25;;:34;57178:7;57152:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57102:90;57063:129::o:0;36033:185::-;36171:39;36188:4;36194:2;36198:7;36171:39;;;;;;;;;;;;:16;:39::i;:::-;36033:185;;;:::o;55485:119::-;2014:13;:11;:13::i;:::-;55592:6:::1;55558:31;:40;;;;55485:119:::0;:::o;56032:96::-;2014:13;:11;:13::i;:::-;56115:7:::1;56099:13;:23;;;;;;;;;;;;:::i;:::-;;56032:96:::0;:::o;24323:152::-;24395:7;24438:27;24457:7;24438:18;:27::i;:::-;24415:52;;24323:152;;;:::o;54964:41::-;;;;:::o;19865:233::-;19937:7;19978:1;19961:19;;:5;:19;;;19957:60;;;19989:28;;;;;;;;;;;;;;19957:60;14024:13;20035:18;:25;20054:5;20035:25;;;;;;;;;;;;;;;;:55;20028:62;;19865:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;55744:108::-;2014:13;:11;:13::i;:::-;55833::::1;55820:10;:26;;;;55744:108:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;55860:82::-;2014:13;:11;:13::i;:::-;55930:6:::1;55918:9;:18;;;;55860:82:::0;:::o;23106:104::-;23162:13;23195:7;23188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23106:104;:::o;55111:47::-;55157:1;55111:47;:::o;55163:51::-;;;;:::o;56250:807::-;55435:10;;55418:13;:11;:13::i;:::-;:27;;55410:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56313:17:::1;56333:13;:11;:13::i;:::-;56313:33;;56401:29;;56391:6;56367:21;56377:10;56367:9;:21::i;:::-;:30;;;;:::i;:::-;:63;;56359:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;56485:31;;56475:6;:41;;56466:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56566:8;;;;;;;;;;;56558:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;56645:10;;56635:6;56623:9;:18;;;;:::i;:::-;:32;;56615:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;56719:1;56694:21;56704:10;56694:9;:21::i;:::-;:26;:40;;;;;56733:1;56724:6;:10;56694:40;56691:189;;;56747:21;56780:1;56771:6;:10;;;;:::i;:::-;56747:34;;56825:13;56813:9;;:25;;;;:::i;:::-;56800:9;:38;;56792:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;56736:144;56691:189;56918:1;56893:21;56903:10;56893:9;:21::i;:::-;:26;56890:121;;56963:6;56951:9;;:18;;;;:::i;:::-;56938:9;:31;;56930:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56890:121;57022:29;57032:10;57044:6;57022:9;:29::i;:::-;56306:751;56250:807:::0;:::o;29971:308::-;30082:19;:17;:19::i;:::-;30070:31;;:8;:31;;;30066:61;;;30110:17;;;;;;;;;;;;;;30066:61;30192:8;30140:18;:39;30159:19;:17;:19::i;:::-;30140:39;;;;;;;;;;;;;;;:49;30180:8;30140:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30252:8;30216:55;;30231:19;:17;:19::i;:::-;30216:55;;;30262:8;30216:55;;;;;;:::i;:::-;;;;;;;;29971:308;;:::o;36816:399::-;36983:31;36996:4;37002:2;37006:7;36983:12;:31::i;:::-;37047:1;37029:2;:14;;;:19;37025:183;;37068:56;37099:4;37105:2;37109:7;37118:5;37068:30;:56::i;:::-;37063:145;;37152:40;;;;;;;;;;;;;;37063:145;37025:183;36816:399;;;;:::o;23316:318::-;23389:13;23420:16;23428:7;23420;:16::i;:::-;23415:59;;23445:29;;;;;;;;;;;;;;23415:59;23487:21;23511:10;:8;:10::i;:::-;23487:34;;23564:1;23545:7;23539:21;:26;;:87;;;;;;;;;;;;;;;;;23592:7;23601:18;23611:7;23601:9;:18::i;:::-;23575:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23539:87;23532:94;;;23316:318;;;:::o;55219:49::-;;;;:::o;30436:164::-;30533:4;30557:18;:25;30576:5;30557:25;;;;;;;;;;;;;;;:35;30583:8;30557:35;;;;;;;;;;;;;;;;;;;;;;;;;30550:42;;30436:164;;;;:::o;55612:126::-;2014:13;:11;:13::i;:::-;55726:6:::1;55694:29;:38;;;;55612:126:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;30858:282::-;30923:4;30979:7;30960:15;:13;:15::i;:::-;:26;;:66;;;;;31013:13;;31003:7;:23;30960:66;:153;;;;;31112:1;14800:8;31064:17;:26;31082:7;31064:26;;;;;;;;;;;;:44;:49;30960:153;30940:173;;30858:282;;;:::o;52624:105::-;52684:7;52711:10;52704:17;;52624:105;:::o;18197:92::-;18253:7;18197:92;:::o;25478:1275::-;25545:7;25565:12;25580:7;25565:22;;25648:4;25629:15;:13;:15::i;:::-;:23;25625:1061;;25682:13;;25675:4;:20;25671:1015;;;25720:14;25737:17;:23;25755:4;25737:23;;;;;;;;;;;;25720:40;;25854:1;14800:8;25826:6;:24;:29;25822:845;;;26491:113;26508:1;26498:6;:11;26491:113;;;26551:17;:25;26569:6;;;;;;;26551:25;;;;;;;;;;;;26542:34;;26491:113;;;26637:6;26630:13;;;;;;25822:845;25697:989;25671:1015;25625:1061;26714:31;;;;;;;;;;;;;;25478:1275;;;;:::o;32021:479::-;32123:27;32152:23;32193:38;32234:15;:24;32250:7;32234:24;;;;;;;;;;;32193:65;;32405:18;32382:41;;32462:19;32456:26;32437:45;;32367:126;32021:479;;;:::o;31249:659::-;31398:11;31563:16;31556:5;31552:28;31543:37;;31723:16;31712:9;31708:32;31695:45;;31873:15;31862:9;31859:30;31851:5;31840:9;31837:20;31834:56;31824:66;;31249:659;;;;;:::o;37877:159::-;;;;;:::o;51933:311::-;52068:7;52088:16;15204:3;52114:19;:41;;52088:68;;15204:3;52182:31;52193:4;52199:2;52203:9;52182:10;:31::i;:::-;52174:40;;:62;;52167:69;;;51933:311;;;;;:::o;27301:450::-;27381:14;27549:16;27542:5;27538:28;27529:37;;27726:5;27712:11;27687:23;27683:41;27680:52;27673:5;27670:63;27660:73;;27301:450;;;;:::o;38701:158::-;;;;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;46456:112::-;46533:27;46543:2;46547:8;46533:27;;;;;;;;;;;;:9;:27::i;:::-;46456:112;;:::o;39299:716::-;39462:4;39508:2;39483:45;;;39529:19;:17;:19::i;:::-;39550:4;39556:7;39565:5;39483:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39783:1;39766:6;:13;:18;39762:235;;;39812:40;;;;;;;;;;;;;;39762:235;39955:6;39949:13;39940:6;39936:2;39932:15;39925:38;39479:529;39652:54;;;39642:64;;;:6;:64;;;;39635:71;;;39299:716;;;;;;:::o;56136:108::-;56196:13;56225;56218:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56136:108;:::o;52831:2002::-;52896:17;53315:3;53308:4;53302:11;53298:21;53291:28;;53406:3;53400:4;53393:17;53512:3;53968:5;54098:1;54093:3;54089:11;54082:18;;54269:2;54263:4;54259:13;54255:2;54251:22;54246:3;54238:36;54310:2;54304:4;54300:13;54292:21;;53860:731;54329:4;53860:731;;;54520:1;54515:3;54511:11;54504:18;;54571:2;54565:4;54561:13;54557:2;54553:22;54548:3;54540:36;54424:2;54418:4;54414:13;54406:21;;53860:731;;;53864:464;54630:3;54625;54621:13;54745:2;54740:3;54736:12;54729:19;;54808:6;54803:3;54796:19;52935:1891;;52831:2002;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;51634:147::-;51771:6;51634:147;;;;;:::o;45683:689::-;45814:19;45820:2;45824:8;45814:5;:19::i;:::-;45893:1;45875:2;:14;;;:19;45871:483;;45915:11;45929:13;;45915:27;;45961:13;45983:8;45977:3;:14;45961:30;;46010:233;46041:62;46080:1;46084:2;46088:7;;;;;;46097:5;46041:30;:62::i;:::-;46036:167;;46139:40;;;;;;;;;;;;;;46036:167;46238:3;46230:5;:11;46010:233;;46325:3;46308:13;;:20;46304:34;;46330:8;;;46304:34;45896:458;;45871:483;45683:689;;;:::o;40477:2454::-;40550:20;40573:13;;40550:36;;40613:1;40601:8;:13;40597:44;;;40623:18;;;;;;;;;;;;;;40597:44;40654:61;40684:1;40688:2;40692:12;40706:8;40654:21;:61::i;:::-;41198:1;14162:2;41168:1;:26;;41167:32;41155:8;:45;41129:18;:22;41148:2;41129:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41477:139;41514:2;41568:33;41591:1;41595:2;41599:1;41568:14;:33::i;:::-;41535:30;41556:8;41535:20;:30::i;:::-;:66;41477:18;:139::i;:::-;41443:17;:31;41461:12;41443:31;;;;;;;;;;;:173;;;;41633:16;41664:11;41693:8;41678:12;:23;41664:37;;41948:16;41944:2;41940:25;41928:37;;42320:12;42280:8;42239:1;42177:25;42118:1;42057;42030:335;42445:1;42431:12;42427:20;42385:346;42486:3;42477:7;42474:16;42385:346;;42704:7;42694:8;42691:1;42664:25;42661:1;42658;42653:59;42539:1;42530:7;42526:15;42515:26;;42385:346;;;42389:77;42776:1;42764:8;:13;42760:45;;;42786:19;;;;;;;;;;;;;;42760:45;42838:3;42822:13;:19;;;;40903:1950;;42863:60;42892:1;42896:2;42900:12;42914:8;42863:20;:60::i;:::-;40539:2392;40477:2454;;:::o;27853:324::-;27923:14;28156:1;28146:8;28143:15;28117:24;28113:46;28103:56;;27853:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:165::-;12773:17;12769:1;12761:6;12757:14;12750:41;12633:165;:::o;12804:366::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:419::-;13342:4;13380:2;13369:9;13365:18;13357:26;;13429:9;13423:4;13419:20;13415:1;13404:9;13400:17;13393:47;13457:131;13583:4;13457:131;:::i;:::-;13449:139;;13176:419;;;:::o;13601:180::-;13649:77;13646:1;13639:88;13746:4;13743:1;13736:15;13770:4;13767:1;13760:15;13787:305;13827:3;13846:20;13864:1;13846:20;:::i;:::-;13841:25;;13880:20;13898:1;13880:20;:::i;:::-;13875:25;;14034:1;13966:66;13962:74;13959:1;13956:81;13953:107;;;14040:18;;:::i;:::-;13953:107;14084:1;14081;14077:9;14070:16;;13787:305;;;;:::o;14098:174::-;14238:26;14234:1;14226:6;14222:14;14215:50;14098:174;:::o;14278:366::-;14420:3;14441:67;14505:2;14500:3;14441:67;:::i;:::-;14434:74;;14517:93;14606:3;14517:93;:::i;:::-;14635:2;14630:3;14626:12;14619:19;;14278:366;;;:::o;14650:419::-;14816:4;14854:2;14843:9;14839:18;14831:26;;14903:9;14897:4;14893:20;14889:1;14878:9;14874:17;14867:47;14931:131;15057:4;14931:131;:::i;:::-;14923:139;;14650:419;;;:::o;15075:180::-;15215:32;15211:1;15203:6;15199:14;15192:56;15075:180;:::o;15261:366::-;15403:3;15424:67;15488:2;15483:3;15424:67;:::i;:::-;15417:74;;15500:93;15589:3;15500:93;:::i;:::-;15618:2;15613:3;15609:12;15602:19;;15261:366;;;:::o;15633:419::-;15799:4;15837:2;15826:9;15822:18;15814:26;;15886:9;15880:4;15876:20;15872:1;15861:9;15857:17;15850:47;15914:131;16040:4;15914:131;:::i;:::-;15906:139;;15633:419;;;:::o;16058:179::-;16198:31;16194:1;16186:6;16182:14;16175:55;16058:179;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:172::-;17180:24;17176:1;17168:6;17164:14;17157:48;17040:172;:::o;17218:366::-;17360:3;17381:67;17445:2;17440:3;17381:67;:::i;:::-;17374:74;;17457:93;17546:3;17457:93;:::i;:::-;17575:2;17570:3;17566:12;17559:19;;17218:366;;;:::o;17590:419::-;17756:4;17794:2;17783:9;17779:18;17771:26;;17843:9;17837:4;17833:20;17829:1;17818:9;17814:17;17807:47;17871:131;17997:4;17871:131;:::i;:::-;17863:139;;17590:419;;;:::o;18015:191::-;18055:4;18075:20;18093:1;18075:20;:::i;:::-;18070:25;;18109:20;18127:1;18109:20;:::i;:::-;18104:25;;18148:1;18145;18142:8;18139:34;;;18153:18;;:::i;:::-;18139:34;18198:1;18195;18191:9;18183:17;;18015:191;;;;:::o;18212:348::-;18252:7;18275:20;18293:1;18275:20;:::i;:::-;18270:25;;18309:20;18327:1;18309:20;:::i;:::-;18304:25;;18497:1;18429:66;18425:74;18422:1;18419:81;18414:1;18407:9;18400:17;18396:105;18393:131;;;18504:18;;:::i;:::-;18393:131;18552:1;18549;18545:9;18534:20;;18212:348;;;;:::o;18566:179::-;18706:31;18702:1;18694:6;18690:14;18683:55;18566:179;:::o;18751:366::-;18893:3;18914:67;18978:2;18973:3;18914:67;:::i;:::-;18907:74;;18990:93;19079:3;18990:93;:::i;:::-;19108:2;19103:3;19099:12;19092:19;;18751:366;;;:::o;19123:419::-;19289:4;19327:2;19316:9;19312:18;19304:26;;19376:9;19370:4;19366:20;19362:1;19351:9;19347:17;19340:47;19404:131;19530:4;19404:131;:::i;:::-;19396:139;;19123:419;;;:::o;19548:148::-;19650:11;19687:3;19672:18;;19548:148;;;;:::o;19702:377::-;19808:3;19836:39;19869:5;19836:39;:::i;:::-;19891:89;19973:6;19968:3;19891:89;:::i;:::-;19884:96;;19989:52;20034:6;20029:3;20022:4;20015:5;20011:16;19989:52;:::i;:::-;20066:6;20061:3;20057:16;20050:23;;19812:267;19702:377;;;;:::o;20085:435::-;20265:3;20287:95;20378:3;20369:6;20287:95;:::i;:::-;20280:102;;20399:95;20490:3;20481:6;20399:95;:::i;:::-;20392:102;;20511:3;20504:10;;20085:435;;;;;:::o;20526:225::-;20666:34;20662:1;20654:6;20650:14;20643:58;20735:8;20730:2;20722:6;20718:15;20711:33;20526:225;:::o;20757:366::-;20899:3;20920:67;20984:2;20979:3;20920:67;:::i;:::-;20913:74;;20996:93;21085:3;20996:93;:::i;:::-;21114:2;21109:3;21105:12;21098:19;;20757:366;;;:::o;21129:419::-;21295:4;21333:2;21322:9;21318:18;21310:26;;21382:9;21376:4;21372:20;21368:1;21357:9;21353:17;21346:47;21410:131;21536:4;21410:131;:::i;:::-;21402:139;;21129:419;;;:::o;21554:182::-;21694:34;21690:1;21682:6;21678:14;21671:58;21554:182;:::o;21742:366::-;21884:3;21905:67;21969:2;21964:3;21905:67;:::i;:::-;21898:74;;21981:93;22070:3;21981:93;:::i;:::-;22099:2;22094:3;22090:12;22083:19;;21742:366;;;:::o;22114:419::-;22280:4;22318:2;22307:9;22303:18;22295:26;;22367:9;22361:4;22357:20;22353:1;22342:9;22338:17;22331:47;22395:131;22521:4;22395:131;:::i;:::-;22387:139;;22114:419;;;:::o;22539:98::-;22590:6;22624:5;22618:12;22608:22;;22539:98;;;:::o;22643:168::-;22726:11;22760:6;22755:3;22748:19;22800:4;22795:3;22791:14;22776:29;;22643:168;;;;:::o;22817:360::-;22903:3;22931:38;22963:5;22931:38;:::i;:::-;22985:70;23048:6;23043:3;22985:70;:::i;:::-;22978:77;;23064:52;23109:6;23104:3;23097:4;23090:5;23086:16;23064:52;:::i;:::-;23141:29;23163:6;23141:29;:::i;:::-;23136:3;23132:39;23125:46;;22907:270;22817:360;;;;:::o;23183:640::-;23378:4;23416:3;23405:9;23401:19;23393:27;;23430:71;23498:1;23487:9;23483:17;23474:6;23430:71;:::i;:::-;23511:72;23579:2;23568:9;23564:18;23555:6;23511:72;:::i;:::-;23593;23661:2;23650:9;23646:18;23637:6;23593:72;:::i;:::-;23712:9;23706:4;23702:20;23697:2;23686:9;23682:18;23675:48;23740:76;23811:4;23802:6;23740:76;:::i;:::-;23732:84;;23183:640;;;;;;;:::o;23829:141::-;23885:5;23916:6;23910:13;23901:22;;23932:32;23958:5;23932:32;:::i;:::-;23829:141;;;;:::o;23976:349::-;24045:6;24094:2;24082:9;24073:7;24069:23;24065:32;24062:119;;;24100:79;;:::i;:::-;24062:119;24220:1;24245:63;24300:7;24291:6;24280:9;24276:22;24245:63;:::i;:::-;24235:73;;24191:127;23976:349;;;;:::o
Swarm Source
ipfs://0a50231e2b2d6deaba2295879965b947b117ef9fcaa606b7828d896050f88ebe
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.