ERC-721
Overview
Max Total Supply
888 OCB
Holders
749
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 OCBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OCB
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import './ERC721A.sol'; import './Ownable.sol'; import './ECDSA.sol'; error IncorrectSignature(); error SoldOut(); error MaxMintTokensExceeded(); error SignerCantBeBurner(); error CantWithdrawFunds(); // @author web_n3rdz (n3rdz.xyz) contract OCB is ERC721A, Ownable { using ECDSA for bytes32; address private _signerAddress; string public baseURI; uint256 public maxSupply; constructor( uint256 newMaxSupply, address newSignerAddress, string memory newBaseURI ) ERC721A("OnChain Buccaneers", "OCB") { maxSupply = newMaxSupply; _signerAddress = newSignerAddress; baseURI = newBaseURI; } // public functions /** * @dev Important: You will need a valid signature to mint. The signature will only be generated on the official website. */ function mint(bytes calldata signature, uint256 quantity, uint256 maxMintable) external payable { if( !_verifySig(msg.sender, msg.value, maxMintable, signature) ) revert IncorrectSignature(); if( totalSupply() + quantity > maxSupply ) revert SoldOut(); if( _numberMinted(msg.sender) + quantity > maxMintable ) revert MaxMintTokensExceeded(); _mint(msg.sender, quantity); } /** * @dev Check how many tokens the given address minted */ function numberMinted(address minter) external view returns(uint256) { return _numberMinted(minter); } // internal functions function _verifySig(address sender, uint256 valueSent, uint256 maxMintable, bytes memory signature) internal view returns(bool) { bytes32 messageHash = keccak256(abi.encodePacked(sender, valueSent, maxMintable)); return _signerAddress == messageHash.toEthSignedMessageHash().recover(signature); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // owner functions /** * @dev Aidrop tokens to given address (onlyOwner) */ function airdop(address receiver, uint256 quantity ) external onlyOwner { if( totalSupply() + quantity > maxSupply ) revert SoldOut(); _mint(receiver, quantity); } /** * @dev Set the signer address to verify signatures (onlyOwner) */ function setSignerAddress(address newSignerAddress) external onlyOwner { if( newSignerAddress == address(0) ) revert SignerCantBeBurner(); _signerAddress = newSignerAddress; } /** * @dev Set base uri for token metadata (onlyOwner) */ function setBaseURI(string memory newBaseURI) external onlyOwner { baseURI = newBaseURI; } /** * @dev Withdraw all funds (onlyOwner) */ function withdrawAll() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); if( !success ) revert CantWithdrawFunds(); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "./Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @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 { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public 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. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) 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 aligned. // 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) } } }
// SPDX-License-Identifier: MIT // 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(); /** * 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"},{"internalType":"address","name":"newSignerAddress","type":"address"},{"internalType":"string","name":"newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CantWithdrawFunds","type":"error"},{"inputs":[],"name":"IncorrectSignature","type":"error"},{"inputs":[],"name":"MaxMintTokensExceeded","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":"SignerCantBeBurner","type":"error"},{"inputs":[],"name":"SoldOut","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":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"maxMintable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSignerAddress","type":"address"}],"name":"setSignerAddress","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200353d3803806200353d8339818101604052810190620000379190620003a6565b6040518060400160405280601281526020017f4f6e436861696e2042756363616e6565727300000000000000000000000000008152506040518060400160405280600381526020017f4f434200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200024a565b508060039080519060200190620000d49291906200024a565b50620000e56200017760201b60201c565b60008190555050506200010d620001016200017c60201b60201c565b6200018460201b60201c565b82600b8190555081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a90805190602001906200016d9291906200024a565b5050505062000617565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025890620004f4565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b6000620003116200030b846200044a565b62000421565b90508281526020810184848401111562000330576200032f620005c3565b5b6200033d848285620004be565b509392505050565b6000815190506200035681620005e3565b92915050565b600082601f830112620003745762000373620005be565b5b815162000386848260208601620002fa565b91505092915050565b600081519050620003a081620005fd565b92915050565b600080600060608486031215620003c257620003c1620005cd565b5b6000620003d2868287016200038f565b9350506020620003e58682870162000345565b925050604084015167ffffffffffffffff811115620004095762000408620005c8565b5b62000417868287016200035c565b9150509250925092565b60006200042d62000440565b90506200043b82826200052a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046857620004676200058f565b5b6200047382620005d2565b9050602081019050919050565b60006200048d8262000494565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620004de578082015181840152602081019050620004c1565b83811115620004ee576000848401525b50505050565b600060028204905060018216806200050d57607f821691505b6020821081141562000524576200052362000560565b5b50919050565b6200053582620005d2565b810181811067ffffffffffffffff821117156200055757620005566200058f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005ee8162000480565b8114620005fa57600080fd5b50565b6200060881620004b4565b81146200061457600080fd5b50565b612f1680620006276000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610505578063dc33e68114610530578063e985e9c51461056d578063f2fde38b146105aa57610166565b8063a22cb46514610476578063b88d4fde1461049f578063c87b56dd146104c857610166565b806370a082311461039957806370f93ede146103d6578063715018a6146103f2578063853828b6146104095780638da5cb5b1461042057806395d89b411461044b57610166565b806323b872dd1161012357806323b872dd1461028d5780633f1d72ba146102b657806342842e0e146102df57806355f804b3146103085780636352211e146103315780636c0360eb1461036e57610166565b806301ffc9a71461016b578063046dc166146101a857806306fdde03146101d1578063081812fc146101fc578063095ea7b31461023957806318160ddd14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612408565b6105d3565b60405161019f9190612877565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca9190612245565b610665565b005b3480156101dd57600080fd5b506101e6610718565b6040516101f391906128d7565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e919061251f565b6107aa565b6040516102309190612810565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b91906123c8565b610829565b005b34801561026e57600080fd5b5061027761096d565b6040516102849190612999565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906122b2565b610984565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906123c8565b610ca9565b005b3480156102eb57600080fd5b50610306600480360381019061030191906122b2565b610d0d565b005b34801561031457600080fd5b5061032f600480360381019061032a91906124d6565b610d2d565b005b34801561033d57600080fd5b506103586004803603810190610353919061251f565b610d4f565b6040516103659190612810565b60405180910390f35b34801561037a57600080fd5b50610383610d61565b60405161039091906128d7565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612245565b610def565b6040516103cd9190612999565b60405180910390f35b6103f060048036038101906103eb9190612462565b610ea8565b005b3480156103fe57600080fd5b50610407610fd9565b005b34801561041557600080fd5b5061041e610fed565b005b34801561042c57600080fd5b5061043561109b565b6040516104429190612810565b60405180910390f35b34801561045757600080fd5b506104606110c5565b60405161046d91906128d7565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612388565b611157565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190612305565b611262565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061251f565b6112d5565b6040516104fc91906128d7565b60405180910390f35b34801561051157600080fd5b5061051a611374565b6040516105279190612999565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612245565b61137a565b6040516105649190612999565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190612272565b61138c565b6040516105a19190612877565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612245565b611420565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61066d6114a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106d4576040517fe6ef2c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461072790612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461075390612bac565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b582611522565b6107eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083482610d4f565b90508073ffffffffffffffffffffffffffffffffffffffff16610855611581565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576108818161087c611581565b61138c565b6108b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610977611589565b6001546000540303905090565b600061098f8261158e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a028461165c565b91509150610a188187610a13611581565b611683565b610a6457610a2d86610a28611581565b61138c565b610a63576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610acb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad886868660016116c7565b8015610ae357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bb185610b8d8888876116cd565b7c0200000000000000000000000000000000000000000000000000000000176116f5565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c39576000600185019050600060046000838152602001908152602001600020541415610c37576000548114610c36578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ca18686866001611720565b505050505050565b610cb16114a4565b600b5481610cbd61096d565b610cc79190612a89565b1115610cff576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d098282611726565b5050565b610d2883838360405180602001604052806000815250611262565b505050565b610d356114a4565b80600a9080519060200190610d4b929190612003565b5050565b6000610d5a8261158e565b9050919050565b600a8054610d6e90612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9a90612bac565b8015610de75780601f10610dbc57610100808354040283529160200191610de7565b820191906000526020600020905b815481529060010190602001808311610dca57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e57576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef833348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506118e3565b610f2e576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5482610f3a61096d565b610f449190612a89565b1115610f7c576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082610f8733611989565b610f919190612a89565b1115610fc9576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fd33383611726565b50505050565b610fe16114a4565b610feb60006119e0565b565b610ff56114a4565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161101b906127fb565b60006040518083038185875af1925050503d8060008114611058576040519150601f19603f3d011682016040523d82523d6000602084013e61105d565b606091505b5050905080611098576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110d490612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461110090612bac565b801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b8060076000611164611581565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611211611581565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112569190612877565b60405180910390a35050565b61126d848484610984565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112cf5761129884848484611aa6565b6112ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112e082611522565b611316576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611320611c06565b9050600081511415611341576040518060200160405280600081525061136c565b8061134b84611c98565b60405160200161135c9291906127b1565b6040516020818303038152906040525b915050919050565b600b5481565b600061138582611989565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114286114a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90612939565b60405180910390fd5b6114a1816119e0565b50565b6114ac611ce8565b73ffffffffffffffffffffffffffffffffffffffff166114ca61109b565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790612979565b60405180910390fd5b565b60008161152d611589565b1115801561153c575060005482105b801561157a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061159d611589565b11611625576000548110156116245760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611622575b60008114156116185760046000836001900393508381526020019081526020016000205490506115ed565b8092505050611657565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116e4868684611cf0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000821415611767576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177460008483856116c7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506117eb836117dc60008660006116cd565b6117e585611cf9565b176116f5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461188c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611851565b5060008214156118c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506118de6000848385611720565b505050565b6000808585856040516020016118fb93929190612774565b60405160208183030381529060405280519060200120905061192e8361192083611d09565b611d3990919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc611581565b8786866040518563ffffffff1660e01b8152600401611aee949392919061282b565b602060405180830381600087803b158015611b0857600080fd5b505af1925050508015611b3957506040513d601f19601f82011682018060405250810190611b369190612435565b60015b611bb3573d8060008114611b69576040519150601f19603f3d011682016040523d82523d6000602084013e611b6e565b606091505b50600081511415611bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611c1590612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4190612bac565b8015611c8e5780601f10611c6357610100808354040283529160200191611c8e565b820191906000526020600020905b815481529060010190602001808311611c7157829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611cd457600183039250600a81066030018353600a8104905080611ccf57611cd4565b611ca9565b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b600081604051602001611d1c91906127d5565b604051602081830303815290604052805190602001209050919050565b6000806000611d488585611d60565b91509150611d5581611db2565b819250505092915050565b600080604183511415611da25760008060006020860151925060408601519150606086015160001a9050611d9687828585611f20565b94509450505050611dab565b60006002915091505b9250929050565b60006004811115611dc657611dc5612c76565b5b816004811115611dd957611dd8612c76565b5b1415611de457611f1d565b60016004811115611df857611df7612c76565b5b816004811115611e0b57611e0a612c76565b5b1415611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e43906128f9565b60405180910390fd5b60026004811115611e6057611e5f612c76565b5b816004811115611e7357611e72612c76565b5b1415611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90612919565b60405180910390fd5b60036004811115611ec857611ec7612c76565b5b816004811115611edb57611eda612c76565b5b1415611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390612959565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611f5b576000600391509150611ffa565b600060018787878760405160008152602001604052604051611f809493929190612892565b6020604051602081039080840390855afa158015611fa2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ff157600060019250925050611ffa565b80600092509250505b94509492505050565b82805461200f90612bac565b90600052602060002090601f0160209004810192826120315760008555612078565b82601f1061204a57805160ff1916838001178555612078565b82800160010185558215612078579182015b8281111561207757825182559160200191906001019061205c565b5b5090506120859190612089565b5090565b5b808211156120a257600081600090555060010161208a565b5090565b60006120b96120b4846129d9565b6129b4565b9050828152602081018484840111156120d5576120d4612d12565b5b6120e0848285612b6a565b509392505050565b60006120fb6120f684612a0a565b6129b4565b90508281526020810184848401111561211757612116612d12565b5b612122848285612b6a565b509392505050565b60008135905061213981612e84565b92915050565b60008135905061214e81612e9b565b92915050565b60008135905061216381612eb2565b92915050565b60008151905061217881612eb2565b92915050565b60008083601f84011261219457612193612d08565b5b8235905067ffffffffffffffff8111156121b1576121b0612d03565b5b6020830191508360018202830111156121cd576121cc612d0d565b5b9250929050565b600082601f8301126121e9576121e8612d08565b5b81356121f98482602086016120a6565b91505092915050565b600082601f83011261221757612216612d08565b5b81356122278482602086016120e8565b91505092915050565b60008135905061223f81612ec9565b92915050565b60006020828403121561225b5761225a612d1c565b5b60006122698482850161212a565b91505092915050565b6000806040838503121561228957612288612d1c565b5b60006122978582860161212a565b92505060206122a88582860161212a565b9150509250929050565b6000806000606084860312156122cb576122ca612d1c565b5b60006122d98682870161212a565b93505060206122ea8682870161212a565b92505060406122fb86828701612230565b9150509250925092565b6000806000806080858703121561231f5761231e612d1c565b5b600061232d8782880161212a565b945050602061233e8782880161212a565b935050604061234f87828801612230565b925050606085013567ffffffffffffffff8111156123705761236f612d17565b5b61237c878288016121d4565b91505092959194509250565b6000806040838503121561239f5761239e612d1c565b5b60006123ad8582860161212a565b92505060206123be8582860161213f565b9150509250929050565b600080604083850312156123df576123de612d1c565b5b60006123ed8582860161212a565b92505060206123fe85828601612230565b9150509250929050565b60006020828403121561241e5761241d612d1c565b5b600061242c84828501612154565b91505092915050565b60006020828403121561244b5761244a612d1c565b5b600061245984828501612169565b91505092915050565b6000806000806060858703121561247c5761247b612d1c565b5b600085013567ffffffffffffffff81111561249a57612499612d17565b5b6124a68782880161217e565b945094505060206124b987828801612230565b92505060406124ca87828801612230565b91505092959194509250565b6000602082840312156124ec576124eb612d1c565b5b600082013567ffffffffffffffff81111561250a57612509612d17565b5b61251684828501612202565b91505092915050565b60006020828403121561253557612534612d1c565b5b600061254384828501612230565b91505092915050565b61255581612adf565b82525050565b61256c61256782612adf565b612c0f565b82525050565b61257b81612af1565b82525050565b61258a81612afd565b82525050565b6125a161259c82612afd565b612c21565b82525050565b60006125b282612a3b565b6125bc8185612a51565b93506125cc818560208601612b79565b6125d581612d21565b840191505092915050565b60006125eb82612a46565b6125f58185612a6d565b9350612605818560208601612b79565b61260e81612d21565b840191505092915050565b600061262482612a46565b61262e8185612a7e565b935061263e818560208601612b79565b80840191505092915050565b6000612657601883612a6d565b915061266282612d3f565b602082019050919050565b600061267a601f83612a6d565b915061268582612d68565b602082019050919050565b600061269d601c83612a7e565b91506126a882612d91565b601c82019050919050565b60006126c0602683612a6d565b91506126cb82612dba565b604082019050919050565b60006126e3602283612a6d565b91506126ee82612e09565b604082019050919050565b6000612706602083612a6d565b915061271182612e58565b602082019050919050565b6000612729600083612a62565b915061273482612e81565b600082019050919050565b61274881612b53565b82525050565b61275f61275a82612b53565b612c3d565b82525050565b61276e81612b5d565b82525050565b6000612780828661255b565b601482019150612790828561274e565b6020820191506127a0828461274e565b602082019150819050949350505050565b60006127bd8285612619565b91506127c98284612619565b91508190509392505050565b60006127e082612690565b91506127ec8284612590565b60208201915081905092915050565b60006128068261271c565b9150819050919050565b6000602082019050612825600083018461254c565b92915050565b6000608082019050612840600083018761254c565b61284d602083018661254c565b61285a604083018561273f565b818103606083015261286c81846125a7565b905095945050505050565b600060208201905061288c6000830184612572565b92915050565b60006080820190506128a76000830187612581565b6128b46020830186612765565b6128c16040830185612581565b6128ce6060830184612581565b95945050505050565b600060208201905081810360008301526128f181846125e0565b905092915050565b600060208201905081810360008301526129128161264a565b9050919050565b600060208201905081810360008301526129328161266d565b9050919050565b60006020820190508181036000830152612952816126b3565b9050919050565b60006020820190508181036000830152612972816126d6565b9050919050565b60006020820190508181036000830152612992816126f9565b9050919050565b60006020820190506129ae600083018461273f565b92915050565b60006129be6129cf565b90506129ca8282612bde565b919050565b6000604051905090565b600067ffffffffffffffff8211156129f4576129f3612cd4565b5b6129fd82612d21565b9050602081019050919050565b600067ffffffffffffffff821115612a2557612a24612cd4565b5b612a2e82612d21565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9482612b53565b9150612a9f83612b53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad457612ad3612c47565b5b828201905092915050565b6000612aea82612b33565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612b97578082015181840152602081019050612b7c565b83811115612ba6576000848401525b50505050565b60006002820490506001821680612bc457607f821691505b60208210811415612bd857612bd7612ca5565b5b50919050565b612be782612d21565b810181811067ffffffffffffffff82111715612c0657612c05612cd4565b5b80604052505050565b6000612c1a82612c2b565b9050919050565b6000819050919050565b6000612c3682612d32565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b612e8d81612adf565b8114612e9857600080fd5b50565b612ea481612af1565b8114612eaf57600080fd5b50565b612ebb81612b07565b8114612ec657600080fd5b50565b612ed281612b53565b8114612edd57600080fd5b5056fea264697066735822122067a3cf74d92fe443310c9c633650bd86639ae81c07cd835e252f86e1360b3f8464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000003780000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6170692e6f6e636861696e62756363616e656572732e636f6d2f6d657461646174612f000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610505578063dc33e68114610530578063e985e9c51461056d578063f2fde38b146105aa57610166565b8063a22cb46514610476578063b88d4fde1461049f578063c87b56dd146104c857610166565b806370a082311461039957806370f93ede146103d6578063715018a6146103f2578063853828b6146104095780638da5cb5b1461042057806395d89b411461044b57610166565b806323b872dd1161012357806323b872dd1461028d5780633f1d72ba146102b657806342842e0e146102df57806355f804b3146103085780636352211e146103315780636c0360eb1461036e57610166565b806301ffc9a71461016b578063046dc166146101a857806306fdde03146101d1578063081812fc146101fc578063095ea7b31461023957806318160ddd14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612408565b6105d3565b60405161019f9190612877565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca9190612245565b610665565b005b3480156101dd57600080fd5b506101e6610718565b6040516101f391906128d7565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e919061251f565b6107aa565b6040516102309190612810565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b91906123c8565b610829565b005b34801561026e57600080fd5b5061027761096d565b6040516102849190612999565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906122b2565b610984565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906123c8565b610ca9565b005b3480156102eb57600080fd5b50610306600480360381019061030191906122b2565b610d0d565b005b34801561031457600080fd5b5061032f600480360381019061032a91906124d6565b610d2d565b005b34801561033d57600080fd5b506103586004803603810190610353919061251f565b610d4f565b6040516103659190612810565b60405180910390f35b34801561037a57600080fd5b50610383610d61565b60405161039091906128d7565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612245565b610def565b6040516103cd9190612999565b60405180910390f35b6103f060048036038101906103eb9190612462565b610ea8565b005b3480156103fe57600080fd5b50610407610fd9565b005b34801561041557600080fd5b5061041e610fed565b005b34801561042c57600080fd5b5061043561109b565b6040516104429190612810565b60405180910390f35b34801561045757600080fd5b506104606110c5565b60405161046d91906128d7565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612388565b611157565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190612305565b611262565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061251f565b6112d5565b6040516104fc91906128d7565b60405180910390f35b34801561051157600080fd5b5061051a611374565b6040516105279190612999565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612245565b61137a565b6040516105649190612999565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190612272565b61138c565b6040516105a19190612877565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612245565b611420565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61066d6114a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106d4576040517fe6ef2c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461072790612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461075390612bac565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b582611522565b6107eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083482610d4f565b90508073ffffffffffffffffffffffffffffffffffffffff16610855611581565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576108818161087c611581565b61138c565b6108b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610977611589565b6001546000540303905090565b600061098f8261158e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a028461165c565b91509150610a188187610a13611581565b611683565b610a6457610a2d86610a28611581565b61138c565b610a63576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610acb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad886868660016116c7565b8015610ae357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bb185610b8d8888876116cd565b7c0200000000000000000000000000000000000000000000000000000000176116f5565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c39576000600185019050600060046000838152602001908152602001600020541415610c37576000548114610c36578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ca18686866001611720565b505050505050565b610cb16114a4565b600b5481610cbd61096d565b610cc79190612a89565b1115610cff576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d098282611726565b5050565b610d2883838360405180602001604052806000815250611262565b505050565b610d356114a4565b80600a9080519060200190610d4b929190612003565b5050565b6000610d5a8261158e565b9050919050565b600a8054610d6e90612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9a90612bac565b8015610de75780601f10610dbc57610100808354040283529160200191610de7565b820191906000526020600020905b815481529060010190602001808311610dca57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e57576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef833348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506118e3565b610f2e576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5482610f3a61096d565b610f449190612a89565b1115610f7c576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082610f8733611989565b610f919190612a89565b1115610fc9576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fd33383611726565b50505050565b610fe16114a4565b610feb60006119e0565b565b610ff56114a4565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161101b906127fb565b60006040518083038185875af1925050503d8060008114611058576040519150601f19603f3d011682016040523d82523d6000602084013e61105d565b606091505b5050905080611098576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110d490612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461110090612bac565b801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b8060076000611164611581565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611211611581565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112569190612877565b60405180910390a35050565b61126d848484610984565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112cf5761129884848484611aa6565b6112ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112e082611522565b611316576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611320611c06565b9050600081511415611341576040518060200160405280600081525061136c565b8061134b84611c98565b60405160200161135c9291906127b1565b6040516020818303038152906040525b915050919050565b600b5481565b600061138582611989565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114286114a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90612939565b60405180910390fd5b6114a1816119e0565b50565b6114ac611ce8565b73ffffffffffffffffffffffffffffffffffffffff166114ca61109b565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790612979565b60405180910390fd5b565b60008161152d611589565b1115801561153c575060005482105b801561157a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061159d611589565b11611625576000548110156116245760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611622575b60008114156116185760046000836001900393508381526020019081526020016000205490506115ed565b8092505050611657565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116e4868684611cf0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000821415611767576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177460008483856116c7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506117eb836117dc60008660006116cd565b6117e585611cf9565b176116f5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461188c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611851565b5060008214156118c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506118de6000848385611720565b505050565b6000808585856040516020016118fb93929190612774565b60405160208183030381529060405280519060200120905061192e8361192083611d09565b611d3990919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc611581565b8786866040518563ffffffff1660e01b8152600401611aee949392919061282b565b602060405180830381600087803b158015611b0857600080fd5b505af1925050508015611b3957506040513d601f19601f82011682018060405250810190611b369190612435565b60015b611bb3573d8060008114611b69576040519150601f19603f3d011682016040523d82523d6000602084013e611b6e565b606091505b50600081511415611bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611c1590612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4190612bac565b8015611c8e5780601f10611c6357610100808354040283529160200191611c8e565b820191906000526020600020905b815481529060010190602001808311611c7157829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611cd457600183039250600a81066030018353600a8104905080611ccf57611cd4565b611ca9565b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b600081604051602001611d1c91906127d5565b604051602081830303815290604052805190602001209050919050565b6000806000611d488585611d60565b91509150611d5581611db2565b819250505092915050565b600080604183511415611da25760008060006020860151925060408601519150606086015160001a9050611d9687828585611f20565b94509450505050611dab565b60006002915091505b9250929050565b60006004811115611dc657611dc5612c76565b5b816004811115611dd957611dd8612c76565b5b1415611de457611f1d565b60016004811115611df857611df7612c76565b5b816004811115611e0b57611e0a612c76565b5b1415611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e43906128f9565b60405180910390fd5b60026004811115611e6057611e5f612c76565b5b816004811115611e7357611e72612c76565b5b1415611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90612919565b60405180910390fd5b60036004811115611ec857611ec7612c76565b5b816004811115611edb57611eda612c76565b5b1415611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390612959565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611f5b576000600391509150611ffa565b600060018787878760405160008152602001604052604051611f809493929190612892565b6020604051602081039080840390855afa158015611fa2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ff157600060019250925050611ffa565b80600092509250505b94509492505050565b82805461200f90612bac565b90600052602060002090601f0160209004810192826120315760008555612078565b82601f1061204a57805160ff1916838001178555612078565b82800160010185558215612078579182015b8281111561207757825182559160200191906001019061205c565b5b5090506120859190612089565b5090565b5b808211156120a257600081600090555060010161208a565b5090565b60006120b96120b4846129d9565b6129b4565b9050828152602081018484840111156120d5576120d4612d12565b5b6120e0848285612b6a565b509392505050565b60006120fb6120f684612a0a565b6129b4565b90508281526020810184848401111561211757612116612d12565b5b612122848285612b6a565b509392505050565b60008135905061213981612e84565b92915050565b60008135905061214e81612e9b565b92915050565b60008135905061216381612eb2565b92915050565b60008151905061217881612eb2565b92915050565b60008083601f84011261219457612193612d08565b5b8235905067ffffffffffffffff8111156121b1576121b0612d03565b5b6020830191508360018202830111156121cd576121cc612d0d565b5b9250929050565b600082601f8301126121e9576121e8612d08565b5b81356121f98482602086016120a6565b91505092915050565b600082601f83011261221757612216612d08565b5b81356122278482602086016120e8565b91505092915050565b60008135905061223f81612ec9565b92915050565b60006020828403121561225b5761225a612d1c565b5b60006122698482850161212a565b91505092915050565b6000806040838503121561228957612288612d1c565b5b60006122978582860161212a565b92505060206122a88582860161212a565b9150509250929050565b6000806000606084860312156122cb576122ca612d1c565b5b60006122d98682870161212a565b93505060206122ea8682870161212a565b92505060406122fb86828701612230565b9150509250925092565b6000806000806080858703121561231f5761231e612d1c565b5b600061232d8782880161212a565b945050602061233e8782880161212a565b935050604061234f87828801612230565b925050606085013567ffffffffffffffff8111156123705761236f612d17565b5b61237c878288016121d4565b91505092959194509250565b6000806040838503121561239f5761239e612d1c565b5b60006123ad8582860161212a565b92505060206123be8582860161213f565b9150509250929050565b600080604083850312156123df576123de612d1c565b5b60006123ed8582860161212a565b92505060206123fe85828601612230565b9150509250929050565b60006020828403121561241e5761241d612d1c565b5b600061242c84828501612154565b91505092915050565b60006020828403121561244b5761244a612d1c565b5b600061245984828501612169565b91505092915050565b6000806000806060858703121561247c5761247b612d1c565b5b600085013567ffffffffffffffff81111561249a57612499612d17565b5b6124a68782880161217e565b945094505060206124b987828801612230565b92505060406124ca87828801612230565b91505092959194509250565b6000602082840312156124ec576124eb612d1c565b5b600082013567ffffffffffffffff81111561250a57612509612d17565b5b61251684828501612202565b91505092915050565b60006020828403121561253557612534612d1c565b5b600061254384828501612230565b91505092915050565b61255581612adf565b82525050565b61256c61256782612adf565b612c0f565b82525050565b61257b81612af1565b82525050565b61258a81612afd565b82525050565b6125a161259c82612afd565b612c21565b82525050565b60006125b282612a3b565b6125bc8185612a51565b93506125cc818560208601612b79565b6125d581612d21565b840191505092915050565b60006125eb82612a46565b6125f58185612a6d565b9350612605818560208601612b79565b61260e81612d21565b840191505092915050565b600061262482612a46565b61262e8185612a7e565b935061263e818560208601612b79565b80840191505092915050565b6000612657601883612a6d565b915061266282612d3f565b602082019050919050565b600061267a601f83612a6d565b915061268582612d68565b602082019050919050565b600061269d601c83612a7e565b91506126a882612d91565b601c82019050919050565b60006126c0602683612a6d565b91506126cb82612dba565b604082019050919050565b60006126e3602283612a6d565b91506126ee82612e09565b604082019050919050565b6000612706602083612a6d565b915061271182612e58565b602082019050919050565b6000612729600083612a62565b915061273482612e81565b600082019050919050565b61274881612b53565b82525050565b61275f61275a82612b53565b612c3d565b82525050565b61276e81612b5d565b82525050565b6000612780828661255b565b601482019150612790828561274e565b6020820191506127a0828461274e565b602082019150819050949350505050565b60006127bd8285612619565b91506127c98284612619565b91508190509392505050565b60006127e082612690565b91506127ec8284612590565b60208201915081905092915050565b60006128068261271c565b9150819050919050565b6000602082019050612825600083018461254c565b92915050565b6000608082019050612840600083018761254c565b61284d602083018661254c565b61285a604083018561273f565b818103606083015261286c81846125a7565b905095945050505050565b600060208201905061288c6000830184612572565b92915050565b60006080820190506128a76000830187612581565b6128b46020830186612765565b6128c16040830185612581565b6128ce6060830184612581565b95945050505050565b600060208201905081810360008301526128f181846125e0565b905092915050565b600060208201905081810360008301526129128161264a565b9050919050565b600060208201905081810360008301526129328161266d565b9050919050565b60006020820190508181036000830152612952816126b3565b9050919050565b60006020820190508181036000830152612972816126d6565b9050919050565b60006020820190508181036000830152612992816126f9565b9050919050565b60006020820190506129ae600083018461273f565b92915050565b60006129be6129cf565b90506129ca8282612bde565b919050565b6000604051905090565b600067ffffffffffffffff8211156129f4576129f3612cd4565b5b6129fd82612d21565b9050602081019050919050565b600067ffffffffffffffff821115612a2557612a24612cd4565b5b612a2e82612d21565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9482612b53565b9150612a9f83612b53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad457612ad3612c47565b5b828201905092915050565b6000612aea82612b33565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612b97578082015181840152602081019050612b7c565b83811115612ba6576000848401525b50505050565b60006002820490506001821680612bc457607f821691505b60208210811415612bd857612bd7612ca5565b5b50919050565b612be782612d21565b810181811067ffffffffffffffff82111715612c0657612c05612cd4565b5b80604052505050565b6000612c1a82612c2b565b9050919050565b6000819050919050565b6000612c3682612d32565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b612e8d81612adf565b8114612e9857600080fd5b50565b612ea481612af1565b8114612eaf57600080fd5b50565b612ebb81612b07565b8114612ec657600080fd5b50565b612ed281612b53565b8114612edd57600080fd5b5056fea264697066735822122067a3cf74d92fe443310c9c633650bd86639ae81c07cd835e252f86e1360b3f8464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000003780000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6170692e6f6e636861696e62756363616e656572732e636f6d2f6d657461646174612f000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : newMaxSupply (uint256): 888
Arg [1] : newSignerAddress (address): 0x6B2341bf6d8E7f914a1aFEe9fBDC7449f875f61f
Arg [2] : newBaseURI (string): https://api.onchainbuccaneers.com/metadata/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000378
Arg [1] : 0000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [4] : 68747470733a2f2f6170692e6f6e636861696e62756363616e656572732e636f
Arg [5] : 6d2f6d657461646174612f000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
329:2714:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9339:627:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2402:198:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10229:100:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16612:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16053:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6016:311;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20215:2709;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2121:186:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23020:185:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2683:104:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11622:152:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;440:21:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7176:233:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;924:415:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1884:103:5;;;;;;;;;;;;;:::i;:::-;;2857:181:4;;;;;;;;;;;;;:::i;:::-;;1236:87:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10405:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17170:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23803:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10615:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;468:24:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1425:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17561:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9339:627:2;9424:4;9759:10;9744:25;;:11;:25;;;;:98;;;;9832:10;9817:25;;:11;:25;;;;9744:98;:171;;;;9905:10;9890:25;;:11;:25;;;;9744:171;9728:187;;9339:627;;;:::o;2402:198:4:-;1122:13:5;:11;:13::i;:::-;2516:1:4::1;2488:30;;:16;:30;;;2484:64;;;2528:20;;;;;;;;;;;;;;2484:64;2576:16;2559:14;;:33;;;;;;;;;;;;;;;;;;2402:198:::0;:::o;10229:100:2:-;10283:13;10316:5;10309:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10229:100;:::o;16612:218::-;16688:7;16713:16;16721:7;16713;:16::i;:::-;16708:64;;16738:34;;;;;;;;;;;;;;16708:64;16792:15;:24;16808:7;16792:24;;;;;;;;;;;:30;;;;;;;;;;;;16785:37;;16612:218;;;:::o;16053:400::-;16134:13;16150:16;16158:7;16150;:16::i;:::-;16134:32;;16206:5;16183:28;;:19;:17;:19::i;:::-;:28;;;16179:175;;16231:44;16248:5;16255:19;:17;:19::i;:::-;16231:16;:44::i;:::-;16226:128;;16303:35;;;;;;;;;;;;;;16226:128;16179:175;16399:2;16366:15;:24;16382:7;16366:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16437:7;16433:2;16417:28;;16426:5;16417:28;;;;;;;;;;;;16123:330;16053:400;;:::o;6016:311::-;6077:7;6297:15;:13;:15::i;:::-;6282:12;;6266:13;;:28;:46;6259:53;;6016:311;:::o;20215:2709::-;20349:27;20379;20398:7;20379:18;:27::i;:::-;20349:57;;20464:4;20423:45;;20439:19;20423:45;;;20419:86;;20477:28;;;;;;;;;;;;;;20419:86;20519:27;20548:23;20575:35;20602:7;20575:26;:35::i;:::-;20518:92;;;;20710:68;20735:15;20752:4;20758:19;:17;:19::i;:::-;20710:24;:68::i;:::-;20705:180;;20798:43;20815:4;20821:19;:17;:19::i;:::-;20798:16;:43::i;:::-;20793:92;;20850:35;;;;;;;;;;;;;;20793:92;20705:180;20916:1;20902:16;;:2;:16;;;20898:52;;;20927:23;;;;;;;;;;;;;;20898:52;20963:43;20985:4;20991:2;20995:7;21004:1;20963:21;:43::i;:::-;21099:15;21096:156;;;21235:1;21214:19;21207:30;21096:156;21620:18;:24;21639:4;21620:24;;;;;;;;;;;;;;;;21618:26;;;;;;;;;;;;21685:18;:22;21704:2;21685:22;;;;;;;;;;;;;;;;21683:24;;;;;;;;;;;21983:134;22016:2;22061:45;22076:4;22082:2;22086:19;22061:14;:45::i;:::-;2419:8;22033:73;21983:18;:134::i;:::-;21954:17;:26;21972:7;21954:26;;;;;;;;;;;:163;;;;22280:1;2419:8;22229:19;:47;:52;22225:587;;;22298:19;22330:1;22320:7;:11;22298:33;;22479:1;22445:17;:30;22463:11;22445:30;;;;;;;;;;;;:35;22441:360;;;22575:13;;22560:11;:28;22556:230;;22747:19;22714:17;:30;22732:11;22714:30;;;;;;;;;;;:52;;;;22556:230;22441:360;22283:529;22225:587;22855:7;22851:2;22836:27;;22845:4;22836:27;;;;;;;;;;;;22874:42;22895:4;22901:2;22905:7;22914:1;22874:20;:42::i;:::-;20338:2586;;;20215:2709;;;:::o;2121:186:4:-;1122:13:5;:11;:13::i;:::-;2235:9:4::1;;2224:8;2208:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;2204:59;;;2254:9;;;;;;;;;;;;;;2204:59;2274:25;2280:8;2290;2274:5;:25::i;:::-;2121:186:::0;;:::o;23020:185:2:-;23158:39;23175:4;23181:2;23185:7;23158:39;;;;;;;;;;;;:16;:39::i;:::-;23020:185;;;:::o;2683:104:4:-;1122:13:5;:11;:13::i;:::-;2769:10:4::1;2759:7;:20;;;;;;;;;;;;:::i;:::-;;2683:104:::0;:::o;11622:152:2:-;11694:7;11737:27;11756:7;11737:18;:27::i;:::-;11714:52;;11622:152;;;:::o;440:21:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7176:233:2:-;7248:7;7289:1;7272:19;;:5;:19;;;7268:60;;;7300:28;;;;;;;;;;;;;;7268:60;1363:13;7346:18;:25;7365:5;7346:25;;;;;;;;;;;;;;;;:55;7339:62;;7176:233;;;:::o;924:415:4:-;1036:57;1047:10;1059:9;1070:11;1083:9;;1036:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:57::i;:::-;1031:92;;1103:20;;;;;;;;;;;;;;1031:92;1165:9;;1154:8;1138:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;1134:59;;;1184:9;;;;;;;;;;;;;;1134:59;1247:11;1236:8;1208:25;1222:10;1208:13;:25::i;:::-;:36;;;;:::i;:::-;:50;1204:87;;;1268:23;;;;;;;;;;;;;;1204:87;1304:27;1310:10;1322:8;1304:5;:27::i;:::-;924:415;;;;:::o;1884:103:5:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;2857:181:4:-;1122:13:5;:11;:13::i;:::-;2911:12:4::1;2929:10;:15;;2952:21;2929:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2910:68;;;2994:7;2989:41;;3011:19;;;;;;;;;;;;;;2989:41;2899:139;2857:181::o:0;1236:87:5:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10405:104:2:-;10461:13;10494:7;10487:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10405:104;:::o;17170:234::-;17317:8;17265:18;:39;17284:19;:17;:19::i;:::-;17265:39;;;;;;;;;;;;;;;:49;17305:8;17265:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17377:8;17341:55;;17356:19;:17;:19::i;:::-;17341:55;;;17387:8;17341:55;;;;;;:::i;:::-;;;;;;;;17170:234;;:::o;23803:399::-;23970:31;23983:4;23989:2;23993:7;23970:12;:31::i;:::-;24034:1;24016:2;:14;;;:19;24012:183;;24055:56;24086:4;24092:2;24096:7;24105:5;24055:30;:56::i;:::-;24050:145;;24139:40;;;;;;;;;;;;;;24050:145;24012:183;23803:399;;;;:::o;10615:318::-;10688:13;10719:16;10727:7;10719;:16::i;:::-;10714:59;;10744:29;;;;;;;;;;;;;;10714:59;10786:21;10810:10;:8;:10::i;:::-;10786:34;;10863:1;10844:7;10838:21;:26;;:87;;;;;;;;;;;;;;;;;10891:7;10900:18;10910:7;10900:9;:18::i;:::-;10874:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10838:87;10831:94;;;10615:318;;;:::o;468:24:4:-;;;;:::o;1425:116::-;1485:7;1512:21;1526:6;1512:13;:21::i;:::-;1505:28;;1425:116;;;:::o;17561:164:2:-;17658:4;17682:18;:25;17701:5;17682:25;;;;;;;;;;;;;;;:35;17708:8;17682:35;;;;;;;;;;;;;;;;;;;;;;;;;17675:42;;17561:164;;;;:::o;2142:201:5:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;;;2223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1401:132::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;17983:270:2:-;18048:4;18100:7;18081:15;:13;:15::i;:::-;:26;;:62;;;;;18130:13;;18120:7;:23;18081:62;:145;;;;;18225:1;2139:8;18177:17;:26;18195:7;18177:26;;;;;;;;;;;;:44;:49;18081:145;18065:161;;17983:270;;;:::o;39393:105::-;39453:7;39480:10;39473:17;;39393:105;:::o;5532:92::-;5588:7;5532:92;:::o;12777:1187::-;12844:7;12864:12;12879:7;12864:22;;12939:4;12920:15;:13;:15::i;:::-;:23;12916:985;;12969:13;;12962:4;:20;12958:943;;;13003:14;13020:17;:23;13038:4;13020:23;;;;;;;;;;;;13003:40;;13129:1;2139:8;13101:6;:24;:29;13097:789;;;13726:105;13743:1;13733:6;:11;13726:105;;;13782:17;:25;13800:6;;;;;;;13782:25;;;;;;;;;;;;13773:34;;13726:105;;;13860:6;13853:13;;;;;;13097:789;12984:917;12958:943;12916:985;13925:31;;;;;;;;;;;;;;12777:1187;;;;:::o;19122:473::-;19212:27;19241:23;19282:38;19323:15;:24;19339:7;19323:24;;;;;;;;;;;19282:65;;19500:18;19477:41;;19557:19;19551:26;19532:45;;19462:126;19122:473;;;:::o;18362:647::-;18511:11;18672:16;18665:5;18661:28;18652:37;;18828:16;18817:9;18813:32;18800:45;;18974:15;18963:9;18960:30;18952:5;18941:9;18938:20;18935:56;18925:66;;18362:647;;;;;:::o;24864:159::-;;;;;:::o;38702:311::-;38837:7;38857:16;2543:3;38883:19;:41;;38857:68;;2543:3;38951:31;38962:4;38968:2;38972:9;38951:10;:31::i;:::-;38943:40;;:62;;38936:69;;;38702:311;;;;;:::o;14512:442::-;14592:14;14756:16;14749:5;14745:28;14736:37;;14929:5;14915:11;14890:23;14886:41;14883:52;14876:5;14873:63;14863:73;;14512:442;;;;:::o;25688:158::-;;;;;:::o;27464:2500::-;27537:20;27560:13;;27537:36;;27600:1;27588:8;:13;27584:44;;;27610:18;;;;;;;;;;;;;;27584:44;27641:61;27671:1;27675:2;27679:12;27693:8;27641:21;:61::i;:::-;28157:1;1501:2;28127:1;:26;;28126:32;28114:8;:45;28088:18;:22;28107:2;28088:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28412:127;28445:2;28495:33;28518:1;28522:2;28526:1;28495:14;:33::i;:::-;28462:30;28483:8;28462:20;:30::i;:::-;:66;28412:18;:127::i;:::-;28378:17;:31;28396:12;28378:31;;;;;;;;;;;:161;;;;28552:16;28579:11;28608:8;28593:12;:23;28579:37;;29097:16;29093:2;29089:25;29077:37;;29409:12;29377:8;29344:1;29290:25;29239:1;29186;29167:283;29522:1;29508:12;29504:20;29466:314;29559:3;29550:7;29547:16;29466:314;;29757:7;29747:8;29744:1;29717:25;29714:1;29711;29706:59;29608:1;29599:7;29595:15;29584:26;;29466:314;;;29470:69;29817:1;29805:8;:13;29801:45;;;29827:19;;;;;;;;;;;;;;29801:45;29875:3;29859:13;:19;;;;27886:2000;;29896:60;29925:1;29929:2;29933:12;29947:8;29896:20;:60::i;:::-;27526:2438;27464:2500;;:::o;1578:319:4:-;1700:4;1717:19;1766:6;1774:9;1785:11;1749:48;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1739:59;;;;;;1717:81;;1834:55;1879:9;1834:36;:11;:34;:36::i;:::-;:44;;:55;;;;:::i;:::-;1816:73;;:14;;;;;;;;;;;:73;;;1809:80;;;1578:319;;;;;;:::o;7491:178:2:-;7552:7;1363:13;1501:2;7580:18;:25;7599:5;7580:25;;;;;;;;;;;;;;;;:50;;7579:82;7572:89;;7491:178;;;:::o;2503:191:5:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;26286:716:2:-;26449:4;26495:2;26470:45;;;26516:19;:17;:19::i;:::-;26537:4;26543:7;26552:5;26470:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26466:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26770:1;26753:6;:13;:18;26749:235;;;26799:40;;;;;;;;;;;;;;26749:235;26942:6;26936:13;26927:6;26923:2;26919:15;26912:38;26466:529;26639:54;;;26629:64;;;:6;:64;;;;26622:71;;;26286:716;;;;;;:::o;1905:108:4:-;1965:13;1998:7;1991:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1905:108;:::o;39600:1522:2:-;39665:17;40075:4;40068;40062:11;40058:22;40051:29;;40163:3;40157:4;40150:17;40265:3;40492:5;40474:412;40500:1;40474:412;;;40540:1;40535:3;40531:11;40524:18;;40703:2;40697:4;40693:13;40689:2;40685:22;40680:3;40672:36;40793:2;40787:4;40783:13;40775:21;;40856:4;40846:25;;40864:5;;40846:25;40474:412;;;40478:21;40925:3;40920;40916:13;41036:4;41031:3;41027:14;41020:21;;41097:6;41092:3;41085:19;39704:1411;;39600:1522;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;38403:147:2:-;38540:6;38403:147;;;;;:::o;15056:320::-;15126:14;15355:1;15345:8;15342:15;15316:24;15312:46;15302:56;;15056:320;;;:::o;7437:269:1:-;7506:7;7692:4;7639:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;7629:69;;;;;;7622:76;;7437:269;;;:::o;3747:231::-;3825:7;3846:17;3865:18;3887:27;3898:4;3904:9;3887:10;:27::i;:::-;3845:69;;;;3925:18;3937:5;3925:11;:18::i;:::-;3961:9;3954:16;;;;3747:231;;;;:::o;2198:747::-;2279:7;2288:12;2337:2;2317:9;:16;:22;2313:625;;;2356:9;2380;2404:7;2661:4;2650:9;2646:20;2640:27;2635:32;;2711:4;2700:9;2696:20;2690:27;2685:32;;2769:4;2758:9;2754:20;2748:27;2745:1;2740:36;2735:41;;2812:25;2823:4;2829:1;2832;2835;2812:10;:25::i;:::-;2805:32;;;;;;;;;2313:625;2886:1;2890:35;2870:56;;;;2198:747;;;;;;:::o;591:521::-;669:20;660:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;656:449;;;706:7;;656:449;767:29;758:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;754:351;;;813:34;;;;;;;;;;:::i;:::-;;;;;;;;754:351;878:35;869:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;865:240;;;930:41;;;;;;;;;;:::i;:::-;;;;;;;;865:240;1002:30;993:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;989:116;;;1049:44;;;;;;;;;;:::i;:::-;;;;;;;;989:116;591:521;;:::o;5199:1520::-;5330:7;5339:12;6264:66;6259:1;6251:10;;:79;6247:163;;;6363:1;6367:30;6347:51;;;;;;6247:163;6507:14;6524:24;6534:4;6540:1;6543;6546;6524:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6507:41;;6581:1;6563:20;;:6;:20;;;6559:103;;;6616:1;6620:29;6600:50;;;;;;;6559:103;6682:6;6690:20;6674:37;;;;;5199:1520;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:552::-;1485:8;1495:6;1545:3;1538:4;1530:6;1526:17;1522:27;1512:122;;1553:79;;:::i;:::-;1512:122;1666:6;1653:20;1643:30;;1696:18;1688:6;1685:30;1682:117;;;1718:79;;:::i;:::-;1682:117;1832:4;1824:6;1820:17;1808:29;;1886:3;1878:4;1870:6;1866:17;1856:8;1852:32;1849:41;1846:128;;;1893:79;;:::i;:::-;1846:128;1428:552;;;;;:::o;1999:338::-;2054:5;2103:3;2096:4;2088:6;2084:17;2080:27;2070:122;;2111:79;;:::i;:::-;2070:122;2228:6;2215:20;2253:78;2327:3;2319:6;2312:4;2304:6;2300:17;2253:78;:::i;:::-;2244:87;;2060:277;1999:338;;;;:::o;2357:340::-;2413:5;2462:3;2455:4;2447:6;2443:17;2439:27;2429:122;;2470:79;;:::i;:::-;2429:122;2587:6;2574:20;2612:79;2687:3;2679:6;2672:4;2664:6;2660:17;2612:79;:::i;:::-;2603:88;;2419:278;2357:340;;;;:::o;2703:139::-;2749:5;2787:6;2774:20;2765:29;;2803:33;2830:5;2803:33;:::i;:::-;2703:139;;;;:::o;2848:329::-;2907:6;2956:2;2944:9;2935:7;2931:23;2927:32;2924:119;;;2962:79;;:::i;:::-;2924:119;3082:1;3107:53;3152:7;3143:6;3132:9;3128:22;3107:53;:::i;:::-;3097:63;;3053:117;2848:329;;;;:::o;3183:474::-;3251:6;3259;3308:2;3296:9;3287:7;3283:23;3279:32;3276:119;;;3314:79;;:::i;:::-;3276:119;3434:1;3459:53;3504:7;3495:6;3484:9;3480:22;3459:53;:::i;:::-;3449:63;;3405:117;3561:2;3587:53;3632:7;3623:6;3612:9;3608:22;3587:53;:::i;:::-;3577:63;;3532:118;3183:474;;;;;:::o;3663:619::-;3740:6;3748;3756;3805:2;3793:9;3784:7;3780:23;3776:32;3773:119;;;3811:79;;:::i;:::-;3773:119;3931:1;3956:53;4001:7;3992:6;3981:9;3977:22;3956:53;:::i;:::-;3946:63;;3902:117;4058:2;4084:53;4129:7;4120:6;4109:9;4105:22;4084:53;:::i;:::-;4074:63;;4029:118;4186:2;4212:53;4257:7;4248:6;4237:9;4233:22;4212:53;:::i;:::-;4202:63;;4157:118;3663:619;;;;;:::o;4288:943::-;4383:6;4391;4399;4407;4456:3;4444:9;4435:7;4431:23;4427:33;4424:120;;;4463:79;;:::i;:::-;4424:120;4583:1;4608:53;4653:7;4644:6;4633:9;4629:22;4608:53;:::i;:::-;4598:63;;4554:117;4710:2;4736:53;4781:7;4772:6;4761:9;4757:22;4736:53;:::i;:::-;4726:63;;4681:118;4838:2;4864:53;4909:7;4900:6;4889:9;4885:22;4864:53;:::i;:::-;4854:63;;4809:118;4994:2;4983:9;4979:18;4966:32;5025:18;5017:6;5014:30;5011:117;;;5047:79;;:::i;:::-;5011:117;5152:62;5206:7;5197:6;5186:9;5182:22;5152:62;:::i;:::-;5142:72;;4937:287;4288:943;;;;;;;:::o;5237:468::-;5302:6;5310;5359:2;5347:9;5338:7;5334:23;5330:32;5327:119;;;5365:79;;:::i;:::-;5327:119;5485:1;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5456:117;5612:2;5638:50;5680:7;5671:6;5660:9;5656:22;5638:50;:::i;:::-;5628:60;;5583:115;5237:468;;;;;:::o;5711:474::-;5779:6;5787;5836:2;5824:9;5815:7;5811:23;5807:32;5804:119;;;5842:79;;:::i;:::-;5804:119;5962:1;5987:53;6032:7;6023:6;6012:9;6008:22;5987:53;:::i;:::-;5977:63;;5933:117;6089:2;6115:53;6160:7;6151:6;6140:9;6136:22;6115:53;:::i;:::-;6105:63;;6060:118;5711:474;;;;;:::o;6191:327::-;6249:6;6298:2;6286:9;6277:7;6273:23;6269:32;6266:119;;;6304:79;;:::i;:::-;6266:119;6424:1;6449:52;6493:7;6484:6;6473:9;6469:22;6449:52;:::i;:::-;6439:62;;6395:116;6191:327;;;;:::o;6524:349::-;6593:6;6642:2;6630:9;6621:7;6617:23;6613:32;6610:119;;;6648:79;;:::i;:::-;6610:119;6768:1;6793:63;6848:7;6839:6;6828:9;6824:22;6793:63;:::i;:::-;6783:73;;6739:127;6524:349;;;;:::o;6879:817::-;6967:6;6975;6983;6991;7040:2;7028:9;7019:7;7015:23;7011:32;7008:119;;;7046:79;;:::i;:::-;7008:119;7194:1;7183:9;7179:17;7166:31;7224:18;7216:6;7213:30;7210:117;;;7246:79;;:::i;:::-;7210:117;7359:64;7415:7;7406:6;7395:9;7391:22;7359:64;:::i;:::-;7341:82;;;;7137:296;7472:2;7498:53;7543:7;7534:6;7523:9;7519:22;7498:53;:::i;:::-;7488:63;;7443:118;7600:2;7626:53;7671:7;7662:6;7651:9;7647:22;7626:53;:::i;:::-;7616:63;;7571:118;6879:817;;;;;;;:::o;7702:509::-;7771:6;7820:2;7808:9;7799:7;7795:23;7791:32;7788:119;;;7826:79;;:::i;:::-;7788:119;7974:1;7963:9;7959:17;7946:31;8004:18;7996:6;7993:30;7990:117;;;8026:79;;:::i;:::-;7990:117;8131:63;8186:7;8177:6;8166:9;8162:22;8131:63;:::i;:::-;8121:73;;7917:287;7702:509;;;;:::o;8217:329::-;8276:6;8325:2;8313:9;8304:7;8300:23;8296:32;8293:119;;;8331:79;;:::i;:::-;8293:119;8451:1;8476:53;8521:7;8512:6;8501:9;8497:22;8476:53;:::i;:::-;8466:63;;8422:117;8217:329;;;;:::o;8552:118::-;8639:24;8657:5;8639:24;:::i;:::-;8634:3;8627:37;8552:118;;:::o;8676:157::-;8781:45;8801:24;8819:5;8801:24;:::i;:::-;8781:45;:::i;:::-;8776:3;8769:58;8676:157;;:::o;8839:109::-;8920:21;8935:5;8920:21;:::i;:::-;8915:3;8908:34;8839:109;;:::o;8954:118::-;9041:24;9059:5;9041:24;:::i;:::-;9036:3;9029:37;8954:118;;:::o;9078:157::-;9183:45;9203:24;9221:5;9203:24;:::i;:::-;9183:45;:::i;:::-;9178:3;9171:58;9078:157;;:::o;9241:360::-;9327:3;9355:38;9387:5;9355:38;:::i;:::-;9409:70;9472:6;9467:3;9409:70;:::i;:::-;9402:77;;9488:52;9533:6;9528:3;9521:4;9514:5;9510:16;9488:52;:::i;:::-;9565:29;9587:6;9565:29;:::i;:::-;9560:3;9556:39;9549:46;;9331:270;9241:360;;;;:::o;9607:364::-;9695:3;9723:39;9756:5;9723:39;:::i;:::-;9778:71;9842:6;9837:3;9778:71;:::i;:::-;9771:78;;9858:52;9903:6;9898:3;9891:4;9884:5;9880:16;9858:52;:::i;:::-;9935:29;9957:6;9935:29;:::i;:::-;9930:3;9926:39;9919:46;;9699:272;9607:364;;;;:::o;9977:377::-;10083:3;10111:39;10144:5;10111:39;:::i;:::-;10166:89;10248:6;10243:3;10166:89;:::i;:::-;10159:96;;10264:52;10309:6;10304:3;10297:4;10290:5;10286:16;10264:52;:::i;:::-;10341:6;10336:3;10332:16;10325:23;;10087:267;9977:377;;;;:::o;10360:366::-;10502:3;10523:67;10587:2;10582:3;10523:67;:::i;:::-;10516:74;;10599:93;10688:3;10599:93;:::i;:::-;10717:2;10712:3;10708:12;10701:19;;10360:366;;;:::o;10732:::-;10874:3;10895:67;10959:2;10954:3;10895:67;:::i;:::-;10888:74;;10971:93;11060:3;10971:93;:::i;:::-;11089:2;11084:3;11080:12;11073:19;;10732:366;;;:::o;11104:402::-;11264:3;11285:85;11367:2;11362:3;11285:85;:::i;:::-;11278:92;;11379:93;11468:3;11379:93;:::i;:::-;11497:2;11492:3;11488:12;11481:19;;11104:402;;;:::o;11512:366::-;11654:3;11675:67;11739:2;11734:3;11675:67;:::i;:::-;11668:74;;11751:93;11840:3;11751:93;:::i;:::-;11869:2;11864:3;11860:12;11853:19;;11512:366;;;:::o;11884:::-;12026:3;12047:67;12111:2;12106:3;12047:67;:::i;:::-;12040:74;;12123:93;12212:3;12123:93;:::i;:::-;12241:2;12236:3;12232:12;12225:19;;11884:366;;;:::o;12256:::-;12398:3;12419:67;12483:2;12478:3;12419:67;:::i;:::-;12412:74;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12256:366;;;:::o;12628:398::-;12787:3;12808:83;12889:1;12884:3;12808:83;:::i;:::-;12801:90;;12900:93;12989:3;12900:93;:::i;:::-;13018:1;13013:3;13009:11;13002:18;;12628:398;;;:::o;13032:118::-;13119:24;13137:5;13119:24;:::i;:::-;13114:3;13107:37;13032:118;;:::o;13156:157::-;13261:45;13281:24;13299:5;13281:24;:::i;:::-;13261:45;:::i;:::-;13256:3;13249:58;13156:157;;:::o;13319:112::-;13402:22;13418:5;13402:22;:::i;:::-;13397:3;13390:35;13319:112;;:::o;13437:538::-;13605:3;13620:75;13691:3;13682:6;13620:75;:::i;:::-;13720:2;13715:3;13711:12;13704:19;;13733:75;13804:3;13795:6;13733:75;:::i;:::-;13833:2;13828:3;13824:12;13817:19;;13846:75;13917:3;13908:6;13846:75;:::i;:::-;13946:2;13941:3;13937:12;13930:19;;13966:3;13959:10;;13437:538;;;;;;:::o;13981:435::-;14161:3;14183:95;14274:3;14265:6;14183:95;:::i;:::-;14176:102;;14295:95;14386:3;14377:6;14295:95;:::i;:::-;14288:102;;14407:3;14400:10;;13981:435;;;;;:::o;14422:522::-;14635:3;14657:148;14801:3;14657:148;:::i;:::-;14650:155;;14815:75;14886:3;14877:6;14815:75;:::i;:::-;14915:2;14910:3;14906:12;14899:19;;14935:3;14928:10;;14422:522;;;;:::o;14950:379::-;15134:3;15156:147;15299:3;15156:147;:::i;:::-;15149:154;;15320:3;15313:10;;14950:379;;;:::o;15335:222::-;15428:4;15466:2;15455:9;15451:18;15443:26;;15479:71;15547:1;15536:9;15532:17;15523:6;15479:71;:::i;:::-;15335:222;;;;:::o;15563:640::-;15758:4;15796:3;15785:9;15781:19;15773:27;;15810:71;15878:1;15867:9;15863:17;15854:6;15810:71;:::i;:::-;15891:72;15959:2;15948:9;15944:18;15935:6;15891:72;:::i;:::-;15973;16041:2;16030:9;16026:18;16017:6;15973:72;:::i;:::-;16092:9;16086:4;16082:20;16077:2;16066:9;16062:18;16055:48;16120:76;16191:4;16182:6;16120:76;:::i;:::-;16112:84;;15563:640;;;;;;;:::o;16209:210::-;16296:4;16334:2;16323:9;16319:18;16311:26;;16347:65;16409:1;16398:9;16394:17;16385:6;16347:65;:::i;:::-;16209:210;;;;:::o;16425:545::-;16598:4;16636:3;16625:9;16621:19;16613:27;;16650:71;16718:1;16707:9;16703:17;16694:6;16650:71;:::i;:::-;16731:68;16795:2;16784:9;16780:18;16771:6;16731:68;:::i;:::-;16809:72;16877:2;16866:9;16862:18;16853:6;16809:72;:::i;:::-;16891;16959:2;16948:9;16944:18;16935:6;16891:72;:::i;:::-;16425:545;;;;;;;:::o;16976:313::-;17089:4;17127:2;17116:9;17112:18;17104:26;;17176:9;17170:4;17166:20;17162:1;17151:9;17147:17;17140:47;17204:78;17277:4;17268:6;17204:78;:::i;:::-;17196:86;;16976:313;;;;:::o;17295:419::-;17461:4;17499:2;17488:9;17484:18;17476:26;;17548:9;17542:4;17538:20;17534:1;17523:9;17519:17;17512:47;17576:131;17702:4;17576:131;:::i;:::-;17568:139;;17295:419;;;:::o;17720:::-;17886:4;17924:2;17913:9;17909:18;17901:26;;17973:9;17967:4;17963:20;17959:1;17948:9;17944:17;17937:47;18001:131;18127:4;18001:131;:::i;:::-;17993:139;;17720:419;;;:::o;18145:::-;18311:4;18349:2;18338:9;18334:18;18326:26;;18398:9;18392:4;18388:20;18384:1;18373:9;18369:17;18362:47;18426:131;18552:4;18426:131;:::i;:::-;18418:139;;18145:419;;;:::o;18570:::-;18736:4;18774:2;18763:9;18759:18;18751:26;;18823:9;18817:4;18813:20;18809:1;18798:9;18794:17;18787:47;18851:131;18977:4;18851:131;:::i;:::-;18843:139;;18570:419;;;:::o;18995:::-;19161:4;19199:2;19188:9;19184:18;19176:26;;19248:9;19242:4;19238:20;19234:1;19223:9;19219:17;19212:47;19276:131;19402:4;19276:131;:::i;:::-;19268:139;;18995:419;;;:::o;19420:222::-;19513:4;19551:2;19540:9;19536:18;19528:26;;19564:71;19632:1;19621:9;19617:17;19608:6;19564:71;:::i;:::-;19420:222;;;;:::o;19648:129::-;19682:6;19709:20;;:::i;:::-;19699:30;;19738:33;19766:4;19758:6;19738:33;:::i;:::-;19648:129;;;:::o;19783:75::-;19816:6;19849:2;19843:9;19833:19;;19783:75;:::o;19864:307::-;19925:4;20015:18;20007:6;20004:30;20001:56;;;20037:18;;:::i;:::-;20001:56;20075:29;20097:6;20075:29;:::i;:::-;20067:37;;20159:4;20153;20149:15;20141:23;;19864:307;;;:::o;20177:308::-;20239:4;20329:18;20321:6;20318:30;20315:56;;;20351:18;;:::i;:::-;20315:56;20389:29;20411:6;20389:29;:::i;:::-;20381:37;;20473:4;20467;20463:15;20455:23;;20177:308;;;:::o;20491:98::-;20542:6;20576:5;20570:12;20560:22;;20491:98;;;:::o;20595:99::-;20647:6;20681:5;20675:12;20665:22;;20595:99;;;:::o;20700:168::-;20783:11;20817:6;20812:3;20805:19;20857:4;20852:3;20848:14;20833:29;;20700:168;;;;:::o;20874:147::-;20975:11;21012:3;20997:18;;20874:147;;;;:::o;21027:169::-;21111:11;21145:6;21140:3;21133:19;21185:4;21180:3;21176:14;21161:29;;21027:169;;;;:::o;21202:148::-;21304:11;21341:3;21326:18;;21202:148;;;;:::o;21356:305::-;21396:3;21415:20;21433:1;21415:20;:::i;:::-;21410:25;;21449:20;21467:1;21449:20;:::i;:::-;21444:25;;21603:1;21535:66;21531:74;21528:1;21525:81;21522:107;;;21609:18;;:::i;:::-;21522:107;21653:1;21650;21646:9;21639:16;;21356:305;;;;:::o;21667:96::-;21704:7;21733:24;21751:5;21733:24;:::i;:::-;21722:35;;21667:96;;;:::o;21769:90::-;21803:7;21846:5;21839:13;21832:21;21821:32;;21769:90;;;:::o;21865:77::-;21902:7;21931:5;21920:16;;21865:77;;;:::o;21948:149::-;21984:7;22024:66;22017:5;22013:78;22002:89;;21948:149;;;:::o;22103:126::-;22140:7;22180:42;22173:5;22169:54;22158:65;;22103:126;;;:::o;22235:77::-;22272:7;22301:5;22290:16;;22235:77;;;:::o;22318:86::-;22353:7;22393:4;22386:5;22382:16;22371:27;;22318:86;;;:::o;22410:154::-;22494:6;22489:3;22484;22471:30;22556:1;22547:6;22542:3;22538:16;22531:27;22410:154;;;:::o;22570:307::-;22638:1;22648:113;22662:6;22659:1;22656:13;22648:113;;;22747:1;22742:3;22738:11;22732:18;22728:1;22723:3;22719:11;22712:39;22684:2;22681:1;22677:10;22672:15;;22648:113;;;22779:6;22776:1;22773:13;22770:101;;;22859:1;22850:6;22845:3;22841:16;22834:27;22770:101;22619:258;22570:307;;;:::o;22883:320::-;22927:6;22964:1;22958:4;22954:12;22944:22;;23011:1;23005:4;23001:12;23032:18;23022:81;;23088:4;23080:6;23076:17;23066:27;;23022:81;23150:2;23142:6;23139:14;23119:18;23116:38;23113:84;;;23169:18;;:::i;:::-;23113:84;22934:269;22883:320;;;:::o;23209:281::-;23292:27;23314:4;23292:27;:::i;:::-;23284:6;23280:40;23422:6;23410:10;23407:22;23386:18;23374:10;23371:34;23368:62;23365:88;;;23433:18;;:::i;:::-;23365:88;23473:10;23469:2;23462:22;23252:238;23209:281;;:::o;23496:100::-;23535:7;23564:26;23584:5;23564:26;:::i;:::-;23553:37;;23496:100;;;:::o;23602:79::-;23641:7;23670:5;23659:16;;23602:79;;;:::o;23687:94::-;23726:7;23755:20;23769:5;23755:20;:::i;:::-;23744:31;;23687:94;;;:::o;23787:79::-;23826:7;23855:5;23844:16;;23787:79;;;:::o;23872:180::-;23920:77;23917:1;23910:88;24017:4;24014:1;24007:15;24041:4;24038:1;24031:15;24058:180;24106:77;24103:1;24096:88;24203:4;24200:1;24193:15;24227:4;24224:1;24217:15;24244:180;24292:77;24289:1;24282:88;24389:4;24386:1;24379:15;24413:4;24410:1;24403:15;24430:180;24478:77;24475:1;24468:88;24575:4;24572:1;24565:15;24599:4;24596:1;24589:15;24616:117;24725:1;24722;24715:12;24739:117;24848:1;24845;24838:12;24862:117;24971:1;24968;24961:12;24985:117;25094:1;25091;25084:12;25108:117;25217:1;25214;25207:12;25231:117;25340:1;25337;25330:12;25354:102;25395:6;25446:2;25442:7;25437:2;25430:5;25426:14;25422:28;25412:38;;25354:102;;;:::o;25462:94::-;25495:8;25543:5;25539:2;25535:14;25514:35;;25462:94;;;:::o;25562:174::-;25702:26;25698:1;25690:6;25686:14;25679:50;25562:174;:::o;25742:181::-;25882:33;25878:1;25870:6;25866:14;25859:57;25742:181;:::o;25929:214::-;26069:66;26065:1;26057:6;26053:14;26046:90;25929:214;:::o;26149:225::-;26289:34;26285:1;26277:6;26273:14;26266:58;26358:8;26353:2;26345:6;26341:15;26334:33;26149:225;:::o;26380:221::-;26520:34;26516:1;26508:6;26504:14;26497:58;26589:4;26584:2;26576:6;26572:15;26565:29;26380:221;:::o;26607:182::-;26747:34;26743:1;26735:6;26731:14;26724:58;26607:182;:::o;26795:114::-;;:::o;26915:122::-;26988:24;27006:5;26988:24;:::i;:::-;26981:5;26978:35;26968:63;;27027:1;27024;27017:12;26968:63;26915:122;:::o;27043:116::-;27113:21;27128:5;27113:21;:::i;:::-;27106:5;27103:32;27093:60;;27149:1;27146;27139:12;27093:60;27043:116;:::o;27165:120::-;27237:23;27254:5;27237:23;:::i;:::-;27230:5;27227:34;27217:62;;27275:1;27272;27265:12;27217:62;27165:120;:::o;27291:122::-;27364:24;27382:5;27364:24;:::i;:::-;27357:5;27354:35;27344:63;;27403:1;27400;27393:12;27344:63;27291:122;:::o
Swarm Source
ipfs://67a3cf74d92fe443310c9c633650bd86639ae81c07cd835e252f86e1360b3f84
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.