Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 44 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16653836 | 743 days ago | IN | 0 ETH | 0.00128743 | ||||
Free Mint | 16423255 | 775 days ago | IN | 0 ETH | 0.00220989 | ||||
Set Approval For... | 15960004 | 840 days ago | IN | 0 ETH | 0.00067493 | ||||
Free Mint | 15942061 | 842 days ago | IN | 0 ETH | 0.0023578 | ||||
Free Mint | 15937386 | 843 days ago | IN | 0 ETH | 0.00230557 | ||||
Set Approval For... | 15926743 | 844 days ago | IN | 0 ETH | 0.00241406 | ||||
Free Mint | 15923500 | 845 days ago | IN | 0 ETH | 0.00174779 | ||||
Free Mint | 15921375 | 845 days ago | IN | 0 ETH | 0.00159279 | ||||
Free Mint | 15919386 | 845 days ago | IN | 0 ETH | 0.00245783 | ||||
Free Mint | 15919361 | 845 days ago | IN | 0 ETH | 0.00243409 | ||||
Free Mint | 15916705 | 846 days ago | IN | 0 ETH | 0.00129166 | ||||
Free Mint | 15916675 | 846 days ago | IN | 0 ETH | 0.00128263 | ||||
Free Mint | 15916652 | 846 days ago | IN | 0 ETH | 0.0013945 | ||||
Free Mint | 15913918 | 846 days ago | IN | 0 ETH | 0.0015158 | ||||
Free Mint | 15913531 | 846 days ago | IN | 0 ETH | 0.00144081 | ||||
Free Mint | 15912937 | 846 days ago | IN | 0 ETH | 0.00199872 | ||||
Free Mint | 15912762 | 846 days ago | IN | 0 ETH | 0.00165603 | ||||
Set Approval For... | 15912475 | 846 days ago | IN | 0 ETH | 0.00052912 | ||||
Free Mint | 15912459 | 846 days ago | IN | 0 ETH | 0.00123665 | ||||
Free Mint | 15912455 | 846 days ago | IN | 0 ETH | 0.00107722 | ||||
Free Mint | 15912437 | 846 days ago | IN | 0 ETH | 0.00152311 | ||||
Free Mint | 15912437 | 846 days ago | IN | 0 ETH | 0.00162756 | ||||
Free Mint | 15912368 | 846 days ago | IN | 0 ETH | 0.00141786 | ||||
Set Approval For... | 15912324 | 846 days ago | IN | 0 ETH | 0.00053546 | ||||
Free Mint | 15912313 | 846 days ago | IN | 0 ETH | 0.00145129 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DegenBoys
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-06 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: DegenBoys.sol pragma solidity ^0.8.13; contract DegenBoys is Ownable, ERC721A { using Strings for uint256; uint256 public paid_price = 0.0088 ether; uint256 public maxNFTPerWallet = 3; uint256 public maxFreeNFTPerWallet = 1; uint256 public MAX_SUPPLY = 3333; uint256 public FREE_SUPPLY = 1111; bool public revealed = false; string public baseUri = "https://gateway.pinata.cloud/ipfs/QmYrXTe7wQhdx5vZ3DkYU79cpcks8K4C6cC22MLiex19NL/"; uint96 private royaltyBasisPoints = 1000; mapping(address => uint) public amountNFTsperWallet; mapping(address => uint) public amountNFTsperWalletFreeMint; enum MintStatus { OFF, FREE, PAID } MintStatus public mintStatus = MintStatus.OFF; constructor() ERC721A("DegenBoys", "DEGEN") {} function soldOut() external view returns (bool) { return totalSupply() == MAX_SUPPLY; } function freeSoldOut() external view returns (bool) { return totalSupply() >= FREE_SUPPLY; } function numberMinted(address owner) external view returns (uint256) { return amountNFTsperWallet[owner]; } function numberFreeMinted(address owner) external view returns (uint256) { return amountNFTsperWalletFreeMint[owner]; } function freeMint(uint _quantity) external { require(mintStatus == MintStatus.FREE, "Free mint off"); require(totalSupply() + _quantity <= FREE_SUPPLY, "Exceeds free supply"); require(_quantity + amountNFTsperWalletFreeMint[msg.sender] <= maxFreeNFTPerWallet, "You can only get one NFT on the Sale"); amountNFTsperWalletFreeMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function mint(uint _quantity) external payable { uint price = paid_price; require(price != 0, "Price is 0"); require(mintStatus == MintStatus.PAID, "Mint off"); require(totalSupply() + _quantity <= MAX_SUPPLY, "Exceeds supply"); require(_quantity + amountNFTsperWallet[msg.sender] <= maxNFTPerWallet, "You cannot have more NFTs for this transaction"); require(msg.value >= price * _quantity, "Insufficient ETH"); amountNFTsperWallet[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function devMint(uint256 _quantity) external onlyOwner { require(_quantity > 0, "INCORRECT_QUANTITY"); require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED"); _safeMint(msg.sender, _quantity); } function withdraw() external onlyOwner { require(address(this).balance > 0, "No funds to withdraw"); payable(owner()).transfer(address(this).balance); } function setRoyalty(uint96 _royaltyBasisPoints) external onlyOwner { royaltyBasisPoints = _royaltyBasisPoints; } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) { require(_exists(_tokenId), "Cannot query non-existent token"); return (owner(), (_salePrice * royaltyBasisPoints) / 10000); } function setBaseUri(string calldata _baseUri) external onlyOwner { baseUri = _baseUri; } function reveal(string calldata _baseUri) external onlyOwner { revealed = true; baseUri = _baseUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory filename = revealed ? Strings.toString(tokenId) : "hidden"; return bytes(baseUri).length != 0 ? string(abi.encodePacked(baseUri, filename, ".json")) : ''; } function setPrice(uint256 _price) external onlyOwner { paid_price = _price; } function setMintStatus(uint status) external onlyOwner { mintStatus = MintStatus(status); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletFreeMint","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeNFTPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum DegenBoys.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"paid_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royaltyBasisPoints","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
661f438daa0600006009556003600a556001600b55610d05600c55610457600d55600e805460ff1916905561010060405260516080818152906200223a60a03980516200005591600f9160209091019062000169565b50601080546001600160601b0319166103e81790556013805460ff191690553480156200008157600080fd5b5060405180604001604052806009815260200168446567656e426f797360b81b815250604051806040016040528060058152602001642222a3a2a760d91b815250620000dc620000d66200011560201b60201c565b62000119565b8151620000f190600390602085019062000169565b5080516200010790600490602084019062000169565b50506000600155506200024b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000177906200020f565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b600181811c908216806200022457607f821691505b6020821081036200024557634e487b7160e01b600052602260045260246000fd5b50919050565b611fdf806200025b6000396000f3fe6080604052600436106102565760003560e01c8063893da6c911610149578063a22cb465116100c6578063db294ba11161008a578063e5a5195211610064578063e5a51952146106e8578063e985e9c51461071e578063f2fde38b1461076757600080fd5b8063db294ba114610670578063dc33e68114610685578063e06f53ca146106bb57600080fd5b8063a22cb465146105e7578063b88d4fde14610607578063c7c5a8c01461061a578063c87b56dd14610630578063cac926691461065057600080fd5b80639858cf191161010d5780639858cf19146105625780639abc8320146105785780639da3f8fd1461058d578063a0712d68146105b4578063a0bcfc7f146105c757600080fd5b8063893da6c9146104e45780638b9320ed146104f95780638da5cb5b1461050f57806391b7f5ed1461052d57806395d89b411461054d57600080fd5b806342082fda116101d75780636352211e1161019b5780636352211e1461044f57806370a082311461046f578063715018a61461048f5780637c928fe9146104a4578063887fee31146104c457600080fd5b806342082fda146103bf57806342842e0e146103d5578063499a4687146103e85780634c26124714610415578063518302271461043557600080fd5b806323b872dd1161021e57806323b872dd146103225780632a55205a1461033557806332cb6b0c14610374578063375a069a1461038a5780633ccfd60b146103aa57600080fd5b806301ffc9a71461025b57806306fdde0314610290578063081812fc146102b2578063095ea7b3146102ea57806318160ddd146102ff575b600080fd5b34801561026757600080fd5b5061027b6102763660046119d0565b610787565b60405190151581526020015b60405180910390f35b34801561029c57600080fd5b506102a56107d9565b6040516102879190611a45565b3480156102be57600080fd5b506102d26102cd366004611a58565b61086b565b6040516001600160a01b039091168152602001610287565b6102fd6102f8366004611a8d565b6108af565b005b34801561030b57600080fd5b50600254600154035b604051908152602001610287565b6102fd610330366004611ab7565b61095c565b34801561034157600080fd5b50610355610350366004611af3565b610af4565b604080516001600160a01b039093168352602083019190915201610287565b34801561038057600080fd5b50610314600c5481565b34801561039657600080fd5b506102fd6103a5366004611a58565b610b91565b3480156103b657600080fd5b506102fd610c4c565b3480156103cb57600080fd5b50610314600b5481565b6102fd6103e3366004611ab7565b610cde565b3480156103f457600080fd5b50610314610403366004611b15565b60116020526000908152604090205481565b34801561042157600080fd5b506102fd610430366004611b30565b610cfe565b34801561044157600080fd5b50600e5461027b9060ff1681565b34801561045b57600080fd5b506102d261046a366004611a58565b610d1f565b34801561047b57600080fd5b5061031461048a366004611b15565b610d2a565b34801561049b57600080fd5b506102fd610d79565b3480156104b057600080fd5b506102fd6104bf366004611a58565b610d8d565b3480156104d057600080fd5b506102fd6104df366004611a58565b610ef2565b3480156104f057600080fd5b5061027b610f30565b34801561050557600080fd5b5061031460095481565b34801561051b57600080fd5b506000546001600160a01b03166102d2565b34801561053957600080fd5b506102fd610548366004611a58565b610f48565b34801561055957600080fd5b506102a5610f55565b34801561056e57600080fd5b50610314600d5481565b34801561058457600080fd5b506102a5610f64565b34801561059957600080fd5b506013546105a79060ff1681565b6040516102879190611bb8565b6102fd6105c2366004611a58565b610ff2565b3480156105d357600080fd5b506102fd6105e2366004611b30565b61120a565b3480156105f357600080fd5b506102fd610602366004611be0565b61121e565b6102fd610615366004611c32565b61128a565b34801561062657600080fd5b50610314600a5481565b34801561063c57600080fd5b506102a561064b366004611a58565b6112d4565b34801561065c57600080fd5b506102fd61066b366004611d0e565b61138e565b34801561067c57600080fd5b5061027b6113c2565b34801561069157600080fd5b506103146106a0366004611b15565b6001600160a01b031660009081526011602052604090205490565b3480156106c757600080fd5b506103146106d6366004611b15565b60126020526000908152604090205481565b3480156106f457600080fd5b50610314610703366004611b15565b6001600160a01b031660009081526012602052604090205490565b34801561072a57600080fd5b5061027b610739366004611d3c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561077357600080fd5b506102fd610782366004611b15565b6113db565b60006301ffc9a760e01b6001600160e01b0319831614806107b857506380ac58cd60e01b6001600160e01b03198316145b806107d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107e890611d6f565b80601f016020809104026020016040519081016040528092919081815260200182805461081490611d6f565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b600061087682611451565b610893576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108ba82610d1f565b9050336001600160a01b038216146108f3576108d68133610739565b6108f3576040516367d9dca160e11b815260040160405180910390fd5b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061096782611479565b9050836001600160a01b0316816001600160a01b03161461099a5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109e7576109ca8633610739565b6109e757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a0e57604051633a954ecd60e21b815260040160405180910390fd5b8015610a1957600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610aab57600184016000818152600560205260408120549003610aa9576001548114610aa95760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600080610b0084611451565b610b515760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6000546001600160a01b031660105461271090610b7c906bffffffffffffffffffffffff1686611dbf565b610b869190611df4565b915091509250929050565b610b996114e0565b60008111610be95760405162461bcd60e51b815260206004820152601260248201527f494e434f52524543545f5155414e5449545900000000000000000000000000006044820152606401610b48565b600c5481610bfa6002546001540390565b610c049190611e08565b1115610c3f5760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b6044820152606401610b48565b610c49338261153a565b50565b610c546114e0565b60004711610ca45760405162461bcd60e51b815260206004820152601460248201527f4e6f2066756e647320746f2077697468647261770000000000000000000000006044820152606401610b48565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610c49573d6000803e3d6000fd5b610cf98383836040518060200160405280600081525061128a565b505050565b610d066114e0565b600e805460ff19166001179055610cf9600f8383611921565b60006107d382611479565b60006001600160a01b038216610d53576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610d816114e0565b610d8b6000611554565b565b600160135460ff166002811115610da657610da6611ba2565b14610de35760405162461bcd60e51b815260206004820152600d60248201526c233932b29036b4b73a1037b33360991b6044820152606401610b48565b600d5481610df46002546001540390565b610dfe9190611e08565b1115610e4c5760405162461bcd60e51b815260206004820152601360248201527f45786365656473206672656520737570706c79000000000000000000000000006044820152606401610b48565b600b5433600090815260126020526040902054610e699083611e08565b1115610ec35760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c7920676574206f6e65204e4654206f6e207468652060448201526353616c6560e01b6064820152608401610b48565b3360009081526012602052604081208054839290610ee2908490611e08565b90915550610c499050338261153a565b610efa6114e0565b806002811115610f0c57610f0c611ba2565b6013805460ff19166001836002811115610f2857610f28611ba2565b021790555050565b6000600c54610f426002546001540390565b14905090565b610f506114e0565b600955565b6060600480546107e890611d6f565b600f8054610f7190611d6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90611d6f565b8015610fea5780601f10610fbf57610100808354040283529160200191610fea565b820191906000526020600020905b815481529060010190602001808311610fcd57829003601f168201915b505050505081565b60095460008190036110335760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610b48565b600260135460ff16600281111561104c5761104c611ba2565b146110845760405162461bcd60e51b815260206004820152600860248201526726b4b73a1037b33360c11b6044820152606401610b48565b600c54826110956002546001540390565b61109f9190611e08565b11156110ed5760405162461bcd60e51b815260206004820152600e60248201527f4578636565647320737570706c790000000000000000000000000000000000006044820152606401610b48565b600a543360009081526011602052604090205461110a9084611e08565b111561117e5760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e6e6f742068617665206d6f7265204e46547320666f7220746860448201527f6973207472616e73616374696f6e0000000000000000000000000000000000006064820152608401610b48565b6111888282611dbf565b3410156111d75760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610b48565b33600090815260116020526040812080548492906111f6908490611e08565b909155506112069050338361153a565b5050565b6112126114e0565b610cf9600f8383611921565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61129584848461095c565b6001600160a01b0383163b156112ce576112b1848484846115b1565b6112ce576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112df82611451565b6112fc57604051630a14c4b560e41b815260040160405180910390fd5b600e5460009060ff1661132d57604051806040016040528060068152602001653434b23232b760d11b815250611336565b6113368361169d565b9050600f805461134590611d6f565b90506000036113635760405180602001604052806000815250611387565b600f81604051602001611377929190611e3c565b6040516020818303038152906040525b9392505050565b6113966114e0565b601080546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6000600d546113d46002546001540390565b1015905090565b6113e36114e0565b6001600160a01b0381166114485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b48565b610c4981611554565b6000600154821080156107d3575050600090815260056020526040902054600160e01b161590565b6000816001548110156114c75760008181526005602052604081205490600160e01b821690036114c5575b806000036113875750600019016000818152600560205260409020546114a4565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610d8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b48565b6112068282604051806020016040528060008152506117b6565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115e6903390899088908890600401611ef6565b6020604051808303816000875af1925050508015611621575060408051601f3d908101601f1916820190925261161e91810190611f32565b60015b61167f573d80801561164f576040519150601f19603f3d011682016040523d82523d6000602084013e611654565b606091505b508051600003611677576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ee57806116d881611f4f565b91506116e79050600a83611df4565b91506116c8565b60008167ffffffffffffffff81111561170957611709611c1c565b6040519080825280601f01601f191660200182016040528015611733576020820181803683370190505b5090505b841561169557611748600183611f68565b9150611755600a86611f7f565b611760906030611e08565b60f81b81838151811061177557611775611f93565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506117af600a86611df4565b9450611737565b6117c08383611823565b6001600160a01b0383163b15610cf9576001548281035b6117ea60008683806001019450866115b1565b611807576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117d757816001541461181c57600080fd5b5050505050565b60015460008290036118485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118f757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118bf565b508160000361191857604051622e076360e81b815260040160405180910390fd5b60015550505050565b82805461192d90611d6f565b90600052602060002090601f01602090048101928261194f5760008555611995565b82601f106119685782800160ff19823516178555611995565b82800160010185558215611995579182015b8281111561199557823582559160200191906001019061197a565b506119a19291506119a5565b5090565b5b808211156119a157600081556001016119a6565b6001600160e01b031981168114610c4957600080fd5b6000602082840312156119e257600080fd5b8135611387816119ba565b60005b83811015611a085781810151838201526020016119f0565b838111156112ce5750506000910152565b60008151808452611a318160208601602086016119ed565b601f01601f19169290920160200192915050565b6020815260006113876020830184611a19565b600060208284031215611a6a57600080fd5b5035919050565b80356001600160a01b0381168114611a8857600080fd5b919050565b60008060408385031215611aa057600080fd5b611aa983611a71565b946020939093013593505050565b600080600060608486031215611acc57600080fd5b611ad584611a71565b9250611ae360208501611a71565b9150604084013590509250925092565b60008060408385031215611b0657600080fd5b50508035926020909101359150565b600060208284031215611b2757600080fd5b61138782611a71565b60008060208385031215611b4357600080fd5b823567ffffffffffffffff80821115611b5b57600080fd5b818501915085601f830112611b6f57600080fd5b813581811115611b7e57600080fd5b866020828501011115611b9057600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310611bda57634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611bf357600080fd5b611bfc83611a71565b915060208301358015158114611c1157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c4857600080fd5b611c5185611a71565b9350611c5f60208601611a71565b925060408501359150606085013567ffffffffffffffff80821115611c8357600080fd5b818701915087601f830112611c9757600080fd5b813581811115611ca957611ca9611c1c565b604051601f8201601f19908116603f01168101908382118183101715611cd157611cd1611c1c565b816040528281528a6020848701011115611cea57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611d2057600080fd5b81356bffffffffffffffffffffffff8116811461138757600080fd5b60008060408385031215611d4f57600080fd5b611d5883611a71565b9150611d6660208401611a71565b90509250929050565b600181811c90821680611d8357607f821691505b602082108103611da357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611dd957611dd9611da9565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e0357611e03611dde565b500490565b60008219821115611e1b57611e1b611da9565b500190565b60008151611e328185602086016119ed565b9290920192915050565b600080845481600182811c915080831680611e5857607f831692505b60208084108203611e7757634e487b7160e01b86526022600452602486fd5b818015611e8b5760018114611e9c57611ec9565b60ff19861689528489019650611ec9565b60008b81526020902060005b86811015611ec15781548b820152908501908301611ea8565b505084890196505b505050505050611eed611edc8286611e20565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f286080830184611a19565b9695505050505050565b600060208284031215611f4457600080fd5b8151611387816119ba565b600060018201611f6157611f61611da9565b5060010190565b600082821015611f7a57611f7a611da9565b500390565b600082611f8e57611f8e611dde565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f486328a3b3ab0fc69da631b2d957aa24911ccbeb3f2d71ef5789cc3876ea11064736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d597258546537775168647835765a33446b595537396370636b73384b344336634332324d4c69657831394e4c2f
Deployed Bytecode
0x6080604052600436106102565760003560e01c8063893da6c911610149578063a22cb465116100c6578063db294ba11161008a578063e5a5195211610064578063e5a51952146106e8578063e985e9c51461071e578063f2fde38b1461076757600080fd5b8063db294ba114610670578063dc33e68114610685578063e06f53ca146106bb57600080fd5b8063a22cb465146105e7578063b88d4fde14610607578063c7c5a8c01461061a578063c87b56dd14610630578063cac926691461065057600080fd5b80639858cf191161010d5780639858cf19146105625780639abc8320146105785780639da3f8fd1461058d578063a0712d68146105b4578063a0bcfc7f146105c757600080fd5b8063893da6c9146104e45780638b9320ed146104f95780638da5cb5b1461050f57806391b7f5ed1461052d57806395d89b411461054d57600080fd5b806342082fda116101d75780636352211e1161019b5780636352211e1461044f57806370a082311461046f578063715018a61461048f5780637c928fe9146104a4578063887fee31146104c457600080fd5b806342082fda146103bf57806342842e0e146103d5578063499a4687146103e85780634c26124714610415578063518302271461043557600080fd5b806323b872dd1161021e57806323b872dd146103225780632a55205a1461033557806332cb6b0c14610374578063375a069a1461038a5780633ccfd60b146103aa57600080fd5b806301ffc9a71461025b57806306fdde0314610290578063081812fc146102b2578063095ea7b3146102ea57806318160ddd146102ff575b600080fd5b34801561026757600080fd5b5061027b6102763660046119d0565b610787565b60405190151581526020015b60405180910390f35b34801561029c57600080fd5b506102a56107d9565b6040516102879190611a45565b3480156102be57600080fd5b506102d26102cd366004611a58565b61086b565b6040516001600160a01b039091168152602001610287565b6102fd6102f8366004611a8d565b6108af565b005b34801561030b57600080fd5b50600254600154035b604051908152602001610287565b6102fd610330366004611ab7565b61095c565b34801561034157600080fd5b50610355610350366004611af3565b610af4565b604080516001600160a01b039093168352602083019190915201610287565b34801561038057600080fd5b50610314600c5481565b34801561039657600080fd5b506102fd6103a5366004611a58565b610b91565b3480156103b657600080fd5b506102fd610c4c565b3480156103cb57600080fd5b50610314600b5481565b6102fd6103e3366004611ab7565b610cde565b3480156103f457600080fd5b50610314610403366004611b15565b60116020526000908152604090205481565b34801561042157600080fd5b506102fd610430366004611b30565b610cfe565b34801561044157600080fd5b50600e5461027b9060ff1681565b34801561045b57600080fd5b506102d261046a366004611a58565b610d1f565b34801561047b57600080fd5b5061031461048a366004611b15565b610d2a565b34801561049b57600080fd5b506102fd610d79565b3480156104b057600080fd5b506102fd6104bf366004611a58565b610d8d565b3480156104d057600080fd5b506102fd6104df366004611a58565b610ef2565b3480156104f057600080fd5b5061027b610f30565b34801561050557600080fd5b5061031460095481565b34801561051b57600080fd5b506000546001600160a01b03166102d2565b34801561053957600080fd5b506102fd610548366004611a58565b610f48565b34801561055957600080fd5b506102a5610f55565b34801561056e57600080fd5b50610314600d5481565b34801561058457600080fd5b506102a5610f64565b34801561059957600080fd5b506013546105a79060ff1681565b6040516102879190611bb8565b6102fd6105c2366004611a58565b610ff2565b3480156105d357600080fd5b506102fd6105e2366004611b30565b61120a565b3480156105f357600080fd5b506102fd610602366004611be0565b61121e565b6102fd610615366004611c32565b61128a565b34801561062657600080fd5b50610314600a5481565b34801561063c57600080fd5b506102a561064b366004611a58565b6112d4565b34801561065c57600080fd5b506102fd61066b366004611d0e565b61138e565b34801561067c57600080fd5b5061027b6113c2565b34801561069157600080fd5b506103146106a0366004611b15565b6001600160a01b031660009081526011602052604090205490565b3480156106c757600080fd5b506103146106d6366004611b15565b60126020526000908152604090205481565b3480156106f457600080fd5b50610314610703366004611b15565b6001600160a01b031660009081526012602052604090205490565b34801561072a57600080fd5b5061027b610739366004611d3c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561077357600080fd5b506102fd610782366004611b15565b6113db565b60006301ffc9a760e01b6001600160e01b0319831614806107b857506380ac58cd60e01b6001600160e01b03198316145b806107d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107e890611d6f565b80601f016020809104026020016040519081016040528092919081815260200182805461081490611d6f565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b600061087682611451565b610893576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108ba82610d1f565b9050336001600160a01b038216146108f3576108d68133610739565b6108f3576040516367d9dca160e11b815260040160405180910390fd5b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061096782611479565b9050836001600160a01b0316816001600160a01b03161461099a5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109e7576109ca8633610739565b6109e757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a0e57604051633a954ecd60e21b815260040160405180910390fd5b8015610a1957600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610aab57600184016000818152600560205260408120549003610aa9576001548114610aa95760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600080610b0084611451565b610b515760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6000546001600160a01b031660105461271090610b7c906bffffffffffffffffffffffff1686611dbf565b610b869190611df4565b915091509250929050565b610b996114e0565b60008111610be95760405162461bcd60e51b815260206004820152601260248201527f494e434f52524543545f5155414e5449545900000000000000000000000000006044820152606401610b48565b600c5481610bfa6002546001540390565b610c049190611e08565b1115610c3f5760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b6044820152606401610b48565b610c49338261153a565b50565b610c546114e0565b60004711610ca45760405162461bcd60e51b815260206004820152601460248201527f4e6f2066756e647320746f2077697468647261770000000000000000000000006044820152606401610b48565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610c49573d6000803e3d6000fd5b610cf98383836040518060200160405280600081525061128a565b505050565b610d066114e0565b600e805460ff19166001179055610cf9600f8383611921565b60006107d382611479565b60006001600160a01b038216610d53576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610d816114e0565b610d8b6000611554565b565b600160135460ff166002811115610da657610da6611ba2565b14610de35760405162461bcd60e51b815260206004820152600d60248201526c233932b29036b4b73a1037b33360991b6044820152606401610b48565b600d5481610df46002546001540390565b610dfe9190611e08565b1115610e4c5760405162461bcd60e51b815260206004820152601360248201527f45786365656473206672656520737570706c79000000000000000000000000006044820152606401610b48565b600b5433600090815260126020526040902054610e699083611e08565b1115610ec35760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c7920676574206f6e65204e4654206f6e207468652060448201526353616c6560e01b6064820152608401610b48565b3360009081526012602052604081208054839290610ee2908490611e08565b90915550610c499050338261153a565b610efa6114e0565b806002811115610f0c57610f0c611ba2565b6013805460ff19166001836002811115610f2857610f28611ba2565b021790555050565b6000600c54610f426002546001540390565b14905090565b610f506114e0565b600955565b6060600480546107e890611d6f565b600f8054610f7190611d6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90611d6f565b8015610fea5780601f10610fbf57610100808354040283529160200191610fea565b820191906000526020600020905b815481529060010190602001808311610fcd57829003601f168201915b505050505081565b60095460008190036110335760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610b48565b600260135460ff16600281111561104c5761104c611ba2565b146110845760405162461bcd60e51b815260206004820152600860248201526726b4b73a1037b33360c11b6044820152606401610b48565b600c54826110956002546001540390565b61109f9190611e08565b11156110ed5760405162461bcd60e51b815260206004820152600e60248201527f4578636565647320737570706c790000000000000000000000000000000000006044820152606401610b48565b600a543360009081526011602052604090205461110a9084611e08565b111561117e5760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e6e6f742068617665206d6f7265204e46547320666f7220746860448201527f6973207472616e73616374696f6e0000000000000000000000000000000000006064820152608401610b48565b6111888282611dbf565b3410156111d75760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610b48565b33600090815260116020526040812080548492906111f6908490611e08565b909155506112069050338361153a565b5050565b6112126114e0565b610cf9600f8383611921565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61129584848461095c565b6001600160a01b0383163b156112ce576112b1848484846115b1565b6112ce576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112df82611451565b6112fc57604051630a14c4b560e41b815260040160405180910390fd5b600e5460009060ff1661132d57604051806040016040528060068152602001653434b23232b760d11b815250611336565b6113368361169d565b9050600f805461134590611d6f565b90506000036113635760405180602001604052806000815250611387565b600f81604051602001611377929190611e3c565b6040516020818303038152906040525b9392505050565b6113966114e0565b601080546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6000600d546113d46002546001540390565b1015905090565b6113e36114e0565b6001600160a01b0381166114485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b48565b610c4981611554565b6000600154821080156107d3575050600090815260056020526040902054600160e01b161590565b6000816001548110156114c75760008181526005602052604081205490600160e01b821690036114c5575b806000036113875750600019016000818152600560205260409020546114a4565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610d8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b48565b6112068282604051806020016040528060008152506117b6565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115e6903390899088908890600401611ef6565b6020604051808303816000875af1925050508015611621575060408051601f3d908101601f1916820190925261161e91810190611f32565b60015b61167f573d80801561164f576040519150601f19603f3d011682016040523d82523d6000602084013e611654565b606091505b508051600003611677576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ee57806116d881611f4f565b91506116e79050600a83611df4565b91506116c8565b60008167ffffffffffffffff81111561170957611709611c1c565b6040519080825280601f01601f191660200182016040528015611733576020820181803683370190505b5090505b841561169557611748600183611f68565b9150611755600a86611f7f565b611760906030611e08565b60f81b81838151811061177557611775611f93565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506117af600a86611df4565b9450611737565b6117c08383611823565b6001600160a01b0383163b15610cf9576001548281035b6117ea60008683806001019450866115b1565b611807576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117d757816001541461181c57600080fd5b5050505050565b60015460008290036118485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118f757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118bf565b508160000361191857604051622e076360e81b815260040160405180910390fd5b60015550505050565b82805461192d90611d6f565b90600052602060002090601f01602090048101928261194f5760008555611995565b82601f106119685782800160ff19823516178555611995565b82800160010185558215611995579182015b8281111561199557823582559160200191906001019061197a565b506119a19291506119a5565b5090565b5b808211156119a157600081556001016119a6565b6001600160e01b031981168114610c4957600080fd5b6000602082840312156119e257600080fd5b8135611387816119ba565b60005b83811015611a085781810151838201526020016119f0565b838111156112ce5750506000910152565b60008151808452611a318160208601602086016119ed565b601f01601f19169290920160200192915050565b6020815260006113876020830184611a19565b600060208284031215611a6a57600080fd5b5035919050565b80356001600160a01b0381168114611a8857600080fd5b919050565b60008060408385031215611aa057600080fd5b611aa983611a71565b946020939093013593505050565b600080600060608486031215611acc57600080fd5b611ad584611a71565b9250611ae360208501611a71565b9150604084013590509250925092565b60008060408385031215611b0657600080fd5b50508035926020909101359150565b600060208284031215611b2757600080fd5b61138782611a71565b60008060208385031215611b4357600080fd5b823567ffffffffffffffff80821115611b5b57600080fd5b818501915085601f830112611b6f57600080fd5b813581811115611b7e57600080fd5b866020828501011115611b9057600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310611bda57634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611bf357600080fd5b611bfc83611a71565b915060208301358015158114611c1157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c4857600080fd5b611c5185611a71565b9350611c5f60208601611a71565b925060408501359150606085013567ffffffffffffffff80821115611c8357600080fd5b818701915087601f830112611c9757600080fd5b813581811115611ca957611ca9611c1c565b604051601f8201601f19908116603f01168101908382118183101715611cd157611cd1611c1c565b816040528281528a6020848701011115611cea57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611d2057600080fd5b81356bffffffffffffffffffffffff8116811461138757600080fd5b60008060408385031215611d4f57600080fd5b611d5883611a71565b9150611d6660208401611a71565b90509250929050565b600181811c90821680611d8357607f821691505b602082108103611da357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611dd957611dd9611da9565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e0357611e03611dde565b500490565b60008219821115611e1b57611e1b611da9565b500190565b60008151611e328185602086016119ed565b9290920192915050565b600080845481600182811c915080831680611e5857607f831692505b60208084108203611e7757634e487b7160e01b86526022600452602486fd5b818015611e8b5760018114611e9c57611ec9565b60ff19861689528489019650611ec9565b60008b81526020902060005b86811015611ec15781548b820152908501908301611ea8565b505084890196505b505050505050611eed611edc8286611e20565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f286080830184611a19565b9695505050505050565b600060208284031215611f4457600080fd5b8151611387816119ba565b600060018201611f6157611f61611da9565b5060010190565b600082821015611f7a57611f7a611da9565b500390565b600082611f8e57611f8e611dde565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f486328a3b3ab0fc69da631b2d957aa24911ccbeb3f2d71ef5789cc3876ea11064736f6c634300080d0033
Deployed Bytecode Sourcemap
57587:3983:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24494:639;;;;;;;;;;-1:-1:-1;24494:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24494:639:0;;;;;;;;25396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31887:218::-;;;;;;;;;;-1:-1:-1;31887:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;31887:218:0;1550:226:1;31320:408:0;;;;;;:::i;:::-;;:::i;:::-;;21147:323;;;;;;;;;;-1:-1:-1;21421:12:0;;21405:13;;:28;21147:323;;;2387:25:1;;;2375:2;2360:18;21147:323:0;2241:177:1;35526:2825:0;;;;;;:::i;:::-;;:::i;60477:273::-;;;;;;;;;;-1:-1:-1;60477:273:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3201:55:1;;;3183:74;;3288:2;3273:18;;3266:34;;;;3156:18;60477:273:0;3009:297:1;57802:32:0;;;;;;;;;;;;;;;;59908:244;;;;;;;;;;-1:-1:-1;59908:244:0;;;;;:::i;:::-;;:::i;60160:175::-;;;;;;;;;;;;;:::i;57757:38::-;;;;;;;;;;;;;;;;38447:193;;;;;;:::i;:::-;;:::i;58081:51::-;;;;;;;;;;-1:-1:-1;58081:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;60868:124;;;;;;;;;;-1:-1:-1;60868:124:0;;;;;:::i;:::-;;:::i;57883:28::-;;;;;;;;;;-1:-1:-1;57883:28:0;;;;;;;;26789:152;;;;;;;;;;-1:-1:-1;26789:152:0;;;;;:::i;:::-;;:::i;22331:233::-;;;;;;;;;;-1:-1:-1;22331:233:0;;;;;:::i;:::-;;:::i;5273:103::-;;;;;;;;;;;;;:::i;58881:440::-;;;;;;;;;;-1:-1:-1;58881:440:0;;;;;:::i;:::-;;:::i;61462:105::-;;;;;;;;;;-1:-1:-1;61462:105:0;;;;;:::i;:::-;;:::i;58392:101::-;;;;;;;;;;;;;:::i;57669:40::-;;;;;;;;;;;;;;;;4625:87;;;;;;;;;;-1:-1:-1;4671:7:0;4698:6;-1:-1:-1;;;;;4698:6:0;4625:87;;61363:91;;;;;;;;;;-1:-1:-1;61363:91:0;;;;;:::i;:::-;;:::i;25572:104::-;;;;;;;;;;;;;:::i;57841:33::-;;;;;;;;;;;;;;;;57918:107;;;;;;;;;;;;;:::i;58284:45::-;;;;;;;;;;-1:-1:-1;58284:45:0;;;;;;;;;;;;;;;:::i;59329:571::-;;;;;;:::i;:::-;;:::i;60758:102::-;;;;;;;;;;-1:-1:-1;60758:102:0;;;;;:::i;:::-;;:::i;32445:234::-;;;;;;;;;;-1:-1:-1;32445:234:0;;;;;:::i;:::-;;:::i;39238:407::-;;;;;;:::i;:::-;;:::i;57716:34::-;;;;;;;;;;;;;;;;61000:355;;;;;;;;;;-1:-1:-1;61000:355:0;;;;;:::i;:::-;;:::i;60343:126::-;;;;;;;;;;-1:-1:-1;60343:126:0;;;;;:::i;:::-;;:::i;58501:106::-;;;;;;;;;;;;;:::i;58615:121::-;;;;;;;;;;-1:-1:-1;58615:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;58702:26:0;58675:7;58702:26;;;:19;:26;;;;;;;58615:121;58139:59;;;;;;;;;;-1:-1:-1;58139:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;58744:133;;;;;;;;;;-1:-1:-1;58744:133:0;;;;;:::i;:::-;-1:-1:-1;;;;;58835:34:0;58808:7;58835:34;;;:27;:34;;;;;;;58744:133;32836:164;;;;;;;;;;-1:-1:-1;32836:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32957:25:0;;;32933:4;32957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32836:164;5531:201;;;;;;;;;;-1:-1:-1;5531:201:0;;;;;:::i;:::-;;:::i;24494:639::-;24579:4;-1:-1:-1;;;;;;;;;24903:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24980:25:0;;;24903:102;:179;;;-1:-1:-1;;;;;;;;;;25057:25:0;;;24903:179;24883:199;24494:639;-1:-1:-1;;24494:639:0:o;25396:100::-;25450:13;25483:5;25476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396:100;:::o;31887:218::-;31963:7;31988:16;31996:7;31988;:16::i;:::-;31983:64;;32013:34;;-1:-1:-1;;;32013:34:0;;;;;;;;;;;31983:64;-1:-1:-1;32067:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32067:30:0;;31887:218::o;31320:408::-;31409:13;31425:16;31433:7;31425;:16::i;:::-;31409:32;-1:-1:-1;55653:10:0;-1:-1:-1;;;;;31458:28:0;;;31454:175;;31506:44;31523:5;55653:10;32836:164;:::i;31506:44::-;31501:128;;31578:35;;-1:-1:-1;;;31578:35:0;;;;;;;;;;;31501:128;31641:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;31641:35:0;-1:-1:-1;;;;;31641:35:0;;;;;;;;;31692:28;;31641:24;;31692:28;;;;;;;31398:330;31320:408;;:::o;35526:2825::-;35668:27;35698;35717:7;35698:18;:27::i;:::-;35668:57;;35783:4;-1:-1:-1;;;;;35742:45:0;35758:19;-1:-1:-1;;;;;35742:45:0;;35738:86;;35796:28;;-1:-1:-1;;;35796:28:0;;;;;;;;;;;35738:86;35838:27;34634:24;;;:15;:24;;;;;34862:26;;55653:10;34259:30;;;-1:-1:-1;;;;;33952:28:0;;34237:20;;;34234:56;36024:180;;36117:43;36134:4;55653:10;32836:164;:::i;36117:43::-;36112:92;;36169:35;;-1:-1:-1;;;36169:35:0;;;;;;;;;;;36112:92;-1:-1:-1;;;;;36221:16:0;;36217:52;;36246:23;;-1:-1:-1;;;36246:23:0;;;;;;;;;;;36217:52;36418:15;36415:160;;;36558:1;36537:19;36530:30;36415:160;-1:-1:-1;;;;;36955:24:0;;;;;;;:18;:24;;;;;;36953:26;;-1:-1:-1;;36953:26:0;;;37024:22;;;;;;;;;37022:24;;-1:-1:-1;37022:24:0;;;30178:11;30153:23;30149:41;30136:63;-1:-1:-1;;;30136:63:0;37317:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;37612:47:0;;:52;;37608:627;;37717:1;37707:11;;37685:19;37840:30;;;:17;:30;;;;;;:35;;37836:384;;37978:13;;37963:11;:28;37959:242;;38125:30;;;;:17;:30;;;;;:52;;;37959:242;37666:569;37608:627;38282:7;38278:2;-1:-1:-1;;;;;38263:27:0;38272:4;-1:-1:-1;;;;;38263:27:0;;;;;;;;;;;35657:2694;;;35526:2825;;;:::o;60477:273::-;60559:16;60577:21;60619:17;60627:8;60619:7;:17::i;:::-;60611:61;;;;-1:-1:-1;;;60611:61:0;;7355:2:1;60611:61:0;;;7337:21:1;7394:2;7374:18;;;7367:30;7433:33;7413:18;;;7406:61;7484:18;;60611:61:0;;;;;;;;;4671:7;4698:6;-1:-1:-1;;;;;4698:6:0;60714:18;;60736:5;;60701:31;;60714:18;;60701:10;:31;:::i;:::-;60700:41;;;;:::i;:::-;60683:59;;;;60477:273;;;;;:::o;59908:244::-;4511:13;:11;:13::i;:::-;59994:1:::1;59982:9;:13;59974:44;;;::::0;-1:-1:-1;;;59974:44:0;;8277:2:1;59974:44:0::1;::::0;::::1;8259:21:1::0;8316:2;8296:18;;;8289:30;8355:20;8335:18;;;8328:48;8393:18;;59974:44:0::1;8075:342:1::0;59974:44:0::1;60066:10;;60053:9;60037:13;21421:12:::0;;21405:13;;:28;;21147:323;60037:13:::1;:25;;;;:::i;:::-;:39;;60029:62;;;::::0;-1:-1:-1;;;60029:62:0;;8757:2:1;60029:62:0::1;::::0;::::1;8739:21:1::0;8796:2;8776:18;;;8769:30;-1:-1:-1;;;8815:18:1;;;8808:40;8865:18;;60029:62:0::1;8555:334:1::0;60029:62:0::1;60112:32;60122:10;60134:9;60112;:32::i;:::-;59908:244:::0;:::o;60160:175::-;4511:13;:11;:13::i;:::-;60242:1:::1;60218:21;:25;60210:58;;;::::0;-1:-1:-1;;;60210:58:0;;9096:2:1;60210:58:0::1;::::0;::::1;9078:21:1::0;9135:2;9115:18;;;9108:30;9174:22;9154:18;;;9147:50;9214:18;;60210:58:0::1;8894:344:1::0;60210:58:0::1;4671:7:::0;4698:6;;60279:48:::1;::::0;-1:-1:-1;;;;;4698:6:0;;;;60305:21:::1;60279:48:::0;::::1;;;::::0;60305:21;;60279:48;4671:7;60279:48;60305:21;4698:6;60279:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;38447:193:::0;38593:39;38610:4;38616:2;38620:7;38593:39;;;;;;;;;;;;:16;:39::i;:::-;38447:193;;;:::o;60868:124::-;4511:13;:11;:13::i;:::-;60940:8:::1;:15:::0;;-1:-1:-1;;60940:15:0::1;60951:4;60940:15;::::0;;60966:18:::1;:7;60976:8:::0;;60966:18:::1;:::i;26789:152::-:0;26861:7;26904:27;26923:7;26904:18;:27::i;22331:233::-;22403:7;-1:-1:-1;;;;;22427:19:0;;22423:60;;22455:28;;-1:-1:-1;;;22455:28:0;;;;;;;;;;;22423:60;-1:-1:-1;;;;;;22501:25:0;;;;;:18;:25;;;;;;16490:13;22501:55;;22331:233::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;58881:440::-;58957:15;58943:10;;;;:29;;;;;;;;:::i;:::-;;58935:55;;;;-1:-1:-1;;;58935:55:0;;9445:2:1;58935:55:0;;;9427:21:1;9484:2;9464:18;;;9457:30;-1:-1:-1;;;9503:18:1;;;9496:43;9556:18;;58935:55:0;9243:337:1;58935:55:0;59038:11;;59025:9;59009:13;21421:12;;21405:13;;:28;;21147:323;59009:13;:25;;;;:::i;:::-;:40;;59001:72;;;;-1:-1:-1;;;59001:72:0;;9787:2:1;59001:72:0;;;9769:21:1;9826:2;9806:18;;;9799:30;9865:21;9845:18;;;9838:49;9904:18;;59001:72:0;9585:343:1;59001:72:0;59147:19;;59132:10;59104:39;;;;:27;:39;;;;;;59092:51;;:9;:51;:::i;:::-;:74;;59084:123;;;;-1:-1:-1;;;59084:123:0;;10135:2:1;59084:123:0;;;10117:21:1;10174:2;10154:18;;;10147:30;10213:34;10193:18;;;10186:62;-1:-1:-1;;;10264:18:1;;;10257:34;10308:19;;59084:123:0;9933:400:1;59084:123:0;59246:10;59218:39;;;;:27;:39;;;;;:52;;59261:9;;59218:39;:52;;59261:9;;59218:52;:::i;:::-;;;;-1:-1:-1;59281:32:0;;-1:-1:-1;59291:10:0;59303:9;59281;:32::i;61462:105::-;4511:13;:11;:13::i;:::-;61552:6:::1;61541:18;;;;;;;;:::i;:::-;61528:10;:31:::0;;-1:-1:-1;;61528:31:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;61462:105:::0;:::o;58392:101::-;58434:4;58475:10;;58458:13;21421:12;;21405:13;;:28;;21147:323;58458:13;:27;58451:34;;58392:101;:::o;61363:91::-;4511:13;:11;:13::i;:::-;61427:10:::1;:19:::0;61363:91::o;25572:104::-;25628:13;25661:7;25654:14;;;;;:::i;57918:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59329:571::-;59400:10;;59387;59429;;;59421:33;;;;-1:-1:-1;;;59421:33:0;;10540:2:1;59421:33:0;;;10522:21:1;10579:2;10559:18;;;10552:30;-1:-1:-1;;;10598:18:1;;;10591:40;10648:18;;59421:33:0;10338:334:1;59421:33:0;59487:15;59473:10;;;;:29;;;;;;;;:::i;:::-;;59465:50;;;;-1:-1:-1;;;59465:50:0;;10879:2:1;59465:50:0;;;10861:21:1;10918:1;10898:18;;;10891:29;-1:-1:-1;;;10936:18:1;;;10929:38;10984:18;;59465:50:0;10677:331:1;59465:50:0;59563:10;;59550:9;59534:13;21421:12;;21405:13;;:28;;21147:323;59534:13;:25;;;;:::i;:::-;:39;;59526:66;;;;-1:-1:-1;;;59526:66:0;;11215:2:1;59526:66:0;;;11197:21:1;11254:2;11234:18;;;11227:30;11293:16;11273:18;;;11266:44;11327:18;;59526:66:0;11013:338:1;59526:66:0;59658:15;;59643:10;59623:31;;;;:19;:31;;;;;;59611:43;;:9;:43;:::i;:::-;:62;;59603:121;;;;-1:-1:-1;;;59603:121:0;;11558:2:1;59603:121:0;;;11540:21:1;11597:2;11577:18;;;11570:30;11636:34;11616:18;;;11609:62;11707:16;11687:18;;;11680:44;11741:19;;59603:121:0;11356:410:1;59603:121:0;59756:17;59764:9;59756:5;:17;:::i;:::-;59743:9;:30;;59735:59;;;;-1:-1:-1;;;59735:59:0;;11973:2:1;59735:59:0;;;11955:21:1;12012:2;11992:18;;;11985:30;12051:18;12031;;;12024:46;12087:18;;59735:59:0;11771:340:1;59735:59:0;59825:10;59805:31;;;;:19;:31;;;;;:44;;59840:9;;59805:31;:44;;59840:9;;59805:44;:::i;:::-;;;;-1:-1:-1;59860:32:0;;-1:-1:-1;59870:10:0;59882:9;59860;:32::i;:::-;59376:524;59329:571;:::o;60758:102::-;4511:13;:11;:13::i;:::-;60834:18:::1;:7;60844:8:::0;;60834:18:::1;:::i;32445:234::-:0;55653:10;32540:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32540:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32540:60:0;;;;;;;;;;32616:55;;540:41:1;;;32540:49:0;;55653:10;32616:55;;513:18:1;32616:55:0;;;;;;;32445:234;;:::o;39238:407::-;39413:31;39426:4;39432:2;39436:7;39413:12;:31::i;:::-;-1:-1:-1;;;;;39459:14:0;;;:19;39455:183;;39498:56;39529:4;39535:2;39539:7;39548:5;39498:30;:56::i;:::-;39493:145;;39582:40;;-1:-1:-1;;;39582:40:0;;;;;;;;;;;39493:145;39238:407;;;;:::o;61000:355::-;61073:13;61104:16;61112:7;61104;:16::i;:::-;61099:59;;61129:29;;-1:-1:-1;;;61129:29:0;;;;;;;;;;;61099:59;61196:8;;61171:22;;61196:8;;:47;;;;;;;;;;;;;;;-1:-1:-1;;;61196:47:0;;;;;;61207:25;61224:7;61207:16;:25::i;:::-;61171:72;;61267:7;61261:21;;;;;:::i;:::-;;;61286:1;61261:26;:86;;;;;;;;;;;;;;;;;61314:7;61323:8;61297:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61261:86;61254:93;61000:355;-1:-1:-1;;;61000:355:0:o;60343:126::-;4511:13;:11;:13::i;:::-;60421:18:::1;:40:::0;;-1:-1:-1;;60421:40:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;60343:126::o;58501:106::-;58547:4;58588:11;;58571:13;21421:12;;21405:13;;:28;;21147:323;58571:13;:28;;58564:35;;58501:106;:::o;5531:201::-;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;14058:2:1;5612:73:0::1;::::0;::::1;14040:21:1::0;14097:2;14077:18;;;14070:30;14136:34;14116:18;;;14109:62;-1:-1:-1;;;14187:18:1;;;14180:36;14233:19;;5612:73:0::1;13856:402:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;33258:282::-:0;33323:4;33413:13;;33403:7;:23;33360:153;;;;-1:-1:-1;;33464:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33464:44:0;:49;;33258:282::o;27944:1275::-;28011:7;28046;28148:13;;28141:4;:20;28137:1015;;;28186:14;28203:23;;;:17;:23;;;;;;;-1:-1:-1;;;28292:24:0;;:29;;28288:845;;28957:113;28964:6;28974:1;28964:11;28957:113;;-1:-1:-1;;;29035:6:0;29017:25;;;;:17;:25;;;;;;28957:113;;28288:845;28163:989;28137:1015;29180:31;;-1:-1:-1;;;29180:31:0;;;;;;;;;;;4790:132;4671:7;4698:6;-1:-1:-1;;;;;4698:6:0;55653:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;14465:2:1;4846:68:0;;;14447:21:1;;;14484:18;;;14477:30;14543:34;14523:18;;;14516:62;14595:18;;4846:68:0;14263:356:1;49398:112:0;49475:27;49485:2;49489:8;49475:27;;;;;;;;;;;;:9;:27::i;5892:191::-;5966:16;5985:6;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;6002:17:0;;;;;;6035:40;;5985:6;;;;;;;6035:40;;5966:16;6035:40;5955:128;5892:191;:::o;41729:716::-;41913:88;;-1:-1:-1;;;41913:88:0;;41892:4;;-1:-1:-1;;;;;41913:45:0;;;;;:88;;55653:10;;41980:4;;41986:7;;41995:5;;41913:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41913:88:0;;;;;;;;-1:-1:-1;;41913:88:0;;;;;;;;;;;;:::i;:::-;;;41909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42196:6;:13;42213:1;42196:18;42192:235;;42242:40;;-1:-1:-1;;;42242:40:0;;;;;;;;;;;42192:235;42385:6;42379:13;42370:6;42366:2;42362:15;42355:38;41909:529;-1:-1:-1;;;;;;42072:64:0;-1:-1:-1;;;42072:64:0;;-1:-1:-1;41909:529:0;41729:716;;;;;;:::o;430:723::-;486:13;707:5;716:1;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;48625:689;48756:19;48762:2;48766:8;48756:5;:19::i;:::-;-1:-1:-1;;;;;48817:14:0;;;:19;48813:483;;48871:13;;48919:14;;;48952:233;48983:62;49022:1;49026:2;49030:7;;;;;;49039:5;48983:30;:62::i;:::-;48978:167;;49081:40;;-1:-1:-1;;;49081:40:0;;;;;;;;;;;48978:167;49180:3;49172:5;:11;48952:233;;49267:3;49250:13;;:20;49246:34;;49272:8;;;49246:34;48838:458;;48625:689;;;:::o;42907:2966::-;43003:13;;42980:20;43031:13;;;43027:44;;43053:18;;-1:-1:-1;;;43053:18:0;;;;;;;;;;;43027:44;-1:-1:-1;;;;;43559:22:0;;;;;;:18;:22;;;;16628:2;43559:22;;;:71;;43597:32;43585:45;;43559:71;;;43873:31;;;:17;:31;;;;;-1:-1:-1;30609:15:0;;30583:24;30579:46;30178:11;30153:23;30149:41;30146:52;30136:63;;43873:173;;44108:23;;;;43873:31;;43559:22;;44873:25;43559:22;;44726:335;45387:1;45373:12;45369:20;45327:346;45428:3;45419:7;45416:16;45327:346;;45646:7;45636:8;45633:1;45606:25;45603:1;45600;45595:59;45481:1;45468:15;45327:346;;;45331:77;45706:8;45718:1;45706:13;45702:45;;45728:19;;-1:-1:-1;;;45728:19:0;;;;;;;;;;;45702:45;45764:13;:19;-1:-1:-1;38447:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2423:328::-;2500:6;2508;2516;2569:2;2557:9;2548:7;2544:23;2540:32;2537:52;;;2585:1;2582;2575:12;2537:52;2608:29;2627:9;2608:29;:::i;:::-;2598:39;;2656:38;2690:2;2679:9;2675:18;2656:38;:::i;:::-;2646:48;;2741:2;2730:9;2726:18;2713:32;2703:42;;2423:328;;;;;:::o;2756:248::-;2824:6;2832;2885:2;2873:9;2864:7;2860:23;2856:32;2853:52;;;2901:1;2898;2891:12;2853:52;-1:-1:-1;;2924:23:1;;;2994:2;2979:18;;;2966:32;;-1:-1:-1;2756:248:1:o;3311:186::-;3370:6;3423:2;3411:9;3402:7;3398:23;3394:32;3391:52;;;3439:1;3436;3429:12;3391:52;3462:29;3481:9;3462:29;:::i;3502:592::-;3573:6;3581;3634:2;3622:9;3613:7;3609:23;3605:32;3602:52;;;3650:1;3647;3640:12;3602:52;3690:9;3677:23;3719:18;3760:2;3752:6;3749:14;3746:34;;;3776:1;3773;3766:12;3746:34;3814:6;3803:9;3799:22;3789:32;;3859:7;3852:4;3848:2;3844:13;3840:27;3830:55;;3881:1;3878;3871:12;3830:55;3921:2;3908:16;3947:2;3939:6;3936:14;3933:34;;;3963:1;3960;3953:12;3933:34;4008:7;4003:2;3994:6;3990:2;3986:15;3982:24;3979:37;3976:57;;;4029:1;4026;4019:12;3976:57;4060:2;4052:11;;;;;4082:6;;-1:-1:-1;3502:592:1;;-1:-1:-1;;;;3502:592:1:o;4099:127::-;4160:10;4155:3;4151:20;4148:1;4141:31;4191:4;4188:1;4181:15;4215:4;4212:1;4205:15;4231:343;4378:2;4363:18;;4411:1;4400:13;;4390:144;;4456:10;4451:3;4447:20;4444:1;4437:31;4491:4;4488:1;4481:15;4519:4;4516:1;4509:15;4390:144;4543:25;;;4231:343;:::o;4579:347::-;4644:6;4652;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4744:29;4763:9;4744:29;:::i;:::-;4734:39;;4823:2;4812:9;4808:18;4795:32;4870:5;4863:13;4856:21;4849:5;4846:32;4836:60;;4892:1;4889;4882:12;4836:60;4915:5;4905:15;;;4579:347;;;;;:::o;4931:127::-;4992:10;4987:3;4983:20;4980:1;4973:31;5023:4;5020:1;5013:15;5047:4;5044:1;5037:15;5063:1138;5158:6;5166;5174;5182;5235:3;5223:9;5214:7;5210:23;5206:33;5203:53;;;5252:1;5249;5242:12;5203:53;5275:29;5294:9;5275:29;:::i;:::-;5265:39;;5323:38;5357:2;5346:9;5342:18;5323:38;:::i;:::-;5313:48;;5408:2;5397:9;5393:18;5380:32;5370:42;;5463:2;5452:9;5448:18;5435:32;5486:18;5527:2;5519:6;5516:14;5513:34;;;5543:1;5540;5533:12;5513:34;5581:6;5570:9;5566:22;5556:32;;5626:7;5619:4;5615:2;5611:13;5607:27;5597:55;;5648:1;5645;5638:12;5597:55;5684:2;5671:16;5706:2;5702;5699:10;5696:36;;;5712:18;;:::i;:::-;5787:2;5781:9;5755:2;5841:13;;-1:-1:-1;;5837:22:1;;;5861:2;5833:31;5829:40;5817:53;;;5885:18;;;5905:22;;;5882:46;5879:72;;;5931:18;;:::i;:::-;5971:10;5967:2;5960:22;6006:2;5998:6;5991:18;6046:7;6041:2;6036;6032;6028:11;6024:20;6021:33;6018:53;;;6067:1;6064;6057:12;6018:53;6123:2;6118;6114;6110:11;6105:2;6097:6;6093:15;6080:46;6168:1;6163:2;6158;6150:6;6146:15;6142:24;6135:35;6189:6;6179:16;;;;;;;5063:1138;;;;;;;:::o;6206:292::-;6264:6;6317:2;6305:9;6296:7;6292:23;6288:32;6285:52;;;6333:1;6330;6323:12;6285:52;6372:9;6359:23;6422:26;6415:5;6411:38;6404:5;6401:49;6391:77;;6464:1;6461;6454:12;6503:260;6571:6;6579;6632:2;6620:9;6611:7;6607:23;6603:32;6600:52;;;6648:1;6645;6638:12;6600:52;6671:29;6690:9;6671:29;:::i;:::-;6661:39;;6719:38;6753:2;6742:9;6738:18;6719:38;:::i;:::-;6709:48;;6503:260;;;;;:::o;6768:380::-;6847:1;6843:12;;;;6890;;;6911:61;;6965:4;6957:6;6953:17;6943:27;;6911:61;7018:2;7010:6;7007:14;6987:18;6984:38;6981:161;;7064:10;7059:3;7055:20;7052:1;7045:31;7099:4;7096:1;7089:15;7127:4;7124:1;7117:15;6981:161;;6768:380;;;:::o;7513:127::-;7574:10;7569:3;7565:20;7562:1;7555:31;7605:4;7602:1;7595:15;7629:4;7626:1;7619:15;7645:168;7685:7;7751:1;7747;7743:6;7739:14;7736:1;7733:21;7728:1;7721:9;7714:17;7710:45;7707:71;;;7758:18;;:::i;:::-;-1:-1:-1;7798:9:1;;7645:168::o;7818:127::-;7879:10;7874:3;7870:20;7867:1;7860:31;7910:4;7907:1;7900:15;7934:4;7931:1;7924:15;7950:120;7990:1;8016;8006:35;;8021:18;;:::i;:::-;-1:-1:-1;8055:9:1;;7950:120::o;8422:128::-;8462:3;8493:1;8489:6;8486:1;8483:13;8480:39;;;8499:18;;:::i;:::-;-1:-1:-1;8535:9:1;;8422:128::o;12242:185::-;12284:3;12322:5;12316:12;12337:52;12382:6;12377:3;12370:4;12363:5;12359:16;12337:52;:::i;:::-;12405:16;;;;;12242:185;-1:-1:-1;;12242:185:1:o;12550:1301::-;12827:3;12856:1;12889:6;12883:13;12919:3;12941:1;12969:9;12965:2;12961:18;12951:28;;13029:2;13018:9;13014:18;13051;13041:61;;13095:4;13087:6;13083:17;13073:27;;13041:61;13121:2;13169;13161:6;13158:14;13138:18;13135:38;13132:165;;-1:-1:-1;;;13196:33:1;;13252:4;13249:1;13242:15;13282:4;13203:3;13270:17;13132:165;13313:18;13340:104;;;;13458:1;13453:320;;;;13306:467;;13340:104;-1:-1:-1;;13373:24:1;;13361:37;;13418:16;;;;-1:-1:-1;13340:104:1;;13453:320;12189:1;12182:14;;;12226:4;12213:18;;13548:1;13562:165;13576:6;13573:1;13570:13;13562:165;;;13654:14;;13641:11;;;13634:35;13697:16;;;;13591:10;;13562:165;;;13566:3;;13756:6;13751:3;13747:16;13740:23;;13306:467;;;;;;;13789:56;13814:30;13840:3;13832:6;13814:30;:::i;:::-;-1:-1:-1;;;12492:20:1;;12537:1;12528:11;;12432:113;13789:56;13782:63;12550:1301;-1:-1:-1;;;;;12550:1301:1:o;14624:523::-;14818:4;-1:-1:-1;;;;;14928:2:1;14920:6;14916:15;14905:9;14898:34;14980:2;14972:6;14968:15;14963:2;14952:9;14948:18;14941:43;;15020:6;15015:2;15004:9;15000:18;14993:34;15063:3;15058:2;15047:9;15043:18;15036:31;15084:57;15136:3;15125:9;15121:19;15113:6;15084:57;:::i;:::-;15076:65;14624:523;-1:-1:-1;;;;;;14624:523:1:o;15152:249::-;15221:6;15274:2;15262:9;15253:7;15249:23;15245:32;15242:52;;;15290:1;15287;15280:12;15242:52;15322:9;15316:16;15341:30;15365:5;15341:30;:::i;15406:135::-;15445:3;15466:17;;;15463:43;;15486:18;;:::i;:::-;-1:-1:-1;15533:1:1;15522:13;;15406:135::o;15546:125::-;15586:4;15614:1;15611;15608:8;15605:34;;;15619:18;;:::i;:::-;-1:-1:-1;15656:9:1;;15546:125::o;15676:112::-;15708:1;15734;15724:35;;15739:18;;:::i;:::-;-1:-1:-1;15773:9:1;;15676:112::o;15793:127::-;15854:10;15849:3;15845:20;15842:1;15835:31;15885:4;15882:1;15875:15;15909:4;15906:1;15899:15
Swarm Source
ipfs://f486328a3b3ab0fc69da631b2d957aa24911ccbeb3f2d71ef5789cc3876ea110
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.