ERC-721
NFT
Overview
Max Total Supply
3,300 DGN
Holders
690
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFTards
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-16 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @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 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 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. 48 is the ASCII index of '0'. 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/nftards.sol pragma solidity >=0.7.0 <0.9.0; contract NFTards is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0 ether; uint256 public maxSupply = 3300; uint256 public freesupply = 3300; uint256 public MaxperWallet = 5; uint256 public maxpertx = 5 ; // max mint per tx bool public paused = true; bool public revealed = false; constructor( string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721A("NFTards", "DGN") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // public function freemint(uint256 tokens) public payable nonReentrant { require(!paused, "STOP TRYING TO DEGEN EARLY"); uint256 supply = totalSupply(); require(tokens > 0, "YOU NEED AT LEAST 1 NFTard"); require(tokens <= maxpertx, "THE MAX IS 5 FOR A REASON, NFTard"); require(supply + tokens <= freesupply, "TIME TO DEGEN ON SECONDARY"); require(_numberMinted(_msgSender()) + tokens <= MaxperWallet, "YOU'RE TRYING OT MINT MORE THAN YOU'RE ALLOWED, MAX IS 5 NFTard"); require(msg.value >= cost * tokens, "NOT ENOUGH ETH, YOU DEGENED TOO HARD"); _safeMint(_msgSender(), tokens); } /// @dev use it for giveaway and mint for yourself function gift(uint256 _mintAmount, address destination) public onlyOwner nonReentrant { require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); _safeMint(destination, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } //only owner function reveal(bool _state) public onlyOwner { revealed = _state; } function setMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWallet = _limit; } function setmaxpertx(uint256 _maxpertx) public onlyOwner { maxpertx = _maxpertx; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxsupply(uint256 _newsupply) public onlyOwner { maxSupply = _newsupply; } function setfreesupply(uint256 _newsupply) public onlyOwner { freesupply = _newsupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner nonReentrant { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } } //special thanks to Daniel @Hashlips and FazelPejmanfar @Pejmanfarfazel
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freesupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpertx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setfreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setmaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600b91906200022c565b506000600d55610ce4600e819055600f55600560108190556011556012805461ffff191660011790553480156200005e57600080fd5b50604051620025be380380620025be83398101604081905262000081916200039f565b60408051808201825260078152664e46546172647360c81b6020808301918252835180850190945260038452622223a760e91b908401528151919291620000cb916002916200022c565b508051620000e19060039060208401906200022c565b5050600160005550620000f43362000117565b6001600955620001048262000169565b6200010f81620001d1565b505062000445565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001b85760405162461bcd60e51b815260206004820181905260248201526000805160206200259e83398151915260448201526064015b60405180910390fd5b8051620001cd90600a9060208401906200022c565b5050565b6008546001600160a01b031633146200021c5760405162461bcd60e51b815260206004820181905260248201526000805160206200259e8339815191526044820152606401620001af565b8051620001cd90600c9060208401905b8280546200023a9062000409565b90600052602060002090601f0160209004810192826200025e5760008555620002a9565b82601f106200027957805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a95782518255916020019190600101906200028c565b50620002b7929150620002bb565b5090565b5b80821115620002b75760008155600101620002bc565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002fa57600080fd5b81516001600160401b0380821115620003175762000317620002d2565b604051601f8301601f19908116603f01168101908282118183101715620003425762000342620002d2565b816040528381526020925086838588010111156200035f57600080fd5b600091505b8382101562000383578582018301518183018401529082019062000364565b83821115620003955760008385830101525b9695505050505050565b60008060408385031215620003b357600080fd5b82516001600160401b0380821115620003cb57600080fd5b620003d986838701620002e8565b93506020850151915080821115620003f057600080fd5b50620003ff85828601620002e8565b9150509250929050565b600181811c908216806200041e57607f821691505b6020821081036200043f57634e487b7160e01b600052602260045260246000fd5b50919050565b61214980620004556000396000f3fe6080604052600436106102465760003560e01c8063700e505311610139578063c6682862116100b6578063dc33e6811161007a578063dc33e6811461065a578063e268e4d31461067a578063e985e9c51461069a578063eff60110146106e3578063f2c4ce1e146106f9578063f2fde38b1461071957600080fd5b8063c6682862146105cf578063c8151d02146105e4578063c87b56dd14610604578063d5abeb0114610624578063da3ef23f1461063a57600080fd5b8063940cd05b116100fd578063940cd05b1461054457806395d89b4114610564578063a22cb46514610579578063b88d4fde14610599578063bd7a1998146105b957600080fd5b8063700e5053146104b157806370a08231146104d1578063715018a6146104f157806383a076be146105065780638da5cb5b1461052657600080fd5b806323b872dd116101c7578063518302271161018b578063518302271461042357806355f804b3146104425780635c975abb146104625780636352211e1461047c5780636c0360eb1461049c57600080fd5b806323b872dd146103a55780633895ef10146103c55780633ccfd60b146103db57806342842e0e146103e357806344a0d68a1461040357600080fd5b8063095ea7b31161020e578063095ea7b3146103115780630fbe4fe21461033157806313faede614610344578063149835a01461036857806318160ddd1461038857600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063081c8c44146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611b45565b610739565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611b77565b61078b565b005b3480156102ae57600080fd5b506102b76107d1565b6040516102779190611bea565b3480156102d057600080fd5b506102e46102df366004611bfd565b610863565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102b76108a7565b34801561031d57600080fd5b506102a061032c366004611c2d565b610935565b6102a061033f366004611bfd565b610a07565b34801561035057600080fd5b5061035a600d5481565b604051908152602001610277565b34801561037457600080fd5b506102a0610383366004611bfd565b610cbb565b34801561039457600080fd5b50600154600054036000190161035a565b3480156103b157600080fd5b506102a06103c0366004611c57565b610cea565b3480156103d157600080fd5b5061035a600f5481565b6102a0610cfa565b3480156103ef57600080fd5b506102a06103fe366004611c57565b610da8565b34801561040f57600080fd5b506102a061041e366004611bfd565b610dc3565b34801561042f57600080fd5b5060125461026b90610100900460ff1681565b34801561044e57600080fd5b506102a061045d366004611d1f565b610df2565b34801561046e57600080fd5b5060125461026b9060ff1681565b34801561048857600080fd5b506102e4610497366004611bfd565b610e33565b3480156104a857600080fd5b506102b7610e3e565b3480156104bd57600080fd5b506102a06104cc366004611bfd565b610e4b565b3480156104dd57600080fd5b5061035a6104ec366004611d68565b610e7a565b3480156104fd57600080fd5b506102a0610ec9565b34801561051257600080fd5b506102a0610521366004611d83565b610eff565b34801561053257600080fd5b506008546001600160a01b03166102e4565b34801561055057600080fd5b506102a061055f366004611b77565b61101d565b34801561057057600080fd5b506102b7611061565b34801561058557600080fd5b506102a0610594366004611daf565b611070565b3480156105a557600080fd5b506102a06105b4366004611dd9565b611105565b3480156105c557600080fd5b5061035a60105481565b3480156105db57600080fd5b506102b761114f565b3480156105f057600080fd5b506102a06105ff366004611bfd565b61115c565b34801561061057600080fd5b506102b761061f366004611bfd565b61118b565b34801561063057600080fd5b5061035a600e5481565b34801561064657600080fd5b506102a0610655366004611d1f565b611300565b34801561066657600080fd5b5061035a610675366004611d68565b61133d565b34801561068657600080fd5b506102a0610695366004611bfd565b611368565b3480156106a657600080fd5b5061026b6106b5366004611e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ef57600080fd5b5061035a60115481565b34801561070557600080fd5b506102a0610714366004611d1f565b611397565b34801561072557600080fd5b506102a0610734366004611d68565b6113d4565b60006301ffc9a760e01b6001600160e01b03198316148061076a57506380ac58cd60e01b6001600160e01b03198316145b806107855750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107be5760405162461bcd60e51b81526004016107b590611e7f565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600280546107e090611eb4565b80601f016020809104026020016040519081016040528092919081815260200182805461080c90611eb4565b80156108595780601f1061082e57610100808354040283529160200191610859565b820191906000526020600020905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b600061086e8261146f565b61088b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c80546108b490611eb4565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090611eb4565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b505050505081565b6000610940826114a4565b9050806001600160a01b0316836001600160a01b0316036109745760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109ab5761098e81336106b5565b6109ab576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260095403610a295760405162461bcd60e51b81526004016107b590611eee565b600260095560125460ff1615610a815760405162461bcd60e51b815260206004820152601a60248201527f53544f5020545259494e4720544f20444547454e204541524c5900000000000060448201526064016107b5565b6000610a966001546000546000199190030190565b905060008211610ae85760405162461bcd60e51b815260206004820152601a60248201527f594f55204e454544204154204c454153542031204e465461726400000000000060448201526064016107b5565b601154821115610b445760405162461bcd60e51b815260206004820152602160248201527f544845204d4158204953203520464f52204120524541534f4e2c204e465461726044820152601960fa1b60648201526084016107b5565b600f54610b518383611f3b565b1115610b9f5760405162461bcd60e51b815260206004820152601a60248201527f54494d4520544f20444547454e204f4e205345434f4e4441525900000000000060448201526064016107b5565b60105433600090815260056020526040908190205484911c67ffffffffffffffff16610bcb9190611f3b565b1115610c3f5760405162461bcd60e51b815260206004820152603f60248201527f594f5527524520545259494e47204f54204d494e54204d4f5245205448414e2060448201527f594f5527524520414c4c4f5745442c204d41582049532035204e46546172640060648201526084016107b5565b81600d54610c4d9190611f53565b341015610ca85760405162461bcd60e51b8152602060048201526024808201527f4e4f5420454e4f554748204554482c20594f5520444547454e454420544f4f206044820152631210549160e21b60648201526084016107b5565b610cb23383611513565b50506001600955565b6008546001600160a01b03163314610ce55760405162461bcd60e51b81526004016107b590611e7f565b600e55565b610cf583838361152d565b505050565b6008546001600160a01b03163314610d245760405162461bcd60e51b81526004016107b590611e7f565b600260095403610d465760405162461bcd60e51b81526004016107b590611eee565b6002600955604051600090339047908381818185875af1925050503d8060008114610d8d576040519150601f19603f3d011682016040523d82523d6000602084013e610d92565b606091505b5050905080610da057600080fd5b506001600955565b610cf583838360405180602001604052806000815250611105565b6008546001600160a01b03163314610ded5760405162461bcd60e51b81526004016107b590611e7f565b600d55565b6008546001600160a01b03163314610e1c5760405162461bcd60e51b81526004016107b590611e7f565b8051610e2f90600a906020840190611a96565b5050565b6000610785826114a4565b600a80546108b490611eb4565b6008546001600160a01b03163314610e755760405162461bcd60e51b81526004016107b590611e7f565b600f55565b60006001600160a01b038216610ea3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ef35760405162461bcd60e51b81526004016107b590611e7f565b610efd60006116d4565b565b6008546001600160a01b03163314610f295760405162461bcd60e51b81526004016107b590611e7f565b600260095403610f4b5760405162461bcd60e51b81526004016107b590611eee565b600260095581610f9d5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107b5565b6000610fb26001546000546000199190030190565b600e54909150610fc28483611f3b565b11156110095760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107b5565b6110138284611513565b5050600160095550565b6008546001600160a01b031633146110475760405162461bcd60e51b81526004016107b590611e7f565b601280549115156101000261ff0019909216919091179055565b6060600380546107e090611eb4565b336001600160a01b038316036110995760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61111084848461152d565b6001600160a01b0383163b156111495761112c84848484611726565b611149576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b80546108b490611eb4565b6008546001600160a01b031633146111865760405162461bcd60e51b81526004016107b590611e7f565b601155565b60606111968261146f565b6111fb5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016107b5565b601254610100900460ff1615156000036112a157600c805461121c90611eb4565b80601f016020809104026020016040519081016040528092919081815260200182805461124890611eb4565b80156112955780601f1061126a57610100808354040283529160200191611295565b820191906000526020600020905b81548152906001019060200180831161127857829003601f168201915b50505050509050919050565b60006112ab611812565b905060008151116112cb57604051806020016040528060008152506112f9565b806112d584611821565b600b6040516020016112e993929190611f72565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461132a5760405162461bcd60e51b81526004016107b590611e7f565b8051610e2f90600b906020840190611a96565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610785565b6008546001600160a01b031633146113925760405162461bcd60e51b81526004016107b590611e7f565b601055565b6008546001600160a01b031633146113c15760405162461bcd60e51b81526004016107b590611e7f565b8051610e2f90600c906020840190611a96565b6008546001600160a01b031633146113fe5760405162461bcd60e51b81526004016107b590611e7f565b6001600160a01b0381166114635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b5565b61146c816116d4565b50565b600081600111158015611483575060005482105b8015610785575050600090815260046020526040902054600160e01b161590565b600081806001116114fa576000548110156114fa5760008181526004602052604081205490600160e01b821690036114f8575b806000036112f95750600019016000818152600460205260409020546114d7565b505b604051636f96cda160e11b815260040160405180910390fd5b610e2f828260405180602001604052806000815250611922565b6000611538826114a4565b9050836001600160a01b0316816001600160a01b03161461156b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611589575061158985336106b5565b806115a457503361159984610863565b6001600160a01b0316145b9050806115c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115eb57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361168c5760018301600081815260046020526040812054900361168a57600054811461168a5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061175b903390899088908890600401612035565b6020604051808303816000875af1925050508015611796575060408051601f3d908101601f1916820190925261179391810190612072565b60015b6117f4573d8080156117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b5080516000036117ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107e090611eb4565b6060816000036118485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611872578061185c8161208f565b915061186b9050600a836120be565b915061184c565b60008167ffffffffffffffff81111561188d5761188d611c93565b6040519080825280601f01601f1916602001820160405280156118b7576020820181803683370190505b5090505b841561180a576118cc6001836120d2565b91506118d9600a866120e9565b6118e4906030611f3b565b60f81b8183815181106118f9576118f96120fd565b60200101906001600160f81b031916908160001a90535061191b600a866120be565b94506118bb565b6000546001600160a01b03841661194b57604051622e076360e81b815260040160405180910390fd5b8260000361196c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a41575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a0a6000878480600101955087611726565b611a27576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119bf578260005414611a3c57600080fd5b611a86565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a42575b5060009081556111499085838684565b828054611aa290611eb4565b90600052602060002090601f016020900481019282611ac45760008555611b0a565b82601f10611add57805160ff1916838001178555611b0a565b82800160010185558215611b0a579182015b82811115611b0a578251825591602001919060010190611aef565b50611b16929150611b1a565b5090565b5b80821115611b165760008155600101611b1b565b6001600160e01b03198116811461146c57600080fd5b600060208284031215611b5757600080fd5b81356112f981611b2f565b80358015158114611b7257600080fd5b919050565b600060208284031215611b8957600080fd5b6112f982611b62565b60005b83811015611bad578181015183820152602001611b95565b838111156111495750506000910152565b60008151808452611bd6816020860160208601611b92565b601f01601f19169290920160200192915050565b6020815260006112f96020830184611bbe565b600060208284031215611c0f57600080fd5b5035919050565b80356001600160a01b0381168114611b7257600080fd5b60008060408385031215611c4057600080fd5b611c4983611c16565b946020939093013593505050565b600080600060608486031215611c6c57600080fd5b611c7584611c16565b9250611c8360208501611c16565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611cc457611cc4611c93565b604051601f8501601f19908116603f01168101908282118183101715611cec57611cec611c93565b81604052809350858152868686011115611d0557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d3157600080fd5b813567ffffffffffffffff811115611d4857600080fd5b8201601f81018413611d5957600080fd5b61180a84823560208401611ca9565b600060208284031215611d7a57600080fd5b6112f982611c16565b60008060408385031215611d9657600080fd5b82359150611da660208401611c16565b90509250929050565b60008060408385031215611dc257600080fd5b611dcb83611c16565b9150611da660208401611b62565b60008060008060808587031215611def57600080fd5b611df885611c16565b9350611e0660208601611c16565b925060408501359150606085013567ffffffffffffffff811115611e2957600080fd5b8501601f81018713611e3a57600080fd5b611e4987823560208401611ca9565b91505092959194509250565b60008060408385031215611e6857600080fd5b611e7183611c16565b9150611da660208401611c16565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ec857607f821691505b602082108103611ee857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f4e57611f4e611f25565b500190565b6000816000190483118215151615611f6d57611f6d611f25565b500290565b600084516020611f858285838a01611b92565b855191840191611f988184848a01611b92565b8554920191600090600181811c9080831680611fb557607f831692505b8583108103611fd257634e487b7160e01b85526022600452602485fd5b808015611fe65760018114611ff757612024565b60ff19851688528388019550612024565b60008b81526020902060005b8581101561201c5781548a820152908401908801612003565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206890830184611bbe565b9695505050505050565b60006020828403121561208457600080fd5b81516112f981611b2f565b6000600182016120a1576120a1611f25565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826120cd576120cd6120a8565b500490565b6000828210156120e4576120e4611f25565b500390565b6000826120f8576120f86120a8565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220306e98427561f0dc179d6937bd97d5897a859b1ace487fa8a7758eba1f4660ff64736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d564d4445737a5572395959744679706932367a55476b6e3162723944585338376d664d327a6b6a48623245712f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d653165536775746169516f327a4d55386b6b653355354355757934345152684b3142706336786d395675454a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c8063700e505311610139578063c6682862116100b6578063dc33e6811161007a578063dc33e6811461065a578063e268e4d31461067a578063e985e9c51461069a578063eff60110146106e3578063f2c4ce1e146106f9578063f2fde38b1461071957600080fd5b8063c6682862146105cf578063c8151d02146105e4578063c87b56dd14610604578063d5abeb0114610624578063da3ef23f1461063a57600080fd5b8063940cd05b116100fd578063940cd05b1461054457806395d89b4114610564578063a22cb46514610579578063b88d4fde14610599578063bd7a1998146105b957600080fd5b8063700e5053146104b157806370a08231146104d1578063715018a6146104f157806383a076be146105065780638da5cb5b1461052657600080fd5b806323b872dd116101c7578063518302271161018b578063518302271461042357806355f804b3146104425780635c975abb146104625780636352211e1461047c5780636c0360eb1461049c57600080fd5b806323b872dd146103a55780633895ef10146103c55780633ccfd60b146103db57806342842e0e146103e357806344a0d68a1461040357600080fd5b8063095ea7b31161020e578063095ea7b3146103115780630fbe4fe21461033157806313faede614610344578063149835a01461036857806318160ddd1461038857600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063081c8c44146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611b45565b610739565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611b77565b61078b565b005b3480156102ae57600080fd5b506102b76107d1565b6040516102779190611bea565b3480156102d057600080fd5b506102e46102df366004611bfd565b610863565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102b76108a7565b34801561031d57600080fd5b506102a061032c366004611c2d565b610935565b6102a061033f366004611bfd565b610a07565b34801561035057600080fd5b5061035a600d5481565b604051908152602001610277565b34801561037457600080fd5b506102a0610383366004611bfd565b610cbb565b34801561039457600080fd5b50600154600054036000190161035a565b3480156103b157600080fd5b506102a06103c0366004611c57565b610cea565b3480156103d157600080fd5b5061035a600f5481565b6102a0610cfa565b3480156103ef57600080fd5b506102a06103fe366004611c57565b610da8565b34801561040f57600080fd5b506102a061041e366004611bfd565b610dc3565b34801561042f57600080fd5b5060125461026b90610100900460ff1681565b34801561044e57600080fd5b506102a061045d366004611d1f565b610df2565b34801561046e57600080fd5b5060125461026b9060ff1681565b34801561048857600080fd5b506102e4610497366004611bfd565b610e33565b3480156104a857600080fd5b506102b7610e3e565b3480156104bd57600080fd5b506102a06104cc366004611bfd565b610e4b565b3480156104dd57600080fd5b5061035a6104ec366004611d68565b610e7a565b3480156104fd57600080fd5b506102a0610ec9565b34801561051257600080fd5b506102a0610521366004611d83565b610eff565b34801561053257600080fd5b506008546001600160a01b03166102e4565b34801561055057600080fd5b506102a061055f366004611b77565b61101d565b34801561057057600080fd5b506102b7611061565b34801561058557600080fd5b506102a0610594366004611daf565b611070565b3480156105a557600080fd5b506102a06105b4366004611dd9565b611105565b3480156105c557600080fd5b5061035a60105481565b3480156105db57600080fd5b506102b761114f565b3480156105f057600080fd5b506102a06105ff366004611bfd565b61115c565b34801561061057600080fd5b506102b761061f366004611bfd565b61118b565b34801561063057600080fd5b5061035a600e5481565b34801561064657600080fd5b506102a0610655366004611d1f565b611300565b34801561066657600080fd5b5061035a610675366004611d68565b61133d565b34801561068657600080fd5b506102a0610695366004611bfd565b611368565b3480156106a657600080fd5b5061026b6106b5366004611e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ef57600080fd5b5061035a60115481565b34801561070557600080fd5b506102a0610714366004611d1f565b611397565b34801561072557600080fd5b506102a0610734366004611d68565b6113d4565b60006301ffc9a760e01b6001600160e01b03198316148061076a57506380ac58cd60e01b6001600160e01b03198316145b806107855750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107be5760405162461bcd60e51b81526004016107b590611e7f565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600280546107e090611eb4565b80601f016020809104026020016040519081016040528092919081815260200182805461080c90611eb4565b80156108595780601f1061082e57610100808354040283529160200191610859565b820191906000526020600020905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b600061086e8261146f565b61088b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c80546108b490611eb4565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090611eb4565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b505050505081565b6000610940826114a4565b9050806001600160a01b0316836001600160a01b0316036109745760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109ab5761098e81336106b5565b6109ab576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260095403610a295760405162461bcd60e51b81526004016107b590611eee565b600260095560125460ff1615610a815760405162461bcd60e51b815260206004820152601a60248201527f53544f5020545259494e4720544f20444547454e204541524c5900000000000060448201526064016107b5565b6000610a966001546000546000199190030190565b905060008211610ae85760405162461bcd60e51b815260206004820152601a60248201527f594f55204e454544204154204c454153542031204e465461726400000000000060448201526064016107b5565b601154821115610b445760405162461bcd60e51b815260206004820152602160248201527f544845204d4158204953203520464f52204120524541534f4e2c204e465461726044820152601960fa1b60648201526084016107b5565b600f54610b518383611f3b565b1115610b9f5760405162461bcd60e51b815260206004820152601a60248201527f54494d4520544f20444547454e204f4e205345434f4e4441525900000000000060448201526064016107b5565b60105433600090815260056020526040908190205484911c67ffffffffffffffff16610bcb9190611f3b565b1115610c3f5760405162461bcd60e51b815260206004820152603f60248201527f594f5527524520545259494e47204f54204d494e54204d4f5245205448414e2060448201527f594f5527524520414c4c4f5745442c204d41582049532035204e46546172640060648201526084016107b5565b81600d54610c4d9190611f53565b341015610ca85760405162461bcd60e51b8152602060048201526024808201527f4e4f5420454e4f554748204554482c20594f5520444547454e454420544f4f206044820152631210549160e21b60648201526084016107b5565b610cb23383611513565b50506001600955565b6008546001600160a01b03163314610ce55760405162461bcd60e51b81526004016107b590611e7f565b600e55565b610cf583838361152d565b505050565b6008546001600160a01b03163314610d245760405162461bcd60e51b81526004016107b590611e7f565b600260095403610d465760405162461bcd60e51b81526004016107b590611eee565b6002600955604051600090339047908381818185875af1925050503d8060008114610d8d576040519150601f19603f3d011682016040523d82523d6000602084013e610d92565b606091505b5050905080610da057600080fd5b506001600955565b610cf583838360405180602001604052806000815250611105565b6008546001600160a01b03163314610ded5760405162461bcd60e51b81526004016107b590611e7f565b600d55565b6008546001600160a01b03163314610e1c5760405162461bcd60e51b81526004016107b590611e7f565b8051610e2f90600a906020840190611a96565b5050565b6000610785826114a4565b600a80546108b490611eb4565b6008546001600160a01b03163314610e755760405162461bcd60e51b81526004016107b590611e7f565b600f55565b60006001600160a01b038216610ea3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ef35760405162461bcd60e51b81526004016107b590611e7f565b610efd60006116d4565b565b6008546001600160a01b03163314610f295760405162461bcd60e51b81526004016107b590611e7f565b600260095403610f4b5760405162461bcd60e51b81526004016107b590611eee565b600260095581610f9d5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107b5565b6000610fb26001546000546000199190030190565b600e54909150610fc28483611f3b565b11156110095760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107b5565b6110138284611513565b5050600160095550565b6008546001600160a01b031633146110475760405162461bcd60e51b81526004016107b590611e7f565b601280549115156101000261ff0019909216919091179055565b6060600380546107e090611eb4565b336001600160a01b038316036110995760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61111084848461152d565b6001600160a01b0383163b156111495761112c84848484611726565b611149576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b80546108b490611eb4565b6008546001600160a01b031633146111865760405162461bcd60e51b81526004016107b590611e7f565b601155565b60606111968261146f565b6111fb5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016107b5565b601254610100900460ff1615156000036112a157600c805461121c90611eb4565b80601f016020809104026020016040519081016040528092919081815260200182805461124890611eb4565b80156112955780601f1061126a57610100808354040283529160200191611295565b820191906000526020600020905b81548152906001019060200180831161127857829003601f168201915b50505050509050919050565b60006112ab611812565b905060008151116112cb57604051806020016040528060008152506112f9565b806112d584611821565b600b6040516020016112e993929190611f72565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461132a5760405162461bcd60e51b81526004016107b590611e7f565b8051610e2f90600b906020840190611a96565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610785565b6008546001600160a01b031633146113925760405162461bcd60e51b81526004016107b590611e7f565b601055565b6008546001600160a01b031633146113c15760405162461bcd60e51b81526004016107b590611e7f565b8051610e2f90600c906020840190611a96565b6008546001600160a01b031633146113fe5760405162461bcd60e51b81526004016107b590611e7f565b6001600160a01b0381166114635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b5565b61146c816116d4565b50565b600081600111158015611483575060005482105b8015610785575050600090815260046020526040902054600160e01b161590565b600081806001116114fa576000548110156114fa5760008181526004602052604081205490600160e01b821690036114f8575b806000036112f95750600019016000818152600460205260409020546114d7565b505b604051636f96cda160e11b815260040160405180910390fd5b610e2f828260405180602001604052806000815250611922565b6000611538826114a4565b9050836001600160a01b0316816001600160a01b03161461156b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611589575061158985336106b5565b806115a457503361159984610863565b6001600160a01b0316145b9050806115c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115eb57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361168c5760018301600081815260046020526040812054900361168a57600054811461168a5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061175b903390899088908890600401612035565b6020604051808303816000875af1925050508015611796575060408051601f3d908101601f1916820190925261179391810190612072565b60015b6117f4573d8080156117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b5080516000036117ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107e090611eb4565b6060816000036118485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611872578061185c8161208f565b915061186b9050600a836120be565b915061184c565b60008167ffffffffffffffff81111561188d5761188d611c93565b6040519080825280601f01601f1916602001820160405280156118b7576020820181803683370190505b5090505b841561180a576118cc6001836120d2565b91506118d9600a866120e9565b6118e4906030611f3b565b60f81b8183815181106118f9576118f96120fd565b60200101906001600160f81b031916908160001a90535061191b600a866120be565b94506118bb565b6000546001600160a01b03841661194b57604051622e076360e81b815260040160405180910390fd5b8260000361196c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a41575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a0a6000878480600101955087611726565b611a27576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119bf578260005414611a3c57600080fd5b611a86565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a42575b5060009081556111499085838684565b828054611aa290611eb4565b90600052602060002090601f016020900481019282611ac45760008555611b0a565b82601f10611add57805160ff1916838001178555611b0a565b82800160010185558215611b0a579182015b82811115611b0a578251825591602001919060010190611aef565b50611b16929150611b1a565b5090565b5b80821115611b165760008155600101611b1b565b6001600160e01b03198116811461146c57600080fd5b600060208284031215611b5757600080fd5b81356112f981611b2f565b80358015158114611b7257600080fd5b919050565b600060208284031215611b8957600080fd5b6112f982611b62565b60005b83811015611bad578181015183820152602001611b95565b838111156111495750506000910152565b60008151808452611bd6816020860160208601611b92565b601f01601f19169290920160200192915050565b6020815260006112f96020830184611bbe565b600060208284031215611c0f57600080fd5b5035919050565b80356001600160a01b0381168114611b7257600080fd5b60008060408385031215611c4057600080fd5b611c4983611c16565b946020939093013593505050565b600080600060608486031215611c6c57600080fd5b611c7584611c16565b9250611c8360208501611c16565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611cc457611cc4611c93565b604051601f8501601f19908116603f01168101908282118183101715611cec57611cec611c93565b81604052809350858152868686011115611d0557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d3157600080fd5b813567ffffffffffffffff811115611d4857600080fd5b8201601f81018413611d5957600080fd5b61180a84823560208401611ca9565b600060208284031215611d7a57600080fd5b6112f982611c16565b60008060408385031215611d9657600080fd5b82359150611da660208401611c16565b90509250929050565b60008060408385031215611dc257600080fd5b611dcb83611c16565b9150611da660208401611b62565b60008060008060808587031215611def57600080fd5b611df885611c16565b9350611e0660208601611c16565b925060408501359150606085013567ffffffffffffffff811115611e2957600080fd5b8501601f81018713611e3a57600080fd5b611e4987823560208401611ca9565b91505092959194509250565b60008060408385031215611e6857600080fd5b611e7183611c16565b9150611da660208401611c16565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ec857607f821691505b602082108103611ee857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f4e57611f4e611f25565b500190565b6000816000190483118215151615611f6d57611f6d611f25565b500290565b600084516020611f858285838a01611b92565b855191840191611f988184848a01611b92565b8554920191600090600181811c9080831680611fb557607f831692505b8583108103611fd257634e487b7160e01b85526022600452602485fd5b808015611fe65760018114611ff757612024565b60ff19851688528388019550612024565b60008b81526020902060005b8581101561201c5781548a820152908401908801612003565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206890830184611bbe565b9695505050505050565b60006020828403121561208457600080fd5b81516112f981611b2f565b6000600182016120a1576120a1611f25565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826120cd576120cd6120a8565b500490565b6000828210156120e4576120e4611f25565b500390565b6000826120f8576120f86120a8565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220306e98427561f0dc179d6937bd97d5897a859b1ace487fa8a7758eba1f4660ff64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d564d4445737a5572395959744679706932367a55476b6e3162723944585338376d664d327a6b6a48623245712f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d653165536775746169516f327a4d55386b6b653355354355757934345152684b3142706336786d395675454a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmVMDEszUr9YYtFypi26zUGkn1br9DXS87mfM2zkjHb2Eq/
Arg [1] : _initNotRevealedUri (string): ipfs://Qme1eSgutaiQo2zMU8kke3U5CUuy44QRhK1Bpc6xm9VuEJ/hidden.json
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d564d4445737a5572395959744679706932367a55476b6e
Arg [4] : 3162723944585338376d664d327a6b6a48623245712f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d653165536775746169516f327a4d55386b6b6533553543
Arg [7] : 55757934345152684b3142706336786d395675454a2f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46773:3746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21416:615;;;;;;;;;;-1:-1:-1;21416:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21416:615:0;;;;;;;;50261:73;;;;;;;;;;-1:-1:-1;50261:73:0;;;;;:::i;:::-;;:::i;:::-;;26429:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28497:204::-;;;;;;;;;;-1:-1:-1;28497:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;28497:204:0;1878:203:1;46932:28:0;;;;;;;;;;;;;:::i;27957:474::-;;;;;;;;;;-1:-1:-1;27957:474:0;;;;;:::i;:::-;;:::i;47676:625::-;;;;;;:::i;:::-;;:::i;46965:29::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;46965:29:0;2523:177:1;49697:94:0;;;;;;;;;;-1:-1:-1;49697:94:0;;;;;:::i;:::-;;:::i;20470:315::-;;;;;;;;;;-1:-1:-1;47646:1:0;20736:12;20523:7;20720:13;:28;-1:-1:-1;;20720:46:0;20470:315;;29383:170;;;;;;;;;;-1:-1:-1;29383:170:0;;;;;:::i;:::-;;:::i;47035:32::-;;;;;;;;;;;;;;;;50345:171;;;:::i;29624:185::-;;;;;;;;;;-1:-1:-1;29624:185:0;;;;;:::i;:::-;;:::i;49609:80::-;;;;;;;;;;-1:-1:-1;49609:80:0;;;;;:::i;:::-;;:::i;47190:28::-;;;;;;;;;;-1:-1:-1;47190:28:0;;;;;;;;;;;49901:98;;;;;;;;;;-1:-1:-1;49901:98:0;;;;;:::i;:::-;;:::i;47160:25::-;;;;;;;;;;-1:-1:-1;47160:25:0;;;;;;;;26218:144;;;;;;;;;;-1:-1:-1;26218:144:0;;;;;:::i;:::-;;:::i;46864:21::-;;;;;;;;;;;;;:::i;49799:96::-;;;;;;;;;;-1:-1:-1;49799:96:0;;;;;:::i;:::-;;:::i;22095:224::-;;;;;;;;;;-1:-1:-1;22095:224:0;;;;;:::i;:::-;;:::i;7526:103::-;;;;;;;;;;;;;:::i;48368:318::-;;;;;;;;;;-1:-1:-1;48368:318:0;;;;;:::i;:::-;;:::i;6875:87::-;;;;;;;;;;-1:-1:-1;6948:6:0;;-1:-1:-1;;;;;6948:6:0;6875:87;;49329:78;;;;;;;;;;-1:-1:-1;49329:78:0;;;;;:::i;:::-;;:::i;26598:104::-;;;;;;;;;;;;;:::i;28773:308::-;;;;;;;;;;-1:-1:-1;28773:308:0;;;;;:::i;:::-;;:::i;29880:396::-;;;;;;;;;;-1:-1:-1;29880:396:0;;;;;:::i;:::-;;:::i;47072:31::-;;;;;;;;;;;;;;;;46890:37;;;;;;;;;;;;;:::i;49513:90::-;;;;;;;;;;-1:-1:-1;49513:90:0;;;;;:::i;:::-;;:::i;48692:498::-;;;;;;;;;;-1:-1:-1;48692:498:0;;;;;:::i;:::-;;:::i;46999:31::-;;;;;;;;;;;;;;;;50005:122;;;;;;;;;;-1:-1:-1;50005:122:0;;;;;:::i;:::-;;:::i;49198:107::-;;;;;;;;;;-1:-1:-1;49198:107:0;;;;;:::i;:::-;;:::i;49415:92::-;;;;;;;;;;-1:-1:-1;49415:92:0;;;;;:::i;:::-;;:::i;29152:164::-;;;;;;;;;;-1:-1:-1;29152:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29273:25:0;;;29249:4;29273:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29152:164;47108:27;;;;;;;;;;;;;;;;50135:120;;;;;;;;;;-1:-1:-1;50135:120:0;;;;;:::i;:::-;;:::i;7784:201::-;;;;;;;;;;-1:-1:-1;7784:201:0;;;;;:::i;:::-;;:::i;21416:615::-;21501:4;-1:-1:-1;;;;;;;;;21801:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21878:25:0;;;21801:102;:179;;;-1:-1:-1;;;;;;;;;;21955:25:0;;;21801:179;21781:199;21416:615;-1:-1:-1;;21416:615:0:o;50261:73::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;;;;;;;;;50313:6:::1;:15:::0;;-1:-1:-1;;50313:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50261:73::o;26429:100::-;26483:13;26516:5;26509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26429:100;:::o;28497:204::-;28565:7;28590:16;28598:7;28590;:16::i;:::-;28585:64;;28615:34;;-1:-1:-1;;;28615:34:0;;;;;;;;;;;28585:64;-1:-1:-1;28669:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28669:24:0;;28497:204::o;46932:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27957:474::-;28030:13;28062:27;28081:7;28062:18;:27::i;:::-;28030:61;;28112:5;-1:-1:-1;;;;;28106:11:0;:2;-1:-1:-1;;;;;28106:11:0;;28102:48;;28126:24;;-1:-1:-1;;;28126:24:0;;;;;;;;;;;28102:48;5679:10;-1:-1:-1;;;;;28167:28:0;;;28163:175;;28215:44;28232:5;5679:10;29152:164;:::i;28215:44::-;28210:128;;28287:35;;-1:-1:-1;;;28287:35:0;;;;;;;;;;;28210:128;28350:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28350:29:0;-1:-1:-1;;;;;28350:29:0;;;;;;;;;28395:28;;28350:24;;28395:28;;;;;;;28019:412;27957:474;;:::o;47676:625::-;1849:1;2447:7;;:19;2439:63;;;;-1:-1:-1;;;2439:63:0;;;;;;;:::i;:::-;1849:1;2580:7;:18;47754:6:::1;::::0;::::1;;47753:7;47745:46;;;::::0;-1:-1:-1;;;47745:46:0;;7217:2:1;47745:46:0::1;::::0;::::1;7199:21:1::0;7256:2;7236:18;;;7229:30;7295:28;7275:18;;;7268:56;7341:18;;47745:46:0::1;7015:350:1::0;47745:46:0::1;47798:14;47815:13;47646:1:::0;20736:12;20523:7;20720:13;-1:-1:-1;;20720:28:0;;;:46;;20470:315;47815:13:::1;47798:30;;47852:1;47843:6;:10;47835:49;;;::::0;-1:-1:-1;;;47835:49:0;;7572:2:1;47835:49:0::1;::::0;::::1;7554:21:1::0;7611:2;7591:18;;;7584:30;7650:28;7630:18;;;7623:56;7696:18;;47835:49:0::1;7370:350:1::0;47835:49:0::1;47909:8;;47899:6;:18;;47891:64;;;::::0;-1:-1:-1;;;47891:64:0;;7927:2:1;47891:64:0::1;::::0;::::1;7909:21:1::0;7966:2;7946:18;;;7939:30;8005:34;7985:18;;;7978:62;-1:-1:-1;;;8056:18:1;;;8049:31;8097:19;;47891:64:0::1;7725:397:1::0;47891:64:0::1;47989:10;::::0;47970:15:::1;47979:6:::0;47970;:15:::1;:::i;:::-;:29;;47962:68;;;::::0;-1:-1:-1;;;47962:68:0;;8594:2:1;47962:68:0::1;::::0;::::1;8576:21:1::0;8633:2;8613:18;;;8606:30;8672:28;8652:18;;;8645:56;8718:18;;47962:68:0::1;8392:350:1::0;47962:68:0::1;48085:12;::::0;5679:10;22462:7;22490:25;;;:18;:25;;17571:2;22490:25;;;;;48075:6;;22490:49;17434:13;22489:80;48045:36:::1;;;;:::i;:::-;:52;;48037:128;;;::::0;-1:-1:-1;;;48037:128:0;;8949:2:1;48037:128:0::1;::::0;::::1;8931:21:1::0;8988:2;8968:18;;;8961:30;9027:34;9007:18;;;9000:62;9098:33;9078:18;;;9071:61;9149:19;;48037:128:0::1;8747:427:1::0;48037:128:0::1;48200:6;48193:4;;:13;;;;:::i;:::-;48180:9;:26;;48172:75;;;::::0;-1:-1:-1;;;48172:75:0;;9554:2:1;48172:75:0::1;::::0;::::1;9536:21:1::0;9593:2;9573:18;;;9566:30;9632:34;9612:18;;;9605:62;-1:-1:-1;;;9683:18:1;;;9676:34;9727:19;;48172:75:0::1;9352:400:1::0;48172:75:0::1;48258:31;5679:10:::0;48282:6:::1;48258:9;:31::i;:::-;-1:-1:-1::0;;1805:1:0;2759:7;:22;47676:625::o;49697:94::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;49763:9:::1;:22:::0;49697:94::o;29383:170::-;29517:28;29527:4;29533:2;29537:7;29517:9;:28::i;:::-;29383:170;;;:::o;50345:171::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;1849:1:::1;2447:7;;:19:::0;2439:63:::1;;;;-1:-1:-1::0;;;2439:63:0::1;;;;;;;:::i;:::-;1849:1;2580:7;:18:::0;50429:58:::2;::::0;50411:12:::2;::::0;50437:10:::2;::::0;50461:21:::2;::::0;50411:12;50429:58;50411:12;50429:58;50461:21;50437:10;50429:58:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50410:77;;;50502:7;50494:16;;;::::0;::::2;;-1:-1:-1::0;1805:1:0::1;2759:7;:22:::0;50345:171::o;29624:185::-;29762:39;29779:4;29785:2;29789:7;29762:39;;;;;;;;;;;;:16;:39::i;49609:80::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;49668:4:::1;:15:::0;49609:80::o;49901:98::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;49972:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49901:98:::0;:::o;26218:144::-;26282:7;26325:27;26344:7;26325:18;:27::i;46864:21::-;;;;;;;:::i;49799:96::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;49866:10:::1;:23:::0;49799:96::o;22095:224::-;22159:7;-1:-1:-1;;;;;22183:19:0;;22179:60;;22211:28;;-1:-1:-1;;;22211:28:0;;;;;;;;;;;22179:60;-1:-1:-1;;;;;;22257:25:0;;;;;:18;:25;;;;;;17434:13;22257:54;;22095:224::o;7526:103::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;7591:30:::1;7618:1;7591:18;:30::i;:::-;7526:103::o:0;48368:318::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;1849:1:::1;2447:7;;:19:::0;2439:63:::1;;;;-1:-1:-1::0;;;2439:63:0::1;;;;;;;:::i;:::-;1849:1;2580:7;:18:::0;48469:15;48461:55:::2;;;::::0;-1:-1:-1;;;48461:55:0;;10169:2:1;48461:55:0::2;::::0;::::2;10151:21:1::0;10208:2;10188:18;;;10181:30;10247:29;10227:18;;;10220:57;10294:18;;48461:55:0::2;9967:351:1::0;48461:55:0::2;48523:14;48540:13;47646:1:::0;20736:12;20523:7;20720:13;-1:-1:-1;;20720:28:0;;;:46;;20470:315;48540:13:::2;48592:9;::::0;48523:30;;-1:-1:-1;48568:20:0::2;48577:11:::0;48523:30;48568:20:::2;:::i;:::-;:33;;48560:68;;;::::0;-1:-1:-1;;;48560:68:0;;10525:2:1;48560:68:0::2;::::0;::::2;10507:21:1::0;10564:2;10544:18;;;10537:30;-1:-1:-1;;;10583:18:1;;;10576:52;10645:18;;48560:68:0::2;10323:346:1::0;48560:68:0::2;48639:35;48649:11;48662;48639:9;:35::i;:::-;-1:-1:-1::0;;1805:1:0::1;2759:7;:22:::0;-1:-1:-1;48368:318:0:o;49329:78::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;49384:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;49384:17:0;;::::1;::::0;;;::::1;::::0;;49329:78::o;26598:104::-;26654:13;26687:7;26680:14;;;;;:::i;28773:308::-;5679:10;-1:-1:-1;;;;;28872:31:0;;;28868:61;;28912:17;;-1:-1:-1;;;28912:17:0;;;;;;;;;;;28868:61;5679:10;28942:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28942:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28942:60:0;;;;;;;;;;29018:55;;540:41:1;;;28942:49:0;;5679:10;29018:55;;513:18:1;29018:55:0;;;;;;;28773:308;;:::o;29880:396::-;30047:28;30057:4;30063:2;30067:7;30047:9;:28::i;:::-;-1:-1:-1;;;;;30090:14:0;;;:19;30086:183;;30129:56;30160:4;30166:2;30170:7;30179:5;30129:30;:56::i;:::-;30124:145;;30213:40;;-1:-1:-1;;;30213:40:0;;;;;;;;;;;30124:145;29880:396;;;;:::o;46890:37::-;;;;;;;:::i;49513:90::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;49577:8:::1;:20:::0;49513:90::o;48692:498::-;48790:13;48831:16;48839:7;48831;:16::i;:::-;48815:98;;;;-1:-1:-1;;;48815:98:0;;10876:2:1;48815:98:0;;;10858:21:1;10915:2;10895:18;;;10888:30;10954:34;10934:18;;;10927:62;-1:-1:-1;;;11005:18:1;;;10998:46;11061:19;;48815:98:0;10674:412:1;48815:98:0;48929:8;;;;;;;:17;;48941:5;48929:17;48926:62;;48966:14;48959:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48692:498;;;:::o;48926:62::-;48996:28;49027:10;:8;:10::i;:::-;48996:41;;49082:1;49057:14;49051:28;:32;:133;;;;;;;;;;;;;;;;;49119:14;49135:18;:7;:16;:18::i;:::-;49155:13;49102:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49051:133;49044:140;48692:498;-1:-1:-1;;;48692:498:0:o;50005:122::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;50088:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49198:107::-:0;-1:-1:-1;;;;;22490:25:0;;49256:7;22490:25;;;:18;:25;;17571:2;22490:25;;;;17434:13;22490:49;;22489:80;49279:20;22401:176;49415:92;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;49480:12:::1;:21:::0;49415:92::o;50135:120::-;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;50217:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;7784:201::-:0;6948:6;;-1:-1:-1;;;;;6948:6:0;5679:10;7095:23;7087:68;;;;-1:-1:-1;;;7087:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7873:22:0;::::1;7865:73;;;::::0;-1:-1:-1;;;7865:73:0;;12951:2:1;7865:73:0::1;::::0;::::1;12933:21:1::0;12990:2;12970:18;;;12963:30;13029:34;13009:18;;;13002:62;-1:-1:-1;;;13080:18:1;;;13073:36;13126:19;;7865:73:0::1;12749:402:1::0;7865:73:0::1;7949:28;7968:8;7949:18;:28::i;:::-;7784:201:::0;:::o;30531:273::-;30588:4;30644:7;47646:1;30625:26;;:66;;;;;30678:13;;30668:7;:23;30625:66;:152;;;;-1:-1:-1;;30729:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30729:43:0;:48;;30531:273::o;23733:1129::-;23800:7;23835;;47646:1;23884:23;23880:915;;23937:13;;23930:4;:20;23926:869;;;23975:14;23992:23;;;:17;:23;;;;;;;-1:-1:-1;;;24081:23:0;;:28;;24077:699;;24600:113;24607:6;24617:1;24607:11;24600:113;;-1:-1:-1;;;24678:6:0;24660:25;;;;:17;:25;;;;;;24600:113;;24077:699;23952:843;23926:869;24823:31;;-1:-1:-1;;;24823:31:0;;;;;;;;;;;30888:104;30957:27;30967:2;30971:8;30957:27;;;;;;;;;;;;:9;:27::i;35770:2515::-;35885:27;35915;35934:7;35915:18;:27::i;:::-;35885:57;;36000:4;-1:-1:-1;;;;;35959:45:0;35975:19;-1:-1:-1;;;;;35959:45:0;;35955:86;;36013:28;;-1:-1:-1;;;36013:28:0;;;;;;;;;;;35955:86;36054:22;5679:10;-1:-1:-1;;;;;36080:27:0;;;;:87;;-1:-1:-1;36124:43:0;36141:4;5679:10;29152:164;:::i;36124:43::-;36080:147;;;-1:-1:-1;5679:10:0;36184:20;36196:7;36184:11;:20::i;:::-;-1:-1:-1;;;;;36184:43:0;;36080:147;36054:174;;36246:17;36241:66;;36272:35;;-1:-1:-1;;;36272:35:0;;;;;;;;;;;36241:66;-1:-1:-1;;;;;36322:16:0;;36318:52;;36347:23;;-1:-1:-1;;;36347:23:0;;;;;;;;;;;36318:52;36499:24;;;;:15;:24;;;;;;;;36492:31;;-1:-1:-1;;;;;;36492:31:0;;;-1:-1:-1;;;;;36891:24:0;;;;;:18;:24;;;;;36889:26;;-1:-1:-1;;36889:26:0;;;36960:22;;;;;;;36958:24;;-1:-1:-1;36958:24:0;;;37253:26;;;:17;:26;;;;;-1:-1:-1;;;37341:15:0;18088:3;37341:41;37299:84;;:128;;37253:174;;;37547:46;;:51;;37543:626;;37651:1;37641:11;;37619:19;37774:30;;;:17;:30;;;;;;:35;;37770:384;;37912:13;;37897:11;:28;37893:242;;38059:30;;;;:17;:30;;;;;:52;;;37893:242;37600:569;37543:626;38216:7;38212:2;-1:-1:-1;;;;;38197:27:0;38206:4;-1:-1:-1;;;;;38197:27:0;;;;;;;;;;;35874:2411;;35770:2515;;;:::o;8145:191::-;8238:6;;;-1:-1:-1;;;;;8255:17:0;;;-1:-1:-1;;;;;;8255:17:0;;;;;;;8288:40;;8238:6;;;8255:17;8238:6;;8288:40;;8219:16;;8288:40;8208:128;8145:191;:::o;41982:716::-;42166:88;;-1:-1:-1;;;42166:88:0;;42145:4;;-1:-1:-1;;;;;42166:45:0;;;;;:88;;5679:10;;42233:4;;42239:7;;42248:5;;42166:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42166:88:0;;;;;;;;-1:-1:-1;;42166:88:0;;;;;;;;;;;;:::i;:::-;;;42162:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42449:6;:13;42466:1;42449:18;42445:235;;42495:40;;-1:-1:-1;;;42495:40:0;;;;;;;;;;;42445:235;42638:6;42632:13;42623:6;42619:2;42615:15;42608:38;42162:529;-1:-1:-1;;;;;;42325:64:0;-1:-1:-1;;;42325:64:0;;-1:-1:-1;42162:529:0;41982:716;;;;;;:::o;47444:102::-;47504:13;47533:7;47526:14;;;;;:::i;3161:723::-;3217:13;3438:5;3447:1;3438:10;3434:53;;-1:-1:-1;;3465:10:0;;;;;;;;;;;;-1:-1:-1;;;3465:10:0;;;;;3161:723::o;3434:53::-;3512:5;3497:12;3553:78;3560:9;;3553:78;;3586:8;;;;:::i;:::-;;-1:-1:-1;3609:10:0;;-1:-1:-1;3617:2:0;3609:10;;:::i;:::-;;;3553:78;;;3641:19;3673:6;3663:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3663:17:0;;3641:39;;3691:154;3698:10;;3691:154;;3725:11;3735:1;3725:11;;:::i;:::-;;-1:-1:-1;3794:10:0;3802:2;3794:5;:10;:::i;:::-;3781:24;;:2;:24;:::i;:::-;3768:39;;3751:6;3758;3751:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3751:56:0;;;;;;;;-1:-1:-1;3822:11:0;3831:2;3822:11;;:::i;:::-;;;3691:154;;31365:2236;31488:20;31511:13;-1:-1:-1;;;;;31539:16:0;;31535:48;;31564:19;;-1:-1:-1;;;31564:19:0;;;;;;;;;;;31535:48;31598:8;31610:1;31598:13;31594:44;;31620:18;;-1:-1:-1;;;31620:18:0;;;;;;;;;;;31594:44;-1:-1:-1;;;;;32187:22:0;;;;;;:18;:22;;;;17571:2;32187:22;;;:70;;32225:31;32213:44;;32187:70;;;32500:31;;;:17;:31;;;;;32593:15;18088:3;32593:41;32551:84;;-1:-1:-1;32671:13:0;;18351:3;32656:56;32551:162;32500:213;;:31;;32794:23;;;;32838:14;:19;32834:635;;32878:313;32909:38;;32934:12;;-1:-1:-1;;;;;32909:38:0;;;32926:1;;32909:38;;32926:1;;32909:38;32975:69;33014:1;33018:2;33022:14;;;;;;33038:5;32975:30;:69::i;:::-;32970:174;;33080:40;;-1:-1:-1;;;33080:40:0;;;;;;;;;;;32970:174;33186:3;33171:12;:18;32878:313;;33272:12;33255:13;;:29;33251:43;;33286:8;;;33251:43;32834:635;;;33335:119;33366:40;;33391:14;;;;;-1:-1:-1;;;;;33366:40:0;;;33383:1;;33366:40;;33383:1;;33366:40;33449:3;33434:12;:18;33335:119;;32834:635;-1:-1:-1;33483:13:0;:28;;;33533:60;;33566:2;33570:12;33584:8;33533:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:451::-;3876:6;3929:2;3917:9;3908:7;3904:23;3900:32;3897:52;;;3945:1;3942;3935:12;3897:52;3985:9;3972:23;4018:18;4010:6;4007:30;4004:50;;;4050:1;4047;4040:12;4004:50;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:55:1;;4155:1;4152;4145:12;4104:55;4178:74;4244:7;4239:2;4226:16;4221:2;4217;4213:11;4178:74;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4522:6;4530;4583:2;4571:9;4562:7;4558:23;4554:32;4551:52;;;4599:1;4596;4589:12;4551:52;4635:9;4622:23;4612:33;;4664:38;4698:2;4687:9;4683:18;4664:38;:::i;:::-;4654:48;;4454:254;;;;;:::o;4713:::-;4778:6;4786;4839:2;4827:9;4818:7;4814:23;4810:32;4807:52;;;4855:1;4852;4845:12;4807:52;4878:29;4897:9;4878:29;:::i;:::-;4868:39;;4926:35;4957:2;4946:9;4942:18;4926:35;:::i;4972:667::-;5067:6;5075;5083;5091;5144:3;5132:9;5123:7;5119:23;5115:33;5112:53;;;5161:1;5158;5151:12;5112:53;5184:29;5203:9;5184:29;:::i;:::-;5174:39;;5232:38;5266:2;5255:9;5251:18;5232:38;:::i;:::-;5222:48;;5317:2;5306:9;5302:18;5289:32;5279:42;;5372:2;5361:9;5357:18;5344:32;5399:18;5391:6;5388:30;5385:50;;;5431:1;5428;5421:12;5385:50;5454:22;;5507:4;5499:13;;5495:27;-1:-1:-1;5485:55:1;;5536:1;5533;5526:12;5485:55;5559:74;5625:7;5620:2;5607:16;5602:2;5598;5594:11;5559:74;:::i;:::-;5549:84;;;4972:667;;;;;;;:::o;5644:260::-;5712:6;5720;5773:2;5761:9;5752:7;5748:23;5744:32;5741:52;;;5789:1;5786;5779:12;5741:52;5812:29;5831:9;5812:29;:::i;:::-;5802:39;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;5909:356::-;6111:2;6093:21;;;6130:18;;;6123:30;6189:34;6184:2;6169:18;;6162:62;6256:2;6241:18;;5909:356::o;6270:380::-;6349:1;6345:12;;;;6392;;;6413:61;;6467:4;6459:6;6455:17;6445:27;;6413:61;6520:2;6512:6;6509:14;6489:18;6486:38;6483:161;;6566:10;6561:3;6557:20;6554:1;6547:31;6601:4;6598:1;6591:15;6629:4;6626:1;6619:15;6483:161;;6270:380;;;:::o;6655:355::-;6857:2;6839:21;;;6896:2;6876:18;;;6869:30;6935:33;6930:2;6915:18;;6908:61;7001:2;6986:18;;6655:355::o;8127:127::-;8188:10;8183:3;8179:20;8176:1;8169:31;8219:4;8216:1;8209:15;8243:4;8240:1;8233:15;8259:128;8299:3;8330:1;8326:6;8323:1;8320:13;8317:39;;;8336:18;;:::i;:::-;-1:-1:-1;8372:9:1;;8259:128::o;9179:168::-;9219:7;9285:1;9281;9277:6;9273:14;9270:1;9267:21;9262:1;9255:9;9248:17;9244:45;9241:71;;;9292:18;;:::i;:::-;-1:-1:-1;9332:9:1;;9179:168::o;11217:1527::-;11441:3;11479:6;11473:13;11505:4;11518:51;11562:6;11557:3;11552:2;11544:6;11540:15;11518:51;:::i;:::-;11632:13;;11591:16;;;;11654:55;11632:13;11591:16;11676:15;;;11654:55;:::i;:::-;11798:13;;11731:20;;;11771:1;;11858;11880:18;;;;11933;;;;11960:93;;12038:4;12028:8;12024:19;12012:31;;11960:93;12101:2;12091:8;12088:16;12068:18;12065:40;12062:167;;-1:-1:-1;;;12128:33:1;;12184:4;12181:1;12174:15;12214:4;12135:3;12202:17;12062:167;12245:18;12272:110;;;;12396:1;12391:328;;;;12238:481;;12272:110;-1:-1:-1;;12307:24:1;;12293:39;;12352:20;;;;-1:-1:-1;12272:110:1;;12391:328;11164:1;11157:14;;;11201:4;11188:18;;12486:1;12500:169;12514:8;12511:1;12508:15;12500:169;;;12596:14;;12581:13;;;12574:37;12639:16;;;;12531:10;;12500:169;;;12504:3;;12700:8;12693:5;12689:20;12682:27;;12238:481;-1:-1:-1;12735:3:1;;11217:1527;-1:-1:-1;;;;;;;;;;;11217:1527:1:o;13156:489::-;-1:-1:-1;;;;;13425:15:1;;;13407:34;;13477:15;;13472:2;13457:18;;13450:43;13524:2;13509:18;;13502:34;;;13572:3;13567:2;13552:18;;13545:31;;;13350:4;;13593:46;;13619:19;;13611:6;13593:46;:::i;:::-;13585:54;13156:489;-1:-1:-1;;;;;;13156:489:1:o;13650:249::-;13719:6;13772:2;13760:9;13751:7;13747:23;13743:32;13740:52;;;13788:1;13785;13778:12;13740:52;13820:9;13814:16;13839:30;13863:5;13839:30;:::i;13904:135::-;13943:3;13964:17;;;13961:43;;13984:18;;:::i;:::-;-1:-1:-1;14031:1:1;14020:13;;13904:135::o;14044:127::-;14105:10;14100:3;14096:20;14093:1;14086:31;14136:4;14133:1;14126:15;14160:4;14157:1;14150:15;14176:120;14216:1;14242;14232:35;;14247:18;;:::i;:::-;-1:-1:-1;14281:9:1;;14176:120::o;14301:125::-;14341:4;14369:1;14366;14363:8;14360:34;;;14374:18;;:::i;:::-;-1:-1:-1;14411:9:1;;14301:125::o;14431:112::-;14463:1;14489;14479:35;;14494:18;;:::i;:::-;-1:-1:-1;14528:9:1;;14431:112::o;14548:127::-;14609:10;14604:3;14600:20;14597:1;14590:31;14640:4;14637:1;14630:15;14664:4;14661:1;14654:15
Swarm Source
ipfs://306e98427561f0dc179d6937bd97d5897a859b1ace487fa8a7758eba1f4660ff
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.