ERC-721
Overview
Max Total Supply
1,416 SaudiApe
Holders
91
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SaudiApeLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SaudiApe
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-16 */ // SPDX-License-Identifier: MIT // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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: @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: mint/mint.sol pragma solidity >= 0.8.9 < 0.9.0; error AddressNotAllowlistVerified(); contract SaudiApe is Ownable, ERC721A { uint256 public immutable maxPerAddressDuringMint; uint256 public immutable collectionSize; uint256 public immutable amountForDevs; struct SaleConfig { uint32 publicSaleStartTime; uint64 publicPriceWei; } SaleConfig public saleConfig; // metadata URI string private _baseTokenURI; constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForDevs_ ) ERC721A("SaudiApe", "SaudiApe") { require( maxBatchSize_ < collectionSize_, "MaxBarchSize should be smaller than collectionSize" ); maxPerAddressDuringMint = maxBatchSize_; collectionSize = collectionSize_; amountForDevs = amountForDevs_; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function devMint(uint256 quantity) external onlyOwner { require( quantity <= amountForDevs, "Too many already minted before dev mint" ); require( totalSupply() + quantity <= collectionSize, "Reached max supply" ); _safeMint(msg.sender, quantity); } // Public Mint // ***************************************************************************** // Public Functions function mint(uint256 quantity) external payable callerIsUser { require(isPublicSaleOn(), "Public sale has not begun yet"); require( totalSupply() + quantity <= collectionSize, "Reached max supply" ); require( numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint, "Reached max quantity that one wallet can mint" ); uint256 priceWei = quantity * saleConfig.publicPriceWei; _safeMint(msg.sender, quantity); refundIfOver(priceWei); } function isPublicSaleOn() public view returns(bool) { require( saleConfig.publicSaleStartTime != 0, "Public Sale Time is TBD." ); return block.timestamp >= saleConfig.publicSaleStartTime; } // Owner Controls // Public Views // ***************************************************************************** function numberMinted(address minter) public view returns(uint256) { return _numberMinted(minter); } // Contract Controls (onlyOwner) // ***************************************************************************** function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{ value: address(this).balance } (""); require(success, "Transfer failed."); } function setupNonAuctionSaleInfo( uint64 publicPriceWei, uint32 publicSaleStartTime ) public onlyOwner { saleConfig = SaleConfig( publicSaleStartTime, publicPriceWei ); } // Internal Functions // ***************************************************************************** function refundIfOver(uint256 price) internal { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function _baseURI() internal view virtual override returns(string memory) { return _baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"}],"stateMutability":"view","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":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupNonAuctionSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b506040516200358d3803806200358d833981810160405281019062000037919062000334565b6040518060400160405280600881526020017f53617564694170650000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f5361756469417065000000000000000000000000000000000000000000000000815250620000c3620000b76200017360201b60201c565b6200017b60201b60201c565b8160039080519060200190620000db92919062000244565b508060049080519060200190620000f492919062000244565b50620001056200023f60201b60201c565b600181905550505081831062000152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001499062000417565b60405180910390fd5b82608081815250508160a081815250508060c081815250505050506200049e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620002529062000468565b90600052602060002090601f016020900481019282620002765760008555620002c2565b82601f106200029157805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c1578251825591602001919060010190620002a4565b5b509050620002d19190620002d5565b5090565b5b80821115620002f0576000816000905550600101620002d6565b5090565b600080fd5b6000819050919050565b6200030e81620002f9565b81146200031a57600080fd5b50565b6000815190506200032e8162000303565b92915050565b60008060006060848603121562000350576200034f620002f4565b5b600062000360868287016200031d565b935050602062000373868287016200031d565b925050604062000386868287016200031d565b9150509250925092565b600082825260208201905092915050565b7f4d6178426172636853697a652073686f756c6420626520736d616c6c6572207460008201527f68616e20636f6c6c656374696f6e53697a650000000000000000000000000000602082015250565b6000620003ff60328362000390565b91506200040c82620003a1565b604082019050919050565b600060208201905081810360008301526200043281620003f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048157607f821691505b6020821081141562000498576200049762000439565b5b50919050565b60805160a05160c0516130a3620004ea60003960008181610cd30152611773015260008181610d3601528181610e5c0152611147015260008181610f7d01526111bc01526130a36000f3fe6080604052600436106101b75760003560e01c80638bc35c2f116100ec578063b88d4fde1161008a578063dc33e68111610064578063dc33e681146105d8578063e985e9c514610615578063f2fde38b14610652578063fbe1aa511461067b576101b7565b8063b88d4fde14610549578063c6ded24a14610572578063c87b56dd1461059b576101b7565b806395d89b41116100c657806395d89b41146104c2578063a0712d68146104ed578063a22cb46514610509578063ac44600214610532576101b7565b80638bc35c2f146104405780638da5cb5b1461046b57806390aa0b0f14610496576101b7565b80633f5e47411161015957806355f804b31161013357806355f804b3146103865780636352211e146103af57806370a08231146103ec578063715018a614610429576101b7565b80633f5e47411461030757806342842e0e1461033257806345c0f5331461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063375a069a146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121bf565b6106a6565b6040516101f09190612207565b60405180910390f35b34801561020557600080fd5b5061020e610738565b60405161021b91906122bb565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612313565b6107ca565b6040516102589190612381565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906123c8565b610849565b005b34801561029657600080fd5b5061029f61098d565b6040516102ac9190612417565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612432565b6109a4565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612313565b610cc9565b005b34801561031357600080fd5b5061031c610db6565b6040516103299190612207565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612432565b610e3a565b005b34801561036757600080fd5b50610370610e5a565b60405161037d9190612417565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906124ea565b610e7e565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612313565b610e9c565b6040516103e39190612381565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612537565b610eae565b6040516104209190612417565b60405180910390f35b34801561043557600080fd5b5061043e610f67565b005b34801561044c57600080fd5b50610455610f7b565b6040516104629190612417565b60405180910390f35b34801561047757600080fd5b50610480610f9f565b60405161048d9190612381565b60405180910390f35b3480156104a257600080fd5b506104ab610fc8565b6040516104b99291906125a6565b60405180910390f35b3480156104ce57600080fd5b506104d7610ffe565b6040516104e491906122bb565b60405180910390f35b61050760048036038101906105029190612313565b611090565b005b34801561051557600080fd5b50610530600480360381019061052b91906125fb565b61127a565b005b34801561053e57600080fd5b506105476113f2565b005b34801561055557600080fd5b50610570600480360381019061056b919061276b565b6114a9565b005b34801561057e57600080fd5b5061059960048036038101906105949190612846565b61151c565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612313565b6115a8565b6040516105cf91906122bb565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190612537565b611647565b60405161060c9190612417565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612886565b611659565b6040516106499190612207565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612537565b6116ed565b005b34801561068757600080fd5b50610690611771565b60405161069d9190612417565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610747906128f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610773906128f5565b80156107c05780601f10610795576101008083540402835291602001916107c0565b820191906000526020600020905b8154815290600101906020018083116107a357829003601f168201915b5050505050905090565b60006107d582611795565b61080b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085482610e9c565b90508073ffffffffffffffffffffffffffffffffffffffff166108756117f4565b73ffffffffffffffffffffffffffffffffffffffff16146108d8576108a18161089c6117f4565b611659565b6108d7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109976117fc565b6002546001540303905090565b60006109af82611801565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a16576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a22846118cf565b91509150610a388187610a336117f4565b6118f6565b610a8457610a4d86610a486117f4565b611659565b610a83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aeb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af8868686600161193a565b8015610b0357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd185610bad888887611940565b7c020000000000000000000000000000000000000000000000000000000017611968565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c59576000600185019050600060056000838152602001908152602001600020541415610c57576001548114610c56578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc18686866001611993565b505050505050565b610cd1611999565b7f0000000000000000000000000000000000000000000000000000000000000000811115610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90612999565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610d5e61098d565b610d6891906129e8565b1115610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090612a8a565b60405180910390fd5b610db33382611a17565b50565b600080600960000160009054906101000a900463ffffffff1663ffffffff161415610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612af6565b60405180910390fd5b600960000160009054906101000a900463ffffffff1663ffffffff16421015905090565b610e55838383604051806020016040528060008152506114a9565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e86611999565b8181600a9190610e979291906120b0565b505050565b6000610ea782611801565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f6f611999565b610f796000611a35565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60098060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff16905082565b60606004805461100d906128f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906128f5565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590612b62565b60405180910390fd5b611106610db6565b611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612bce565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161116f61098d565b61117991906129e8565b11156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190612a8a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816111e533611647565b6111ef91906129e8565b1115611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790612c60565b60405180910390fd5b6000600960000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16826112619190612c80565b905061126d3383611a17565b61127681611af9565b5050565b6112826117f4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006112f46117f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a16117f4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e69190612207565b60405180910390a35050565b6113fa611999565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161142090612d0b565b60006040518083038185875af1925050503d806000811461145d576040519150601f19603f3d011682016040523d82523d6000602084013e611462565b606091505b50509050806114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90612d6c565b60405180910390fd5b50565b6114b48484846109a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611516576114df84848484611b9a565b611515576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611524611999565b60405180604001604052808263ffffffff1681526020018367ffffffffffffffff16815250600960008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505050565b60606115b382611795565b6115e9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115f3611cfa565b9050600081511415611614576040518060200160405280600081525061163f565b8061161e84611d8c565b60405160200161162f929190612dc8565b6040516020818303038152906040525b915050919050565b600061165282611ddc565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f5611999565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90612e5e565b60405180910390fd5b61176e81611a35565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000816117a06117fc565b111580156117af575060015482105b80156117ed575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118106117fc565b11611898576001548110156118975760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611895575b600081141561188b576005600083600190039350838152602001908152602001600020549050611860565b80925050506118ca565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611957868684611e33565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119a1611e3c565b73ffffffffffffffffffffffffffffffffffffffff166119bf610f9f565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90612eca565b60405180910390fd5b565b611a31828260405180602001604052806000815250611e44565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390612f36565b60405180910390fd5b80341115611b97573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611b6a9190612f56565b9081150290604051600060405180830381858888f19350505050158015611b95573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bc06117f4565b8786866040518563ffffffff1660e01b8152600401611be29493929190612fdf565b602060405180830381600087803b158015611bfc57600080fd5b505af1925050508015611c2d57506040513d601f19601f82011682018060405250810190611c2a9190613040565b60015b611ca7573d8060008114611c5d576040519150601f19603f3d011682016040523d82523d6000602084013e611c62565b606091505b50600081511415611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d09906128f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d35906128f5565b8015611d825780601f10611d5757610100808354040283529160200191611d82565b820191906000526020600020905b815481529060010190602001808311611d6557829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611dc857600183039250600a81066030018353600a8104905080611dc357611dc8565b611d9d565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b611e4e8383611ee2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611edd5760006001549050600083820390505b611e8f6000868380600101945086611b9a565b611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e7c578160015414611eda57600080fd5b50505b505050565b600060015490506000821415611f24576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f31600084838561193a565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fa883611f996000866000611940565b611fa2856120a0565b17611968565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461204957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061200e565b506000821415612085576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061209b6000848385611993565b505050565b60006001821460e11b9050919050565b8280546120bc906128f5565b90600052602060002090601f0160209004810192826120de5760008555612125565b82601f106120f757803560ff1916838001178555612125565b82800160010185558215612125579182015b82811115612124578235825591602001919060010190612109565b5b5090506121329190612136565b5090565b5b8082111561214f576000816000905550600101612137565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61219c81612167565b81146121a757600080fd5b50565b6000813590506121b981612193565b92915050565b6000602082840312156121d5576121d461215d565b5b60006121e3848285016121aa565b91505092915050565b60008115159050919050565b612201816121ec565b82525050565b600060208201905061221c60008301846121f8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225c578082015181840152602081019050612241565b8381111561226b576000848401525b50505050565b6000601f19601f8301169050919050565b600061228d82612222565b612297818561222d565b93506122a781856020860161223e565b6122b081612271565b840191505092915050565b600060208201905081810360008301526122d58184612282565b905092915050565b6000819050919050565b6122f0816122dd565b81146122fb57600080fd5b50565b60008135905061230d816122e7565b92915050565b6000602082840312156123295761232861215d565b5b6000612337848285016122fe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236b82612340565b9050919050565b61237b81612360565b82525050565b60006020820190506123966000830184612372565b92915050565b6123a581612360565b81146123b057600080fd5b50565b6000813590506123c28161239c565b92915050565b600080604083850312156123df576123de61215d565b5b60006123ed858286016123b3565b92505060206123fe858286016122fe565b9150509250929050565b612411816122dd565b82525050565b600060208201905061242c6000830184612408565b92915050565b60008060006060848603121561244b5761244a61215d565b5b6000612459868287016123b3565b935050602061246a868287016123b3565b925050604061247b868287016122fe565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126124aa576124a9612485565b5b8235905067ffffffffffffffff8111156124c7576124c661248a565b5b6020830191508360018202830111156124e3576124e261248f565b5b9250929050565b600080602083850312156125015761250061215d565b5b600083013567ffffffffffffffff81111561251f5761251e612162565b5b61252b85828601612494565b92509250509250929050565b60006020828403121561254d5761254c61215d565b5b600061255b848285016123b3565b91505092915050565b600063ffffffff82169050919050565b61257d81612564565b82525050565b600067ffffffffffffffff82169050919050565b6125a081612583565b82525050565b60006040820190506125bb6000830185612574565b6125c86020830184612597565b9392505050565b6125d8816121ec565b81146125e357600080fd5b50565b6000813590506125f5816125cf565b92915050565b600080604083850312156126125761261161215d565b5b6000612620858286016123b3565b9250506020612631858286016125e6565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61267882612271565b810181811067ffffffffffffffff8211171561269757612696612640565b5b80604052505050565b60006126aa612153565b90506126b6828261266f565b919050565b600067ffffffffffffffff8211156126d6576126d5612640565b5b6126df82612271565b9050602081019050919050565b82818337600083830152505050565b600061270e612709846126bb565b6126a0565b90508281526020810184848401111561272a5761272961263b565b5b6127358482856126ec565b509392505050565b600082601f83011261275257612751612485565b5b81356127628482602086016126fb565b91505092915050565b600080600080608085870312156127855761278461215d565b5b6000612793878288016123b3565b94505060206127a4878288016123b3565b93505060406127b5878288016122fe565b925050606085013567ffffffffffffffff8111156127d6576127d5612162565b5b6127e28782880161273d565b91505092959194509250565b6127f781612583565b811461280257600080fd5b50565b600081359050612814816127ee565b92915050565b61282381612564565b811461282e57600080fd5b50565b6000813590506128408161281a565b92915050565b6000806040838503121561285d5761285c61215d565b5b600061286b85828601612805565b925050602061287c85828601612831565b9150509250929050565b6000806040838503121561289d5761289c61215d565b5b60006128ab858286016123b3565b92505060206128bc858286016123b3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061290d57607f821691505b60208210811415612921576129206128c6565b5b50919050565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b600061298360278361222d565b915061298e82612927565b604082019050919050565b600060208201905081810360008301526129b281612976565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129f3826122dd565b91506129fe836122dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a3357612a326129b9565b5b828201905092915050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000612a7460128361222d565b9150612a7f82612a3e565b602082019050919050565b60006020820190508181036000830152612aa381612a67565b9050919050565b7f5075626c69632053616c652054696d65206973205442442e0000000000000000600082015250565b6000612ae060188361222d565b9150612aeb82612aaa565b602082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612b4c601e8361222d565b9150612b5782612b16565b602082019050919050565b60006020820190508181036000830152612b7b81612b3f565b9050919050565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b6000612bb8601d8361222d565b9150612bc382612b82565b602082019050919050565b60006020820190508181036000830152612be781612bab565b9050919050565b7f52656163686564206d6178207175616e746974792074686174206f6e6520776160008201527f6c6c65742063616e206d696e7400000000000000000000000000000000000000602082015250565b6000612c4a602d8361222d565b9150612c5582612bee565b604082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b6000612c8b826122dd565b9150612c96836122dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ccf57612cce6129b9565b5b828202905092915050565b600081905092915050565b50565b6000612cf5600083612cda565b9150612d0082612ce5565b600082019050919050565b6000612d1682612ce8565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612d5660108361222d565b9150612d6182612d20565b602082019050919050565b60006020820190508181036000830152612d8581612d49565b9050919050565b600081905092915050565b6000612da282612222565b612dac8185612d8c565b9350612dbc81856020860161223e565b80840191505092915050565b6000612dd48285612d97565b9150612de08284612d97565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e4860268361222d565b9150612e5382612dec565b604082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb460208361222d565b9150612ebf82612e7e565b602082019050919050565b60006020820190508181036000830152612ee381612ea7565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b6000612f2060168361222d565b9150612f2b82612eea565b602082019050919050565b60006020820190508181036000830152612f4f81612f13565b9050919050565b6000612f61826122dd565b9150612f6c836122dd565b925082821015612f7f57612f7e6129b9565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b6000612fb182612f8a565b612fbb8185612f95565b9350612fcb81856020860161223e565b612fd481612271565b840191505092915050565b6000608082019050612ff46000830187612372565b6130016020830186612372565b61300e6040830185612408565b81810360608301526130208184612fa6565b905095945050505050565b60008151905061303a81612193565b92915050565b6000602082840312156130565761305561215d565b5b60006130648482850161302b565b9150509291505056fea26469706673582212201986e2b6284bdd64cf559381912fd79c60a63fd100d2d955cbcb9ee9242ef97464736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80638bc35c2f116100ec578063b88d4fde1161008a578063dc33e68111610064578063dc33e681146105d8578063e985e9c514610615578063f2fde38b14610652578063fbe1aa511461067b576101b7565b8063b88d4fde14610549578063c6ded24a14610572578063c87b56dd1461059b576101b7565b806395d89b41116100c657806395d89b41146104c2578063a0712d68146104ed578063a22cb46514610509578063ac44600214610532576101b7565b80638bc35c2f146104405780638da5cb5b1461046b57806390aa0b0f14610496576101b7565b80633f5e47411161015957806355f804b31161013357806355f804b3146103865780636352211e146103af57806370a08231146103ec578063715018a614610429576101b7565b80633f5e47411461030757806342842e0e1461033257806345c0f5331461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063375a069a146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121bf565b6106a6565b6040516101f09190612207565b60405180910390f35b34801561020557600080fd5b5061020e610738565b60405161021b91906122bb565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612313565b6107ca565b6040516102589190612381565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906123c8565b610849565b005b34801561029657600080fd5b5061029f61098d565b6040516102ac9190612417565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612432565b6109a4565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612313565b610cc9565b005b34801561031357600080fd5b5061031c610db6565b6040516103299190612207565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612432565b610e3a565b005b34801561036757600080fd5b50610370610e5a565b60405161037d9190612417565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906124ea565b610e7e565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612313565b610e9c565b6040516103e39190612381565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612537565b610eae565b6040516104209190612417565b60405180910390f35b34801561043557600080fd5b5061043e610f67565b005b34801561044c57600080fd5b50610455610f7b565b6040516104629190612417565b60405180910390f35b34801561047757600080fd5b50610480610f9f565b60405161048d9190612381565b60405180910390f35b3480156104a257600080fd5b506104ab610fc8565b6040516104b99291906125a6565b60405180910390f35b3480156104ce57600080fd5b506104d7610ffe565b6040516104e491906122bb565b60405180910390f35b61050760048036038101906105029190612313565b611090565b005b34801561051557600080fd5b50610530600480360381019061052b91906125fb565b61127a565b005b34801561053e57600080fd5b506105476113f2565b005b34801561055557600080fd5b50610570600480360381019061056b919061276b565b6114a9565b005b34801561057e57600080fd5b5061059960048036038101906105949190612846565b61151c565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612313565b6115a8565b6040516105cf91906122bb565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190612537565b611647565b60405161060c9190612417565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612886565b611659565b6040516106499190612207565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612537565b6116ed565b005b34801561068757600080fd5b50610690611771565b60405161069d9190612417565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610747906128f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610773906128f5565b80156107c05780601f10610795576101008083540402835291602001916107c0565b820191906000526020600020905b8154815290600101906020018083116107a357829003601f168201915b5050505050905090565b60006107d582611795565b61080b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085482610e9c565b90508073ffffffffffffffffffffffffffffffffffffffff166108756117f4565b73ffffffffffffffffffffffffffffffffffffffff16146108d8576108a18161089c6117f4565b611659565b6108d7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109976117fc565b6002546001540303905090565b60006109af82611801565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a16576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a22846118cf565b91509150610a388187610a336117f4565b6118f6565b610a8457610a4d86610a486117f4565b611659565b610a83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aeb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af8868686600161193a565b8015610b0357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd185610bad888887611940565b7c020000000000000000000000000000000000000000000000000000000017611968565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c59576000600185019050600060056000838152602001908152602001600020541415610c57576001548114610c56578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc18686866001611993565b505050505050565b610cd1611999565b7f00000000000000000000000000000000000000000000000000000000000003e8811115610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90612999565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001e6181610d5e61098d565b610d6891906129e8565b1115610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090612a8a565b60405180910390fd5b610db33382611a17565b50565b600080600960000160009054906101000a900463ffffffff1663ffffffff161415610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612af6565b60405180910390fd5b600960000160009054906101000a900463ffffffff1663ffffffff16421015905090565b610e55838383604051806020016040528060008152506114a9565b505050565b7f0000000000000000000000000000000000000000000000000000000000001e6181565b610e86611999565b8181600a9190610e979291906120b0565b505050565b6000610ea782611801565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f6f611999565b610f796000611a35565b565b7f000000000000000000000000000000000000000000000000000000000000000581565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60098060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff16905082565b60606004805461100d906128f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906128f5565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590612b62565b60405180910390fd5b611106610db6565b611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612bce565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001e618161116f61098d565b61117991906129e8565b11156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190612a8a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000005816111e533611647565b6111ef91906129e8565b1115611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790612c60565b60405180910390fd5b6000600960000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16826112619190612c80565b905061126d3383611a17565b61127681611af9565b5050565b6112826117f4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006112f46117f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a16117f4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e69190612207565b60405180910390a35050565b6113fa611999565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161142090612d0b565b60006040518083038185875af1925050503d806000811461145d576040519150601f19603f3d011682016040523d82523d6000602084013e611462565b606091505b50509050806114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90612d6c565b60405180910390fd5b50565b6114b48484846109a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611516576114df84848484611b9a565b611515576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611524611999565b60405180604001604052808263ffffffff1681526020018367ffffffffffffffff16815250600960008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505050565b60606115b382611795565b6115e9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115f3611cfa565b9050600081511415611614576040518060200160405280600081525061163f565b8061161e84611d8c565b60405160200161162f929190612dc8565b6040516020818303038152906040525b915050919050565b600061165282611ddc565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f5611999565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90612e5e565b60405180910390fd5b61176e81611a35565b50565b7f00000000000000000000000000000000000000000000000000000000000003e881565b6000816117a06117fc565b111580156117af575060015482105b80156117ed575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118106117fc565b11611898576001548110156118975760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611895575b600081141561188b576005600083600190039350838152602001908152602001600020549050611860565b80925050506118ca565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611957868684611e33565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119a1611e3c565b73ffffffffffffffffffffffffffffffffffffffff166119bf610f9f565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90612eca565b60405180910390fd5b565b611a31828260405180602001604052806000815250611e44565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390612f36565b60405180910390fd5b80341115611b97573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611b6a9190612f56565b9081150290604051600060405180830381858888f19350505050158015611b95573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bc06117f4565b8786866040518563ffffffff1660e01b8152600401611be29493929190612fdf565b602060405180830381600087803b158015611bfc57600080fd5b505af1925050508015611c2d57506040513d601f19601f82011682018060405250810190611c2a9190613040565b60015b611ca7573d8060008114611c5d576040519150601f19603f3d011682016040523d82523d6000602084013e611c62565b606091505b50600081511415611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d09906128f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d35906128f5565b8015611d825780601f10611d5757610100808354040283529160200191611d82565b820191906000526020600020905b815481529060010190602001808311611d6557829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611dc857600183039250600a81066030018353600a8104905080611dc357611dc8565b611d9d565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b611e4e8383611ee2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611edd5760006001549050600083820390505b611e8f6000868380600101945086611b9a565b611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e7c578160015414611eda57600080fd5b50505b505050565b600060015490506000821415611f24576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f31600084838561193a565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fa883611f996000866000611940565b611fa2856120a0565b17611968565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461204957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061200e565b506000821415612085576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061209b6000848385611993565b505050565b60006001821460e11b9050919050565b8280546120bc906128f5565b90600052602060002090601f0160209004810192826120de5760008555612125565b82601f106120f757803560ff1916838001178555612125565b82800160010185558215612125579182015b82811115612124578235825591602001919060010190612109565b5b5090506121329190612136565b5090565b5b8082111561214f576000816000905550600101612137565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61219c81612167565b81146121a757600080fd5b50565b6000813590506121b981612193565b92915050565b6000602082840312156121d5576121d461215d565b5b60006121e3848285016121aa565b91505092915050565b60008115159050919050565b612201816121ec565b82525050565b600060208201905061221c60008301846121f8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225c578082015181840152602081019050612241565b8381111561226b576000848401525b50505050565b6000601f19601f8301169050919050565b600061228d82612222565b612297818561222d565b93506122a781856020860161223e565b6122b081612271565b840191505092915050565b600060208201905081810360008301526122d58184612282565b905092915050565b6000819050919050565b6122f0816122dd565b81146122fb57600080fd5b50565b60008135905061230d816122e7565b92915050565b6000602082840312156123295761232861215d565b5b6000612337848285016122fe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236b82612340565b9050919050565b61237b81612360565b82525050565b60006020820190506123966000830184612372565b92915050565b6123a581612360565b81146123b057600080fd5b50565b6000813590506123c28161239c565b92915050565b600080604083850312156123df576123de61215d565b5b60006123ed858286016123b3565b92505060206123fe858286016122fe565b9150509250929050565b612411816122dd565b82525050565b600060208201905061242c6000830184612408565b92915050565b60008060006060848603121561244b5761244a61215d565b5b6000612459868287016123b3565b935050602061246a868287016123b3565b925050604061247b868287016122fe565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126124aa576124a9612485565b5b8235905067ffffffffffffffff8111156124c7576124c661248a565b5b6020830191508360018202830111156124e3576124e261248f565b5b9250929050565b600080602083850312156125015761250061215d565b5b600083013567ffffffffffffffff81111561251f5761251e612162565b5b61252b85828601612494565b92509250509250929050565b60006020828403121561254d5761254c61215d565b5b600061255b848285016123b3565b91505092915050565b600063ffffffff82169050919050565b61257d81612564565b82525050565b600067ffffffffffffffff82169050919050565b6125a081612583565b82525050565b60006040820190506125bb6000830185612574565b6125c86020830184612597565b9392505050565b6125d8816121ec565b81146125e357600080fd5b50565b6000813590506125f5816125cf565b92915050565b600080604083850312156126125761261161215d565b5b6000612620858286016123b3565b9250506020612631858286016125e6565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61267882612271565b810181811067ffffffffffffffff8211171561269757612696612640565b5b80604052505050565b60006126aa612153565b90506126b6828261266f565b919050565b600067ffffffffffffffff8211156126d6576126d5612640565b5b6126df82612271565b9050602081019050919050565b82818337600083830152505050565b600061270e612709846126bb565b6126a0565b90508281526020810184848401111561272a5761272961263b565b5b6127358482856126ec565b509392505050565b600082601f83011261275257612751612485565b5b81356127628482602086016126fb565b91505092915050565b600080600080608085870312156127855761278461215d565b5b6000612793878288016123b3565b94505060206127a4878288016123b3565b93505060406127b5878288016122fe565b925050606085013567ffffffffffffffff8111156127d6576127d5612162565b5b6127e28782880161273d565b91505092959194509250565b6127f781612583565b811461280257600080fd5b50565b600081359050612814816127ee565b92915050565b61282381612564565b811461282e57600080fd5b50565b6000813590506128408161281a565b92915050565b6000806040838503121561285d5761285c61215d565b5b600061286b85828601612805565b925050602061287c85828601612831565b9150509250929050565b6000806040838503121561289d5761289c61215d565b5b60006128ab858286016123b3565b92505060206128bc858286016123b3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061290d57607f821691505b60208210811415612921576129206128c6565b5b50919050565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b600061298360278361222d565b915061298e82612927565b604082019050919050565b600060208201905081810360008301526129b281612976565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129f3826122dd565b91506129fe836122dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a3357612a326129b9565b5b828201905092915050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000612a7460128361222d565b9150612a7f82612a3e565b602082019050919050565b60006020820190508181036000830152612aa381612a67565b9050919050565b7f5075626c69632053616c652054696d65206973205442442e0000000000000000600082015250565b6000612ae060188361222d565b9150612aeb82612aaa565b602082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612b4c601e8361222d565b9150612b5782612b16565b602082019050919050565b60006020820190508181036000830152612b7b81612b3f565b9050919050565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b6000612bb8601d8361222d565b9150612bc382612b82565b602082019050919050565b60006020820190508181036000830152612be781612bab565b9050919050565b7f52656163686564206d6178207175616e746974792074686174206f6e6520776160008201527f6c6c65742063616e206d696e7400000000000000000000000000000000000000602082015250565b6000612c4a602d8361222d565b9150612c5582612bee565b604082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b6000612c8b826122dd565b9150612c96836122dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ccf57612cce6129b9565b5b828202905092915050565b600081905092915050565b50565b6000612cf5600083612cda565b9150612d0082612ce5565b600082019050919050565b6000612d1682612ce8565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612d5660108361222d565b9150612d6182612d20565b602082019050919050565b60006020820190508181036000830152612d8581612d49565b9050919050565b600081905092915050565b6000612da282612222565b612dac8185612d8c565b9350612dbc81856020860161223e565b80840191505092915050565b6000612dd48285612d97565b9150612de08284612d97565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e4860268361222d565b9150612e5382612dec565b604082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb460208361222d565b9150612ebf82612e7e565b602082019050919050565b60006020820190508181036000830152612ee381612ea7565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b6000612f2060168361222d565b9150612f2b82612eea565b602082019050919050565b60006020820190508181036000830152612f4f81612f13565b9050919050565b6000612f61826122dd565b9150612f6c836122dd565b925082821015612f7f57612f7e6129b9565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b6000612fb182612f8a565b612fbb8185612f95565b9350612fcb81856020860161223e565b612fd481612271565b840191505092915050565b6000608082019050612ff46000830187612372565b6130016020830186612372565b61300e6040830185612408565b81810360608301526130208184612fa6565b905095945050505050565b60008151905061303a81612193565b92915050565b6000602082840312156130565761305561215d565b5b60006130648482850161302b565b9150509291505056fea26469706673582212201986e2b6284bdd64cf559381912fd79c60a63fd100d2d955cbcb9ee9242ef97464736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 7777
Arg [2] : amountForDevs_ (uint256): 1000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
57062:3706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20965:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21867:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28350:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27791:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17618:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32057:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58028:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59114:249;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34970:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57162:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59749:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23260:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18802:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56132:103;;;;;;;;;;;;;:::i;:::-;;57107:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55484:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57362:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;22043:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58515:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28908:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59863:181;;;;;;;;;;;;;:::i;:::-;;35753:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60052:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22253:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59503:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29373:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56390:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57208:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20965:639;21050:4;21389:10;21374:25;;:11;:25;;;;:102;;;;21466:10;21451:25;;:11;:25;;;;21374:102;:179;;;;21543:10;21528:25;;:11;:25;;;;21374:179;21354:199;;20965:639;;;:::o;21867:100::-;21921:13;21954:5;21947:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21867:100;:::o;28350:218::-;28426:7;28451:16;28459:7;28451;:16::i;:::-;28446:64;;28476:34;;;;;;;;;;;;;;28446:64;28530:15;:24;28546:7;28530:24;;;;;;;;;;;:30;;;;;;;;;;;;28523:37;;28350:218;;;:::o;27791:400::-;27872:13;27888:16;27896:7;27888;:16::i;:::-;27872:32;;27944:5;27921:28;;:19;:17;:19::i;:::-;:28;;;27917:175;;27969:44;27986:5;27993:19;:17;:19::i;:::-;27969:16;:44::i;:::-;27964:128;;28041:35;;;;;;;;;;;;;;27964:128;27917:175;28137:2;28104:15;:24;28120:7;28104:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28175:7;28171:2;28155:28;;28164:5;28155:28;;;;;;;;;;;;27861:330;27791:400;;:::o;17618:323::-;17679:7;17907:15;:13;:15::i;:::-;17892:12;;17876:13;;:28;:46;17869:53;;17618:323;:::o;32057:2817::-;32191:27;32221;32240:7;32221:18;:27::i;:::-;32191:57;;32306:4;32265:45;;32281:19;32265:45;;;32261:86;;32319:28;;;;;;;;;;;;;;32261:86;32361:27;32390:23;32417:35;32444:7;32417:26;:35::i;:::-;32360:92;;;;32552:68;32577:15;32594:4;32600:19;:17;:19::i;:::-;32552:24;:68::i;:::-;32547:180;;32640:43;32657:4;32663:19;:17;:19::i;:::-;32640:16;:43::i;:::-;32635:92;;32692:35;;;;;;;;;;;;;;32635:92;32547:180;32758:1;32744:16;;:2;:16;;;32740:52;;;32769:23;;;;;;;;;;;;;;32740:52;32805:43;32827:4;32833:2;32837:7;32846:1;32805:21;:43::i;:::-;32941:15;32938:160;;;33081:1;33060:19;33053:30;32938:160;33478:18;:24;33497:4;33478:24;;;;;;;;;;;;;;;;33476:26;;;;;;;;;;;;33547:18;:22;33566:2;33547:22;;;;;;;;;;;;;;;;33545:24;;;;;;;;;;;33869:146;33906:2;33955:45;33970:4;33976:2;33980:19;33955:14;:45::i;:::-;14017:8;33927:73;33869:18;:146::i;:::-;33840:17;:26;33858:7;33840:26;;;;;;;;;;;:175;;;;34186:1;14017:8;34135:19;:47;:52;34131:627;;;34208:19;34240:1;34230:7;:11;34208:33;;34397:1;34363:17;:30;34381:11;34363:30;;;;;;;;;;;;:35;34359:384;;;34501:13;;34486:11;:28;34482:242;;34681:19;34648:17;:30;34666:11;34648:30;;;;;;;;;;;:52;;;;34482:242;34359:384;34189:569;34131:627;34805:7;34801:2;34786:27;;34795:4;34786:27;;;;;;;;;;;;34824:42;34845:4;34851:2;34855:7;34864:1;34824:20;:42::i;:::-;32180:2694;;;32057:2817;;;:::o;58028:350::-;55370:13;:11;:13::i;:::-;58127::::1;58115:8;:25;;58093:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;58268:14;58256:8;58240:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58218:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;58339:31;58349:10;58361:8;58339:9;:31::i;:::-;58028:350:::0;:::o;59114:249::-;59160:4;59233:1;59199:10;:30;;;;;;;;;;;;:35;;;;59177:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;59325:10;:30;;;;;;;;;;;;59306:49;;:15;:49;;59299:56;;59114:249;:::o;34970:185::-;35108:39;35125:4;35131:2;35135:7;35108:39;;;;;;;;;;;;:16;:39::i;:::-;34970:185;;;:::o;57162:39::-;;;:::o;59749:106::-;55370:13;:11;:13::i;:::-;59840:7:::1;;59824:13;:23;;;;;;;:::i;:::-;;59749:106:::0;;:::o;23260:152::-;23332:7;23375:27;23394:7;23375:18;:27::i;:::-;23352:52;;23260:152;;;:::o;18802:233::-;18874:7;18915:1;18898:19;;:5;:19;;;18894:60;;;18926:28;;;;;;;;;;;;;;18894:60;12961:13;18972:18;:25;18991:5;18972:25;;;;;;;;;;;;;;;;:55;18965:62;;18802:233;;;:::o;56132:103::-;55370:13;:11;:13::i;:::-;56197:30:::1;56224:1;56197:18;:30::i;:::-;56132:103::o:0;57107:48::-;;;:::o;55484:87::-;55530:7;55557:6;;;;;;;;;;;55550:13;;55484:87;:::o;57362:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22043:104::-;22099:13;22132:7;22125:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22043:104;:::o;58515:591::-;57955:10;57942:23;;:9;:23;;;57934:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58616:16:::1;:14;:16::i;:::-;58608:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58727:14;58715:8;58699:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58677:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;58859:23;58847:8;58820:24;58833:10;58820:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;58798:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;58966:16;58996:10;:25;;;;;;;;;;;;58985:36;;:8;:36;;;;:::i;:::-;58966:55;;59034:31;59044:10;59056:8;59034:9;:31::i;:::-;59076:22;59089:8;59076:12;:22::i;:::-;58597:509;58515:591:::0;:::o;28908:308::-;29019:19;:17;:19::i;:::-;29007:31;;:8;:31;;;29003:61;;;29047:17;;;;;;;;;;;;;;29003:61;29129:8;29077:18;:39;29096:19;:17;:19::i;:::-;29077:39;;;;;;;;;;;;;;;:49;29117:8;29077:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29189:8;29153:55;;29168:19;:17;:19::i;:::-;29153:55;;;29199:8;29153:55;;;;;;:::i;:::-;;;;;;;;28908:308;;:::o;59863:181::-;55370:13;:11;:13::i;:::-;59919:12:::1;59937:10;:15;;59961:21;59937:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59918:71;;;60008:7;60000:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;59907:137;59863:181::o:0;35753:399::-;35920:31;35933:4;35939:2;35943:7;35920:12;:31::i;:::-;35984:1;35966:2;:14;;;:19;35962:183;;36005:56;36036:4;36042:2;36046:7;36055:5;36005:30;:56::i;:::-;36000:145;;36089:40;;;;;;;;;;;;;;36000:145;35962:183;35753:399;;;;:::o;60052:242::-;55370:13;:11;:13::i;:::-;60202:84:::1;;;;;;;;60227:19;60202:84;;;;;;60261:14;60202:84;;;;::::0;60189:10:::1;:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60052:242:::0;;:::o;22253:318::-;22326:13;22357:16;22365:7;22357;:16::i;:::-;22352:59;;22382:29;;;;;;;;;;;;;;22352:59;22424:21;22448:10;:8;:10::i;:::-;22424:34;;22501:1;22482:7;22476:21;:26;;:87;;;;;;;;;;;;;;;;;22529:7;22538:18;22548:7;22538:9;:18::i;:::-;22512:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22476:87;22469:94;;;22253:318;;;:::o;59503:114::-;59561:7;59588:21;59602:6;59588:13;:21::i;:::-;59581:28;;59503:114;;;:::o;29373:164::-;29470:4;29494:18;:25;29513:5;29494:25;;;;;;;;;;;;;;;:35;29520:8;29494:35;;;;;;;;;;;;;;;;;;;;;;;;;29487:42;;29373:164;;;;:::o;56390:201::-;55370:13;:11;:13::i;:::-;56499:1:::1;56479:22;;:8;:22;;;;56471:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56555:28;56574:8;56555:18;:28::i;:::-;56390:201:::0;:::o;57208:38::-;;;:::o;29795:282::-;29860:4;29916:7;29897:15;:13;:15::i;:::-;:26;;:66;;;;;29950:13;;29940:7;:23;29897:66;:153;;;;;30049:1;13737:8;30001:17;:26;30019:7;30001:26;;;;;;;;;;;;:44;:49;29897:153;29877:173;;29795:282;;;:::o;51561:105::-;51621:7;51648:10;51641:17;;51561:105;:::o;17134:92::-;17190:7;17134:92;:::o;24415:1275::-;24482:7;24502:12;24517:7;24502:22;;24585:4;24566:15;:13;:15::i;:::-;:23;24562:1061;;24619:13;;24612:4;:20;24608:1015;;;24657:14;24674:17;:23;24692:4;24674:23;;;;;;;;;;;;24657:40;;24791:1;13737:8;24763:6;:24;:29;24759:845;;;25428:113;25445:1;25435:6;:11;25428:113;;;25488:17;:25;25506:6;;;;;;;25488:25;;;;;;;;;;;;25479:34;;25428:113;;;25574:6;25567:13;;;;;;24759:845;24634:989;24608:1015;24562:1061;25651:31;;;;;;;;;;;;;;24415:1275;;;;:::o;30958:479::-;31060:27;31089:23;31130:38;31171:15;:24;31187:7;31171:24;;;;;;;;;;;31130:65;;31342:18;31319:41;;31399:19;31393:26;31374:45;;31304:126;30958:479;;;:::o;30186:659::-;30335:11;30500:16;30493:5;30489:28;30480:37;;30660:16;30649:9;30645:32;30632:45;;30810:15;30799:9;30796:30;30788:5;30777:9;30774:20;30771:56;30761:66;;30186:659;;;;;:::o;36814:159::-;;;;;:::o;50870:311::-;51005:7;51025:16;14141:3;51051:19;:41;;51025:68;;14141:3;51119:31;51130:4;51136:2;51140:9;51119:10;:31::i;:::-;51111:40;;:62;;51104:69;;;50870:311;;;;;:::o;26238:450::-;26318:14;26486:16;26479:5;26475:28;26466:37;;26663:5;26649:11;26624:23;26620:41;26617:52;26610:5;26607:63;26597:73;;26238:450;;;;:::o;37638:158::-;;;;;:::o;55649:132::-;55724:12;:10;:12::i;:::-;55713:23;;:7;:5;:7::i;:::-;:23;;;55705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55649:132::o;45393:112::-;45470:27;45480:2;45484:8;45470:27;;;;;;;;;;;;:9;:27::i;:::-;45393:112;;:::o;56751:191::-;56825:16;56844:6;;;;;;;;;;;56825:25;;56870:8;56861:6;;:17;;;;;;;;;;;;;;;;;;56925:8;56894:40;;56915:8;56894:40;;;;;;;;;;;;56814:128;56751:191;:::o;60417:225::-;60495:5;60482:9;:18;;60474:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;60554:5;60542:9;:17;60538:97;;;60584:10;60576:28;;:47;60617:5;60605:9;:17;;;;:::i;:::-;60576:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60538:97;60417:225;:::o;38236:716::-;38399:4;38445:2;38420:45;;;38466:19;:17;:19::i;:::-;38487:4;38493:7;38502:5;38420:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38416:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38720:1;38703:6;:13;:18;38699:235;;;38749:40;;;;;;;;;;;;;;38699:235;38892:6;38886:13;38877:6;38873:2;38869:15;38862:38;38416:529;38589:54;;;38579:64;;;:6;:64;;;;38572:71;;;38236:716;;;;;;:::o;60650:113::-;60709:13;60742;60735:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60650:113;:::o;51768:1581::-;51833:17;52258:4;52251;52245:11;52241:22;52234:29;;52350:3;52344:4;52337:17;52456:3;52695:5;52677:428;52703:1;52677:428;;;52743:1;52738:3;52734:11;52727:18;;52914:2;52908:4;52904:13;52900:2;52896:22;52891:3;52883:36;53008:2;53002:4;52998:13;52990:21;;53075:4;53065:25;;53083:5;;53065:25;52677:428;;;52681:21;53144:3;53139;53135:13;53259:4;53254:3;53250:14;53243:21;;53324:6;53319:3;53312:19;51872:1470;;51768:1581;;;:::o;19117:178::-;19178:7;12961:13;13099:2;19206:18;:25;19225:5;19206:25;;;;;;;;;;;;;;;;:50;;19205:82;19198:89;;19117:178;;;:::o;50571:147::-;50708:6;50571:147;;;;;:::o;54035:98::-;54088:7;54115:10;54108:17;;54035:98;:::o;44620:689::-;44751:19;44757:2;44761:8;44751:5;:19::i;:::-;44830:1;44812:2;:14;;;:19;44808:483;;44852:11;44866:13;;44852:27;;44898:13;44920:8;44914:3;:14;44898:30;;44947:233;44978:62;45017:1;45021:2;45025:7;;;;;;45034:5;44978:30;:62::i;:::-;44973:167;;45076:40;;;;;;;;;;;;;;44973:167;45175:3;45167:5;:11;44947:233;;45262:3;45245:13;;:20;45241:34;;45267:8;;;45241:34;44833:458;;44808:483;44620:689;;;:::o;39414:2454::-;39487:20;39510:13;;39487:36;;39550:1;39538:8;:13;39534:44;;;39560:18;;;;;;;;;;;;;;39534:44;39591:61;39621:1;39625:2;39629:12;39643:8;39591:21;:61::i;:::-;40135:1;13099:2;40105:1;:26;;40104:32;40092:8;:45;40066:18;:22;40085:2;40066:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40414:139;40451:2;40505:33;40528:1;40532:2;40536:1;40505:14;:33::i;:::-;40472:30;40493:8;40472:20;:30::i;:::-;:66;40414:18;:139::i;:::-;40380:17;:31;40398:12;40380:31;;;;;;;;;;;:173;;;;40570:16;40601:11;40630:8;40615:12;:23;40601:37;;40885:16;40881:2;40877:25;40865:37;;41257:12;41217:8;41176:1;41114:25;41055:1;40994;40967:335;41382:1;41368:12;41364:20;41322:346;41423:3;41414:7;41411:16;41322:346;;41641:7;41631:8;41628:1;41601:25;41598:1;41595;41590:59;41476:1;41467:7;41463:15;41452:26;;41322:346;;;41326:77;41713:1;41701:8;:13;41697:45;;;41723:19;;;;;;;;;;;;;;41697:45;41775:3;41759:13;:19;;;;39840:1950;;41800:60;41829:1;41833:2;41837:12;41851:8;41800:20;:60::i;:::-;39476:2392;39414:2454;;:::o;26790:324::-;26860:14;27093:1;27083:8;27080:15;27054:24;27050:46;27040:56;;26790:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:93::-;7763:7;7803:10;7796:5;7792:22;7781:33;;7727:93;;;:::o;7826:115::-;7911:23;7928:5;7911:23;:::i;:::-;7906:3;7899:36;7826:115;;:::o;7947:101::-;7983:7;8023:18;8016:5;8012:30;8001:41;;7947:101;;;:::o;8054:115::-;8139:23;8156:5;8139:23;:::i;:::-;8134:3;8127:36;8054:115;;:::o;8175:324::-;8292:4;8330:2;8319:9;8315:18;8307:26;;8343:69;8409:1;8398:9;8394:17;8385:6;8343:69;:::i;:::-;8422:70;8488:2;8477:9;8473:18;8464:6;8422:70;:::i;:::-;8175:324;;;;;:::o;8505:116::-;8575:21;8590:5;8575:21;:::i;:::-;8568:5;8565:32;8555:60;;8611:1;8608;8601:12;8555:60;8505:116;:::o;8627:133::-;8670:5;8708:6;8695:20;8686:29;;8724:30;8748:5;8724:30;:::i;:::-;8627:133;;;;:::o;8766:468::-;8831:6;8839;8888:2;8876:9;8867:7;8863:23;8859:32;8856:119;;;8894:79;;:::i;:::-;8856:119;9014:1;9039:53;9084:7;9075:6;9064:9;9060:22;9039:53;:::i;:::-;9029:63;;8985:117;9141:2;9167:50;9209:7;9200:6;9189:9;9185:22;9167:50;:::i;:::-;9157:60;;9112:115;8766:468;;;;;:::o;9240:117::-;9349:1;9346;9339:12;9363:180;9411:77;9408:1;9401:88;9508:4;9505:1;9498:15;9532:4;9529:1;9522:15;9549:281;9632:27;9654:4;9632:27;:::i;:::-;9624:6;9620:40;9762:6;9750:10;9747:22;9726:18;9714:10;9711:34;9708:62;9705:88;;;9773:18;;:::i;:::-;9705:88;9813:10;9809:2;9802:22;9592:238;9549:281;;:::o;9836:129::-;9870:6;9897:20;;:::i;:::-;9887:30;;9926:33;9954:4;9946:6;9926:33;:::i;:::-;9836:129;;;:::o;9971:307::-;10032:4;10122:18;10114:6;10111:30;10108:56;;;10144:18;;:::i;:::-;10108:56;10182:29;10204:6;10182:29;:::i;:::-;10174:37;;10266:4;10260;10256:15;10248:23;;9971:307;;;:::o;10284:154::-;10368:6;10363:3;10358;10345:30;10430:1;10421:6;10416:3;10412:16;10405:27;10284:154;;;:::o;10444:410::-;10521:5;10546:65;10562:48;10603:6;10562:48;:::i;:::-;10546:65;:::i;:::-;10537:74;;10634:6;10627:5;10620:21;10672:4;10665:5;10661:16;10710:3;10701:6;10696:3;10692:16;10689:25;10686:112;;;10717:79;;:::i;:::-;10686:112;10807:41;10841:6;10836:3;10831;10807:41;:::i;:::-;10527:327;10444:410;;;;;:::o;10873:338::-;10928:5;10977:3;10970:4;10962:6;10958:17;10954:27;10944:122;;10985:79;;:::i;:::-;10944:122;11102:6;11089:20;11127:78;11201:3;11193:6;11186:4;11178:6;11174:17;11127:78;:::i;:::-;11118:87;;10934:277;10873:338;;;;:::o;11217:943::-;11312:6;11320;11328;11336;11385:3;11373:9;11364:7;11360:23;11356:33;11353:120;;;11392:79;;:::i;:::-;11353:120;11512:1;11537:53;11582:7;11573:6;11562:9;11558:22;11537:53;:::i;:::-;11527:63;;11483:117;11639:2;11665:53;11710:7;11701:6;11690:9;11686:22;11665:53;:::i;:::-;11655:63;;11610:118;11767:2;11793:53;11838:7;11829:6;11818:9;11814:22;11793:53;:::i;:::-;11783:63;;11738:118;11923:2;11912:9;11908:18;11895:32;11954:18;11946:6;11943:30;11940:117;;;11976:79;;:::i;:::-;11940:117;12081:62;12135:7;12126:6;12115:9;12111:22;12081:62;:::i;:::-;12071:72;;11866:287;11217:943;;;;;;;:::o;12166:120::-;12238:23;12255:5;12238:23;:::i;:::-;12231:5;12228:34;12218:62;;12276:1;12273;12266:12;12218:62;12166:120;:::o;12292:137::-;12337:5;12375:6;12362:20;12353:29;;12391:32;12417:5;12391:32;:::i;:::-;12292:137;;;;:::o;12435:120::-;12507:23;12524:5;12507:23;:::i;:::-;12500:5;12497:34;12487:62;;12545:1;12542;12535:12;12487:62;12435:120;:::o;12561:137::-;12606:5;12644:6;12631:20;12622:29;;12660:32;12686:5;12660:32;:::i;:::-;12561:137;;;;:::o;12704:470::-;12770:6;12778;12827:2;12815:9;12806:7;12802:23;12798:32;12795:119;;;12833:79;;:::i;:::-;12795:119;12953:1;12978:52;13022:7;13013:6;13002:9;12998:22;12978:52;:::i;:::-;12968:62;;12924:116;13079:2;13105:52;13149:7;13140:6;13129:9;13125:22;13105:52;:::i;:::-;13095:62;;13050:117;12704:470;;;;;:::o;13180:474::-;13248:6;13256;13305:2;13293:9;13284:7;13280:23;13276:32;13273:119;;;13311:79;;:::i;:::-;13273:119;13431:1;13456:53;13501:7;13492:6;13481:9;13477:22;13456:53;:::i;:::-;13446:63;;13402:117;13558:2;13584:53;13629:7;13620:6;13609:9;13605:22;13584:53;:::i;:::-;13574:63;;13529:118;13180:474;;;;;:::o;13660:180::-;13708:77;13705:1;13698:88;13805:4;13802:1;13795:15;13829:4;13826:1;13819:15;13846:320;13890:6;13927:1;13921:4;13917:12;13907:22;;13974:1;13968:4;13964:12;13995:18;13985:81;;14051:4;14043:6;14039:17;14029:27;;13985:81;14113:2;14105:6;14102:14;14082:18;14079:38;14076:84;;;14132:18;;:::i;:::-;14076:84;13897:269;13846:320;;;:::o;14172:226::-;14312:34;14308:1;14300:6;14296:14;14289:58;14381:9;14376:2;14368:6;14364:15;14357:34;14172:226;:::o;14404:366::-;14546:3;14567:67;14631:2;14626:3;14567:67;:::i;:::-;14560:74;;14643:93;14732:3;14643:93;:::i;:::-;14761:2;14756:3;14752:12;14745:19;;14404:366;;;:::o;14776:419::-;14942:4;14980:2;14969:9;14965:18;14957:26;;15029:9;15023:4;15019:20;15015:1;15004:9;15000:17;14993:47;15057:131;15183:4;15057:131;:::i;:::-;15049:139;;14776:419;;;:::o;15201:180::-;15249:77;15246:1;15239:88;15346:4;15343:1;15336:15;15370:4;15367:1;15360:15;15387:305;15427:3;15446:20;15464:1;15446:20;:::i;:::-;15441:25;;15480:20;15498:1;15480:20;:::i;:::-;15475:25;;15634:1;15566:66;15562:74;15559:1;15556:81;15553:107;;;15640:18;;:::i;:::-;15553:107;15684:1;15681;15677:9;15670:16;;15387:305;;;;:::o;15698:168::-;15838:20;15834:1;15826:6;15822:14;15815:44;15698:168;:::o;15872:366::-;16014:3;16035:67;16099:2;16094:3;16035:67;:::i;:::-;16028:74;;16111:93;16200:3;16111:93;:::i;:::-;16229:2;16224:3;16220:12;16213:19;;15872:366;;;:::o;16244:419::-;16410:4;16448:2;16437:9;16433:18;16425:26;;16497:9;16491:4;16487:20;16483:1;16472:9;16468:17;16461:47;16525:131;16651:4;16525:131;:::i;:::-;16517:139;;16244:419;;;:::o;16669:174::-;16809:26;16805:1;16797:6;16793:14;16786:50;16669:174;:::o;16849:366::-;16991:3;17012:67;17076:2;17071:3;17012:67;:::i;:::-;17005:74;;17088:93;17177:3;17088:93;:::i;:::-;17206:2;17201:3;17197:12;17190:19;;16849:366;;;:::o;17221:419::-;17387:4;17425:2;17414:9;17410:18;17402:26;;17474:9;17468:4;17464:20;17460:1;17449:9;17445:17;17438:47;17502:131;17628:4;17502:131;:::i;:::-;17494:139;;17221:419;;;:::o;17646:180::-;17786:32;17782:1;17774:6;17770:14;17763:56;17646:180;:::o;17832:366::-;17974:3;17995:67;18059:2;18054:3;17995:67;:::i;:::-;17988:74;;18071:93;18160:3;18071:93;:::i;:::-;18189:2;18184:3;18180:12;18173:19;;17832:366;;;:::o;18204:419::-;18370:4;18408:2;18397:9;18393:18;18385:26;;18457:9;18451:4;18447:20;18443:1;18432:9;18428:17;18421:47;18485:131;18611:4;18485:131;:::i;:::-;18477:139;;18204:419;;;:::o;18629:179::-;18769:31;18765:1;18757:6;18753:14;18746:55;18629:179;:::o;18814:366::-;18956:3;18977:67;19041:2;19036:3;18977:67;:::i;:::-;18970:74;;19053:93;19142:3;19053:93;:::i;:::-;19171:2;19166:3;19162:12;19155:19;;18814:366;;;:::o;19186:419::-;19352:4;19390:2;19379:9;19375:18;19367:26;;19439:9;19433:4;19429:20;19425:1;19414:9;19410:17;19403:47;19467:131;19593:4;19467:131;:::i;:::-;19459:139;;19186:419;;;:::o;19611:232::-;19751:34;19747:1;19739:6;19735:14;19728:58;19820:15;19815:2;19807:6;19803:15;19796:40;19611:232;:::o;19849:366::-;19991:3;20012:67;20076:2;20071:3;20012:67;:::i;:::-;20005:74;;20088:93;20177:3;20088:93;:::i;:::-;20206:2;20201:3;20197:12;20190:19;;19849:366;;;:::o;20221:419::-;20387:4;20425:2;20414:9;20410:18;20402:26;;20474:9;20468:4;20464:20;20460:1;20449:9;20445:17;20438:47;20502:131;20628:4;20502:131;:::i;:::-;20494:139;;20221:419;;;:::o;20646:348::-;20686:7;20709:20;20727:1;20709:20;:::i;:::-;20704:25;;20743:20;20761:1;20743:20;:::i;:::-;20738:25;;20931:1;20863:66;20859:74;20856:1;20853:81;20848:1;20841:9;20834:17;20830:105;20827:131;;;20938:18;;:::i;:::-;20827:131;20986:1;20983;20979:9;20968:20;;20646:348;;;;:::o;21000:147::-;21101:11;21138:3;21123:18;;21000:147;;;;:::o;21153:114::-;;:::o;21273:398::-;21432:3;21453:83;21534:1;21529:3;21453:83;:::i;:::-;21446:90;;21545:93;21634:3;21545:93;:::i;:::-;21663:1;21658:3;21654:11;21647:18;;21273:398;;;:::o;21677:379::-;21861:3;21883:147;22026:3;21883:147;:::i;:::-;21876:154;;22047:3;22040:10;;21677:379;;;:::o;22062:166::-;22202:18;22198:1;22190:6;22186:14;22179:42;22062:166;:::o;22234:366::-;22376:3;22397:67;22461:2;22456:3;22397:67;:::i;:::-;22390:74;;22473:93;22562:3;22473:93;:::i;:::-;22591:2;22586:3;22582:12;22575:19;;22234:366;;;:::o;22606:419::-;22772:4;22810:2;22799:9;22795:18;22787:26;;22859:9;22853:4;22849:20;22845:1;22834:9;22830:17;22823:47;22887:131;23013:4;22887:131;:::i;:::-;22879:139;;22606:419;;;:::o;23031:148::-;23133:11;23170:3;23155:18;;23031:148;;;;:::o;23185:377::-;23291:3;23319:39;23352:5;23319:39;:::i;:::-;23374:89;23456:6;23451:3;23374:89;:::i;:::-;23367:96;;23472:52;23517:6;23512:3;23505:4;23498:5;23494:16;23472:52;:::i;:::-;23549:6;23544:3;23540:16;23533:23;;23295:267;23185:377;;;;:::o;23568:435::-;23748:3;23770:95;23861:3;23852:6;23770:95;:::i;:::-;23763:102;;23882:95;23973:3;23964:6;23882:95;:::i;:::-;23875:102;;23994:3;23987:10;;23568:435;;;;;:::o;24009:225::-;24149:34;24145:1;24137:6;24133:14;24126:58;24218:8;24213:2;24205:6;24201:15;24194:33;24009:225;:::o;24240:366::-;24382:3;24403:67;24467:2;24462:3;24403:67;:::i;:::-;24396:74;;24479:93;24568:3;24479:93;:::i;:::-;24597:2;24592:3;24588:12;24581:19;;24240:366;;;:::o;24612:419::-;24778:4;24816:2;24805:9;24801:18;24793:26;;24865:9;24859:4;24855:20;24851:1;24840:9;24836:17;24829:47;24893:131;25019:4;24893:131;:::i;:::-;24885:139;;24612:419;;;:::o;25037:182::-;25177:34;25173:1;25165:6;25161:14;25154:58;25037:182;:::o;25225:366::-;25367:3;25388:67;25452:2;25447:3;25388:67;:::i;:::-;25381:74;;25464:93;25553:3;25464:93;:::i;:::-;25582:2;25577:3;25573:12;25566:19;;25225:366;;;:::o;25597:419::-;25763:4;25801:2;25790:9;25786:18;25778:26;;25850:9;25844:4;25840:20;25836:1;25825:9;25821:17;25814:47;25878:131;26004:4;25878:131;:::i;:::-;25870:139;;25597:419;;;:::o;26022:172::-;26162:24;26158:1;26150:6;26146:14;26139:48;26022:172;:::o;26200:366::-;26342:3;26363:67;26427:2;26422:3;26363:67;:::i;:::-;26356:74;;26439:93;26528:3;26439:93;:::i;:::-;26557:2;26552:3;26548:12;26541:19;;26200:366;;;:::o;26572:419::-;26738:4;26776:2;26765:9;26761:18;26753:26;;26825:9;26819:4;26815:20;26811:1;26800:9;26796:17;26789:47;26853:131;26979:4;26853:131;:::i;:::-;26845:139;;26572:419;;;:::o;26997:191::-;27037:4;27057:20;27075:1;27057:20;:::i;:::-;27052:25;;27091:20;27109:1;27091:20;:::i;:::-;27086:25;;27130:1;27127;27124:8;27121:34;;;27135:18;;:::i;:::-;27121:34;27180:1;27177;27173:9;27165:17;;26997:191;;;;:::o;27194:98::-;27245:6;27279:5;27273:12;27263:22;;27194:98;;;:::o;27298:168::-;27381:11;27415:6;27410:3;27403:19;27455:4;27450:3;27446:14;27431:29;;27298:168;;;;:::o;27472:360::-;27558:3;27586:38;27618:5;27586:38;:::i;:::-;27640:70;27703:6;27698:3;27640:70;:::i;:::-;27633:77;;27719:52;27764:6;27759:3;27752:4;27745:5;27741:16;27719:52;:::i;:::-;27796:29;27818:6;27796:29;:::i;:::-;27791:3;27787:39;27780:46;;27562:270;27472:360;;;;:::o;27838:640::-;28033:4;28071:3;28060:9;28056:19;28048:27;;28085:71;28153:1;28142:9;28138:17;28129:6;28085:71;:::i;:::-;28166:72;28234:2;28223:9;28219:18;28210:6;28166:72;:::i;:::-;28248;28316:2;28305:9;28301:18;28292:6;28248:72;:::i;:::-;28367:9;28361:4;28357:20;28352:2;28341:9;28337:18;28330:48;28395:76;28466:4;28457:6;28395:76;:::i;:::-;28387:84;;27838:640;;;;;;;:::o;28484:141::-;28540:5;28571:6;28565:13;28556:22;;28587:32;28613:5;28587:32;:::i;:::-;28484:141;;;;:::o;28631:349::-;28700:6;28749:2;28737:9;28728:7;28724:23;28720:32;28717:119;;;28755:79;;:::i;:::-;28717:119;28875:1;28900:63;28955:7;28946:6;28935:9;28931:22;28900:63;:::i;:::-;28890:73;;28846:127;28631:349;;;;:::o
Swarm Source
ipfs://1986e2b6284bdd64cf559381912fd79c60a63fd100d2d955cbcb9ee9242ef974
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.