Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 39 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16876347 | 677 days ago | IN | 0 ETH | 0.00093582 | ||||
Mint To Address | 16791104 | 689 days ago | IN | 0 ETH | 0.00413386 | ||||
Mint To Address | 16787528 | 689 days ago | IN | 0 ETH | 0.00266511 | ||||
Mint To Address | 16787177 | 690 days ago | IN | 0 ETH | 0.00255003 | ||||
Set Approval For... | 16787153 | 690 days ago | IN | 0 ETH | 0.00183887 | ||||
Reveal | 16786967 | 690 days ago | IN | 0 ETH | 0.0013238 | ||||
Set Uri Prefix | 16786960 | 690 days ago | IN | 0 ETH | 0.00170305 | ||||
Set Max Supply | 16786829 | 690 days ago | IN | 0 ETH | 0.00116387 | ||||
Mint | 16752599 | 694 days ago | IN | 0.005 ETH | 0.00227333 | ||||
Mint To Address | 16749388 | 695 days ago | IN | 0 ETH | 0.00600935 | ||||
Mint To Address | 16749371 | 695 days ago | IN | 0 ETH | 0.00604031 | ||||
Mint | 16749299 | 695 days ago | IN | 0.005 ETH | 0.00377863 | ||||
Set Cost | 16749296 | 695 days ago | IN | 0 ETH | 0.00097322 | ||||
Set Cost | 16749209 | 695 days ago | IN | 0 ETH | 0.00088283 | ||||
Mint To Address | 16745193 | 695 days ago | IN | 0 ETH | 0.00233861 | ||||
Set WL Mint Stat... | 16735381 | 697 days ago | IN | 0 ETH | 0.00160345 | ||||
Set Public Mint ... | 16735353 | 697 days ago | IN | 0 ETH | 0.00180649 | ||||
Mint To Address | 16734004 | 697 days ago | IN | 0 ETH | 0.00231512 | ||||
Mint Whitelist | 16731093 | 697 days ago | IN | 0.05 ETH | 0.00263431 | ||||
Set Cost | 16730998 | 697 days ago | IN | 0 ETH | 0.00067696 | ||||
Set Cost | 16730980 | 697 days ago | IN | 0 ETH | 0.00056571 | ||||
Set Signer | 16730882 | 697 days ago | IN | 0 ETH | 0.000594 | ||||
Set Cost | 16730835 | 697 days ago | IN | 0 ETH | 0.00057675 | ||||
Mint To Address | 16728780 | 698 days ago | IN | 0 ETH | 0.00271579 | ||||
Mint To Address | 16728777 | 698 days ago | IN | 0 ETH | 0.00279658 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
16876347 | 677 days ago | 0.09 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ROWDYPICKLES
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721ABurnable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721ABurnable compliant contract. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The 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 tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the 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 { 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; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev 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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) virtual public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: contracts/rowdypickles.sol pragma solidity >=0.8.0 <0.9.0; contract ROWDYPICKLES is ERC721AQueryable, Ownable, ReentrancyGuard, OperatorFilterer { using Strings for uint256; address public signerAddress; string public uriPrefix; string public notRevealedURI = "ipfs://QmS99yE6AqXTRppm8jKeQShaz2HDUwiNSL6vTdoy7iRQh3/hidden.json"; string public uriSuffix = ".json"; uint256 public cost = 0.03 ether; uint256 public costWL = 0.01 ether; uint256 public maxSupply = 1000; uint256 public PHASE_MAX_SUPPLY = 100; uint256 public maxPerTx = 10; uint256 public maxPerWallet = 10; bool public publicMintEnabled = false; bool public whitelistMintEnabled = true; bool public paused = true; bool public revealed = false; mapping(address => uint) public addressMintedBalance; constructor( address _signerAddress ) ERC721A ( "ROWDYPICKLES", "RP" ) OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), true) { signerAddress = _signerAddress; } // ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~ modifier mintCompliance(uint256 _mintAmount) { require(!paused, "The contract is paused!"); require(_mintAmount > 0 && _mintAmount <= maxPerTx, "Invalid mint amount!"); require(_mintAmount + addressMintedBalance[msg.sender] <= maxPerWallet, "Max per wallet exceeded!"); require(totalSupply() + _mintAmount <= PHASE_MAX_SUPPLY, "Mint amount exceeds max supply!"); _; } // ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~ // PUBLIC MINT function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(publicMintEnabled, "Public mint is not active yet!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply limit reached!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); addressMintedBalance[msg.sender] += _mintAmount; _safeMint(_msgSender(), _mintAmount); } // WHITELIST MINT function mintWhitelist(uint256 _mintAmount, bytes memory sig) public payable mintCompliance(_mintAmount) { require(whitelistMintEnabled, "Whitelist mint is not active yet!"); require(isValidData(msg.sender, sig) == true, "User is not whitelisted!"); require(msg.value >= costWL * _mintAmount, "Insufficient funds!"); addressMintedBalance[msg.sender] += _mintAmount; _safeMint(_msgSender(), _mintAmount); } // MINT for address function mintToAddress(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Mint amount exceeds max supply!"); _safeMint(_receiver, _mintAmount); } function MassAirdrop(uint256 amount, address[] calldata _receivers) public onlyOwner { for (uint256 i = 0; i < _receivers.length; ++i) { require(totalSupply() + amount <= maxSupply, "Max supply exceeded!"); _safeMint(_receivers[i], amount); } } // ~~~~~~~~~~~~~~~~~~~~ SIGNATURES ~~~~~~~~~~~~~~~~~~~~ function isValidData(address _user, bytes memory sig) public view returns (bool) { bytes32 message = keccak256(abi.encodePacked(_user)); return (recoverSigner(message, sig) == signerAddress); } function recoverSigner(bytes32 message, bytes memory sig) public pure returns (address) { uint8 v; bytes32 r; bytes32 s; (v, r, s) = splitSignature(sig); return ecrecover(message, v, r, s); } function splitSignature(bytes memory sig) public pure returns (uint8, bytes32, bytes32) { require(sig.length == 65); bytes32 r; bytes32 s; uint8 v; assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } return (v, r, s); } // ~~~~~~~~~~~~~~~~~~~~ Various Checks ~~~~~~~~~~~~~~~~~~~~ function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function tokenURI(uint256 _tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return notRevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } // ~~~~~~~~~~~~~~~~~~~~ onlyOwner Functions ~~~~~~~~~~~~~~~~~~~~ // SIGNER function setSigner(address _newSigner) public onlyOwner { signerAddress = _newSigner; } // SET MAX SUPPLY function setMaxSupply(uint256 _MaxSupply) public onlyOwner { maxSupply = _MaxSupply; } // SET PHASE MAX SUPPLY function setPhaseMaxSupply(uint256 _phaseMaxSupply) public onlyOwner { PHASE_MAX_SUPPLY = _phaseMaxSupply; } // SET PUBLIC MINT STATE function setPublicMintState(bool _state) public onlyOwner { publicMintEnabled = _state; } // SET WHITELIST MINT STATE function setWLMintState(bool _state) public onlyOwner { whitelistMintEnabled = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setCostWL(uint256 _cost) public onlyOwner { costWL = _cost; } function setMaxPerTx(uint256 _maxPerTx) public onlyOwner { maxPerTx = _maxPerTx; } function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner { maxPerWallet = _maxPerWallet; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function reveal(bool _state) public onlyOwner { revealed = _state; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setApprovalForAll(address operator, bool approved) public override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } // ~~~~~~~~~~~~~~~~~~~~ Withdraw Functions ~~~~~~~~~~~~~~~~~~~~ function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address[]","name":"_receivers","type":"address[]"}],"name":"MassAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"isValidData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseMaxSupply","type":"uint256"}],"name":"setPhaseMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWLMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180608001604052806041815260200162005b0d60419139600c90805190602001906200003592919062000559565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200008392919062000559565b50666a94d74f430000600e55662386f26fc10000600f556103e86010556064601155600a601255600a6013556000601460006101000a81548160ff0219169083151502179055506001601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff0219169083151502179055506000601460036101000a81548160ff0219169083151502179055503480156200012857600080fd5b5060405162005b4e38038062005b4e83398181016040528101906200014e919062000673565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f524f5744595049434b4c455300000000000000000000000000000000000000008152506040518060400160405280600281526020017f52500000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001e992919062000559565b5080600390805190602001906200020292919062000559565b50620002136200048260201b60201c565b60008190555050506200023b6200022f6200048b60201b60201c565b6200049360201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000438578015620002fe576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002c4929190620006b6565b600060405180830381600087803b158015620002df57600080fd5b505af1158015620002f4573d6000803e3d6000fd5b5050505062000437565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620003b8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200037e929190620006b6565b600060405180830381600087803b1580156200039957600080fd5b505af1158015620003ae573d6000803e3d6000fd5b5050505062000436565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620004019190620006e3565b600060405180830381600087803b1580156200041c57600080fd5b505af115801562000431573d6000803e3d6000fd5b505050505b5b5b505080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000764565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000567906200072f565b90600052602060002090601f0160209004810192826200058b5760008555620005d7565b82601f10620005a657805160ff1916838001178555620005d7565b82800160010185558215620005d7579182015b82811115620005d6578251825591602001919060010190620005b9565b5b509050620005e69190620005ea565b5090565b5b8082111562000605576000816000905550600101620005eb565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200063b826200060e565b9050919050565b6200064d816200062e565b81146200065957600080fd5b50565b6000815190506200066d8162000642565b92915050565b6000602082840312156200068c576200068b62000609565b5b60006200069c848285016200065c565b91505092915050565b620006b0816200062e565b82525050565b6000604082019050620006cd6000830185620006a5565b620006dc6020830184620006a5565b9392505050565b6000602082019050620006fa6000830184620006a5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200074857607f821691505b6020821081036200075e576200075d62000700565b5b50919050565b61539980620007746000396000f3fe6080604052600436106103815760003560e01c80636caede3d116101d1578063a0712d6811610102578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610d18578063f2c4ce1e14610d55578063f2fde38b14610d7e578063f968adbe14610da757610381565b8063c87b56dd14610c5e578063ced2053b14610c9b578063d5abeb0114610cc4578063e268e4d314610cef57610381565b8063b0940d45116100dc578063b0940d4514610b92578063b88d4fde14610bcf578063c23dc68f14610bf8578063c6f6f21614610c3557610381565b8063a0712d6814610b0e578063a22cb46514610b2a578063a7bb580314610b5357610381565b8063879fbedf1161016f57806395d89b411161014957806395d89b4114610a4d57806397aba7f914610a7857806399a2557a14610ab55780639f41554a14610af257610381565b8063879fbedf146109d05780638da5cb5b146109f9578063940cd05b14610a2457610381565b8063715018a6116101ab578063715018a614610928578063722503801461093f5780637ec4a6591461096a5780638462151c1461099357610381565b80636caede3d146108975780636f8b44b0146108c257806370a08231146108eb57610381565b80633ccfd60b116102b657806351830227116102545780635c975abb116102235780635c975abb146107db57806362b99ad4146108065780636352211e146108315780636c19e7831461086e57610381565b8063518302271461071d5780635503a0e8146107485780635b7633d0146107735780635bbb21771461079e57610381565b806344a0d68a1161029057806344a0d68a14610677578063453c2310146106a05780634d973765146106cb578063512b658d146106f457610381565b80633ccfd60b1461060c57806341f434341461062357806342842e0e1461064e57610381565b806313faede61161032357806318cae269116102fd57806318cae2691461055257806323b872dd1461058f5780632d8be39b146105b857806332282af1146105e157610381565b806313faede6146104d357806316c38b3c146104fe57806318160ddd1461052757610381565b806306fdde031161035f57806306fdde0314610417578063081812fc14610442578063095ea7b31461047f5780630f4161aa146104a857610381565b806301ffc9a714610386578063051ad03b146103c357806306afd592146103ec575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a89190613940565b610dd2565b6040516103ba9190613988565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613a3e565b610e64565b005b3480156103f857600080fd5b50610401610f19565b60405161040e9190613aad565b60405180910390f35b34801561042357600080fd5b5061042c610f1f565b6040516104399190613b61565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613b83565b610fb1565b6040516104769190613bf1565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613c38565b61102d565b005b3480156104b457600080fd5b506104bd611046565b6040516104ca9190613988565b60405180910390f35b3480156104df57600080fd5b506104e8611059565b6040516104f59190613aad565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613ca4565b61105f565b005b34801561053357600080fd5b5061053c611084565b6040516105499190613aad565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613cd1565b61109b565b6040516105869190613aad565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613cfe565b6110b3565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613b83565b611102565b005b3480156105ed57600080fd5b506105f6611114565b6040516106039190613aad565b60405180910390f35b34801561061857600080fd5b5061062161111a565b005b34801561062f57600080fd5b506106386111f7565b6040516106459190613db0565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613cfe565b611209565b005b34801561068357600080fd5b5061069e60048036038101906106999190613b83565b611258565b005b3480156106ac57600080fd5b506106b561126a565b6040516106c29190613aad565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613ca4565b611270565b005b34801561070057600080fd5b5061071b60048036038101906107169190613dcb565b611295565b005b34801561072957600080fd5b50610732611302565b60405161073f9190613988565b60405180910390f35b34801561075457600080fd5b5061075d611315565b60405161076a9190613b61565b60405180910390f35b34801561077f57600080fd5b506107886113a3565b6040516107959190613bf1565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613f49565b6113c9565b6040516107d291906140f5565b60405180910390f35b3480156107e757600080fd5b506107f061148a565b6040516107fd9190613988565b60405180910390f35b34801561081257600080fd5b5061081b61149d565b6040516108289190613b61565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613b83565b61152b565b6040516108659190613bf1565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190613cd1565b61153d565b005b3480156108a357600080fd5b506108ac611589565b6040516108b99190613988565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190613b83565b61159c565b005b3480156108f757600080fd5b50610912600480360381019061090d9190613cd1565b6115ae565b60405161091f9190613aad565b60405180910390f35b34801561093457600080fd5b5061093d611666565b005b34801561094b57600080fd5b5061095461167a565b6040516109619190613b61565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906141cc565b611708565b005b34801561099f57600080fd5b506109ba60048036038101906109b59190613cd1565b61172a565b6040516109c791906142d3565b60405180910390f35b3480156109dc57600080fd5b506109f760048036038101906109f29190613ca4565b61186d565b005b348015610a0557600080fd5b50610a0e611892565b604051610a1b9190613bf1565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613ca4565b6118bc565b005b348015610a5957600080fd5b50610a626118e1565b604051610a6f9190613b61565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a91906143cc565b611973565b604051610aac9190613bf1565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190614428565b6119e8565b604051610ae991906142d3565b60405180910390f35b610b0c6004803603810190610b07919061447b565b611bf4565b005b610b286004803603810190610b239190613b83565b611ed7565b005b348015610b3657600080fd5b50610b516004803603810190610b4c91906144d7565b6121c0565b005b348015610b5f57600080fd5b50610b7a6004803603810190610b759190614517565b6121d9565b604051610b899392919061458b565b60405180910390f35b348015610b9e57600080fd5b50610bb96004803603810190610bb491906145c2565b61221c565b604051610bc69190613988565b60405180910390f35b348015610bdb57600080fd5b50610bf66004803603810190610bf1919061461e565b6122ab565b005b348015610c0457600080fd5b50610c1f6004803603810190610c1a9190613b83565b6122fc565b604051610c2c91906146f6565b60405180910390f35b348015610c4157600080fd5b50610c5c6004803603810190610c579190613b83565b612366565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613b83565b612378565b604051610c929190613b61565b60405180910390f35b348015610ca757600080fd5b50610cc26004803603810190610cbd9190613b83565b6124d0565b005b348015610cd057600080fd5b50610cd96124e2565b604051610ce69190613aad565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190613b83565b6124e8565b005b348015610d2457600080fd5b50610d3f6004803603810190610d3a9190614711565b6124fa565b604051610d4c9190613988565b60405180910390f35b348015610d6157600080fd5b50610d7c6004803603810190610d7791906141cc565b61258e565b005b348015610d8a57600080fd5b50610da56004803603810190610da09190613cd1565b6125b0565b005b348015610db357600080fd5b50610dbc612633565b604051610dc99190613aad565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e2d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610e6c612639565b60005b82829050811015610f135760105484610e86611084565b610e909190614780565b1115610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890614822565b60405180910390fd5b610f02838383818110610ee757610ee6614842565b5b9050602002016020810190610efc9190613cd1565b856126b7565b80610f0c90614871565b9050610e6f565b50505050565b600f5481565b606060028054610f2e906148e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5a906148e8565b8015610fa75780601f10610f7c57610100808354040283529160200191610fa7565b820191906000526020600020905b815481529060010190602001808311610f8a57829003601f168201915b5050505050905090565b6000610fbc826126d5565b610ff2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161103781612734565b6110418383612831565b505050565b601460009054906101000a900460ff1681565b600e5481565b611067612639565b80601460026101000a81548160ff02191690831515021790555050565b600061108e612972565b6001546000540303905090565b60156020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110f1576110f033612734565b5b6110fc84848461297b565b50505050565b61110a612639565b8060118190555050565b60115481565b611122612639565b600260095403611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90614965565b60405180910390fd5b60026009819055506000611179611892565b73ffffffffffffffffffffffffffffffffffffffff164760405161119c906149b6565b60006040518083038185875af1925050503d80600081146111d9576040519150601f19603f3d011682016040523d82523d6000602084013e6111de565b606091505b50509050806111ec57600080fd5b506001600981905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112475761124633612734565b5b611252848484612c9d565b50505050565b611260612639565b80600e8190555050565b60135481565b611278612639565b80601460016101000a81548160ff02191690831515021790555050565b61129d612639565b601054826112a9611084565b6112b39190614780565b11156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90614a17565b60405180910390fd5b6112fe81836126b7565b5050565b601460039054906101000a900460ff1681565b600d8054611322906148e8565b80601f016020809104026020016040519081016040528092919081815260200182805461134e906148e8565b801561139b5780601f106113705761010080835404028352916020019161139b565b820191906000526020600020905b81548152906001019060200180831161137e57829003601f168201915b505050505081565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060008251905060008167ffffffffffffffff8111156113ed576113ec613e0b565b5b60405190808252806020026020018201604052801561142657816020015b6114136137e2565b81526020019060019003908161140b5790505b50905060005b82811461147f5761145685828151811061144957611448614842565b5b60200260200101516122fc565b82828151811061146957611468614842565b5b602002602001018190525080600101905061142c565b508092505050919050565b601460029054906101000a900460ff1681565b600b80546114aa906148e8565b80601f01602080910402602001604051908101604052809291908181526020018280546114d6906148e8565b80156115235780601f106114f857610100808354040283529160200191611523565b820191906000526020600020905b81548152906001019060200180831161150657829003601f168201915b505050505081565b600061153682612cbd565b9050919050565b611545612639565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601460019054906101000a900460ff1681565b6115a4612639565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611615576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61166e612639565b6116786000612d89565b565b600c8054611687906148e8565b80601f01602080910402602001604051908101604052809291908181526020018280546116b3906148e8565b80156117005780601f106116d557610100808354040283529160200191611700565b820191906000526020600020905b8154815290600101906020018083116116e357829003601f168201915b505050505081565b611710612639565b80600b9080519060200190611726929190613831565b5050565b6060600080600061173a856115ae565b905060008167ffffffffffffffff81111561175857611757613e0b565b5b6040519080825280602002602001820160405280156117865781602001602082028036833780820191505090505b5090506117916137e2565b600061179b612972565b90505b83861461185f576117ae81612e4f565b9150816040015161185457600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117f957816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611853578083878060010198508151811061184657611845614842565b5b6020026020010181815250505b5b80600101905061179e565b508195505050505050919050565b611875612639565b80601460006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118c4612639565b80601460036101000a81548160ff02191690831515021790555050565b6060600380546118f0906148e8565b80601f016020809104026020016040519081016040528092919081815260200182805461191c906148e8565b80156119695780601f1061193e57610100808354040283529160200191611969565b820191906000526020600020905b81548152906001019060200180831161194c57829003601f168201915b5050505050905090565b600080600080611982856121d9565b809350819450829550505050600186848484604051600081526020016040526040516119b19493929190614a37565b6020604051602081039080840390855afa1580156119d3573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6060818310611a23576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a2e612e7a565b9050611a38612972565b851015611a4a57611a47612972565b94505b80841115611a56578093505b6000611a61876115ae565b905084861015611a84576000868603905081811015611a7e578091505b50611a89565b600090505b60008167ffffffffffffffff811115611aa557611aa4613e0b565b5b604051908082528060200260200182016040528015611ad35781602001602082028036833780820191505090505b50905060008203611aea5780945050505050611bed565b6000611af5886122fc565b905060008160400151611b0a57816000015190505b60008990505b888114158015611b205750848714155b15611bdf57611b2e81612e4f565b92508260400151611bd457600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611b7957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd35780848880600101995081518110611bc657611bc5614842565b5b6020026020010181815250505b5b806001019050611b10565b508583528296505050505050505b9392505050565b81601460029054906101000a900460ff1615611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614ac8565b60405180910390fd5b600081118015611c5757506012548111155b611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614b34565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611ce49190614780565b1115611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614ba0565b60405180910390fd5b60115481611d31611084565b611d3b9190614780565b1115611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390614a17565b60405180910390fd5b601460019054906101000a900460ff16611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614c32565b60405180910390fd5b60011515611dd9338461221c565b151514611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290614c9e565b60405180910390fd5b82600f54611e299190614cbe565b341015611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614d64565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eba9190614780565b92505081905550611ed2611ecc612e83565b846126b7565b505050565b80601460029054906101000a900460ff1615611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614ac8565b60405180910390fd5b600081118015611f3a57506012548111155b611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614b34565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611fc79190614780565b1115612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614ba0565b60405180910390fd5b60115481612014611084565b61201e9190614780565b111561205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690614a17565b60405180910390fd5b601460009054906101000a900460ff166120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590614dd0565b60405180910390fd5b601054826120ba611084565b6120c49190614780565b1115612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614e3c565b60405180910390fd5b81600e546121139190614cbe565b341015612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614d64565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a49190614780565b925050819055506121bc6121b6612e83565b836126b7565b5050565b816121ca81612734565b6121d48383612e8b565b505050565b600080600060418451146121ec57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b600080836040516020016122309190614ea4565b604051602081830303815290604052805190602001209050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661228b8285611973565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122e9576122e833612734565b5b6122f585858585613002565b5050505050565b6123046137e2565b61230c6137e2565b612314612972565b8310806123285750612324612e7a565b8310155b156123365780915050612361565b61233f83612e4f565b90508060400151156123545780915050612361565b61235d83613075565b9150505b919050565b61236e612639565b8060128190555050565b6060612383826126d5565b6123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b990614f31565b60405180910390fd5b60001515601460039054906101000a900460ff1615150361246f57600c80546123ea906148e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612416906148e8565b80156124635780601f1061243857610100808354040283529160200191612463565b820191906000526020600020905b81548152906001019060200180831161244657829003601f168201915b505050505090506124cb565b6000612479613095565b9050600081511161249957604051806020016040528060008152506124c7565b806124a384613127565b600d6040516020016124b793929190615021565b6040516020818303038152906040525b9150505b919050565b6124d8612639565b80600f8190555050565b60105481565b6124f0612639565b8060138190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612596612639565b80600c90805190602001906125ac929190613831565b5050565b6125b8612639565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e906150c4565b60405180910390fd5b61263081612d89565b50565b60125481565b612641612e83565b73ffffffffffffffffffffffffffffffffffffffff1661265f611892565b73ffffffffffffffffffffffffffffffffffffffff16146126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac90615130565b60405180910390fd5b565b6126d1828260405180602001604052806000815250613287565b5050565b6000816126e0612972565b111580156126ef575060005482105b801561272d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561282e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127ab929190615150565b602060405180830381865afa1580156127c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ec919061518e565b61282d57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016128249190613bf1565b60405180910390fd5b5b50565b600061283c8261152b565b90508073ffffffffffffffffffffffffffffffffffffffff1661285d613324565b73ffffffffffffffffffffffffffffffffffffffff16146128c05761288981612884613324565b6124fa565b6128bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061298682612cbd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146129ed576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806129f98461332c565b91509150612a0f8187612a0a613324565b61334e565b612a5b57612a2486612a1f613324565b6124fa565b612a5a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ac1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ace8686866001613392565b8015612ad957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612ba785612b83888887613398565b7c0200000000000000000000000000000000000000000000000000000000176133c0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612c2d5760006001850190506000600460008381526020019081526020016000205403612c2b576000548114612c2a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9586868660016133eb565b505050505050565b612cb8838383604051806020016040528060008152506122ab565b505050565b60008082905080612ccc612972565b11612d5257600054811015612d515760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612d4f575b60008103612d45576004600083600190039350838152602001908152602001600020549050612d1b565b8092505050612d84565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e576137e2565b612e7360046000848152602001908152602001600020546133f1565b9050919050565b60008054905090565b600033905090565b612e93613324565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ef7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612f04613324565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612fb1613324565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ff69190613988565b60405180910390a35050565b61300d8484846110b3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461306f57613038848484846134a7565b61306e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61307d6137e2565b61308e61308983612cbd565b6133f1565b9050919050565b6060600b80546130a4906148e8565b80601f01602080910402602001604051908101604052809291908181526020018280546130d0906148e8565b801561311d5780601f106130f25761010080835404028352916020019161311d565b820191906000526020600020905b81548152906001019060200180831161310057829003601f168201915b5050505050905090565b60606000820361316e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613282565b600082905060005b600082146131a057808061318990614871565b915050600a8261319991906151ea565b9150613176565b60008167ffffffffffffffff8111156131bc576131bb613e0b565b5b6040519080825280601f01601f1916602001820160405280156131ee5781602001600182028036833780820191505090505b5090505b6000851461327b57600182613207919061521b565b9150600a85613216919061524f565b60306132229190614780565b60f81b81838151811061323857613237614842565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561327491906151ea565b94506131f2565b8093505050505b919050565b61329183836135f7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461331f57600080549050600083820390505b6132d160008683806001019450866134a7565b613307576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106132be57816000541461331c57600080fd5b50505b505050565b600033905090565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86133af8686846137c9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6133f96137e2565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134cd613324565b8786866040518563ffffffff1660e01b81526004016134ef94939291906152d5565b6020604051808303816000875af192505050801561352b57506040513d601f19601f820116820180604052508101906135289190615336565b60015b6135a4573d806000811461355b576040519150601f19603f3d011682016040523d82523d6000602084013e613560565b606091505b50600081510361359c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613663576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361369d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136aa6000848385613392565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613721836137126000866000613398565b61371b856137d2565b176133c0565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613745578060008190555050506137c460008483856133eb565b505050565b60009392505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b82805461383d906148e8565b90600052602060002090601f01602090048101928261385f57600085556138a6565b82601f1061387857805160ff19168380011785556138a6565b828001600101855582156138a6579182015b828111156138a557825182559160200191906001019061388a565b5b5090506138b391906138b7565b5090565b5b808211156138d05760008160009055506001016138b8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61391d816138e8565b811461392857600080fd5b50565b60008135905061393a81613914565b92915050565b600060208284031215613956576139556138de565b5b60006139648482850161392b565b91505092915050565b60008115159050919050565b6139828161396d565b82525050565b600060208201905061399d6000830184613979565b92915050565b6000819050919050565b6139b6816139a3565b81146139c157600080fd5b50565b6000813590506139d3816139ad565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126139fe576139fd6139d9565b5b8235905067ffffffffffffffff811115613a1b57613a1a6139de565b5b602083019150836020820283011115613a3757613a366139e3565b5b9250929050565b600080600060408486031215613a5757613a566138de565b5b6000613a65868287016139c4565b935050602084013567ffffffffffffffff811115613a8657613a856138e3565b5b613a92868287016139e8565b92509250509250925092565b613aa7816139a3565b82525050565b6000602082019050613ac26000830184613a9e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b02578082015181840152602081019050613ae7565b83811115613b11576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b3382613ac8565b613b3d8185613ad3565b9350613b4d818560208601613ae4565b613b5681613b17565b840191505092915050565b60006020820190508181036000830152613b7b8184613b28565b905092915050565b600060208284031215613b9957613b986138de565b5b6000613ba7848285016139c4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bdb82613bb0565b9050919050565b613beb81613bd0565b82525050565b6000602082019050613c066000830184613be2565b92915050565b613c1581613bd0565b8114613c2057600080fd5b50565b600081359050613c3281613c0c565b92915050565b60008060408385031215613c4f57613c4e6138de565b5b6000613c5d85828601613c23565b9250506020613c6e858286016139c4565b9150509250929050565b613c818161396d565b8114613c8c57600080fd5b50565b600081359050613c9e81613c78565b92915050565b600060208284031215613cba57613cb96138de565b5b6000613cc884828501613c8f565b91505092915050565b600060208284031215613ce757613ce66138de565b5b6000613cf584828501613c23565b91505092915050565b600080600060608486031215613d1757613d166138de565b5b6000613d2586828701613c23565b9350506020613d3686828701613c23565b9250506040613d47868287016139c4565b9150509250925092565b6000819050919050565b6000613d76613d71613d6c84613bb0565b613d51565b613bb0565b9050919050565b6000613d8882613d5b565b9050919050565b6000613d9a82613d7d565b9050919050565b613daa81613d8f565b82525050565b6000602082019050613dc56000830184613da1565b92915050565b60008060408385031215613de257613de16138de565b5b6000613df0858286016139c4565b9250506020613e0185828601613c23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e4382613b17565b810181811067ffffffffffffffff82111715613e6257613e61613e0b565b5b80604052505050565b6000613e756138d4565b9050613e818282613e3a565b919050565b600067ffffffffffffffff821115613ea157613ea0613e0b565b5b602082029050602081019050919050565b6000613ec5613ec084613e86565b613e6b565b90508083825260208201905060208402830185811115613ee857613ee76139e3565b5b835b81811015613f115780613efd88826139c4565b845260208401935050602081019050613eea565b5050509392505050565b600082601f830112613f3057613f2f6139d9565b5b8135613f40848260208601613eb2565b91505092915050565b600060208284031215613f5f57613f5e6138de565b5b600082013567ffffffffffffffff811115613f7d57613f7c6138e3565b5b613f8984828501613f1b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fc781613bd0565b82525050565b600067ffffffffffffffff82169050919050565b613fea81613fcd565b82525050565b613ff98161396d565b82525050565b600062ffffff82169050919050565b61401781613fff565b82525050565b6080820160008201516140336000850182613fbe565b5060208201516140466020850182613fe1565b5060408201516140596040850182613ff0565b50606082015161406c606085018261400e565b50505050565b600061407e838361401d565b60808301905092915050565b6000602082019050919050565b60006140a282613f92565b6140ac8185613f9d565b93506140b783613fae565b8060005b838110156140e85781516140cf8882614072565b97506140da8361408a565b9250506001810190506140bb565b5085935050505092915050565b6000602082019050818103600083015261410f8184614097565b905092915050565b600080fd5b600067ffffffffffffffff82111561413757614136613e0b565b5b61414082613b17565b9050602081019050919050565b82818337600083830152505050565b600061416f61416a8461411c565b613e6b565b90508281526020810184848401111561418b5761418a614117565b5b61419684828561414d565b509392505050565b600082601f8301126141b3576141b26139d9565b5b81356141c384826020860161415c565b91505092915050565b6000602082840312156141e2576141e16138de565b5b600082013567ffffffffffffffff811115614200576141ff6138e3565b5b61420c8482850161419e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61424a816139a3565b82525050565b600061425c8383614241565b60208301905092915050565b6000602082019050919050565b600061428082614215565b61428a8185614220565b935061429583614231565b8060005b838110156142c65781516142ad8882614250565b97506142b883614268565b925050600181019050614299565b5085935050505092915050565b600060208201905081810360008301526142ed8184614275565b905092915050565b6000819050919050565b614308816142f5565b811461431357600080fd5b50565b600081359050614325816142ff565b92915050565b600067ffffffffffffffff82111561434657614345613e0b565b5b61434f82613b17565b9050602081019050919050565b600061436f61436a8461432b565b613e6b565b90508281526020810184848401111561438b5761438a614117565b5b61439684828561414d565b509392505050565b600082601f8301126143b3576143b26139d9565b5b81356143c384826020860161435c565b91505092915050565b600080604083850312156143e3576143e26138de565b5b60006143f185828601614316565b925050602083013567ffffffffffffffff811115614412576144116138e3565b5b61441e8582860161439e565b9150509250929050565b600080600060608486031215614441576144406138de565b5b600061444f86828701613c23565b9350506020614460868287016139c4565b9250506040614471868287016139c4565b9150509250925092565b60008060408385031215614492576144916138de565b5b60006144a0858286016139c4565b925050602083013567ffffffffffffffff8111156144c1576144c06138e3565b5b6144cd8582860161439e565b9150509250929050565b600080604083850312156144ee576144ed6138de565b5b60006144fc85828601613c23565b925050602061450d85828601613c8f565b9150509250929050565b60006020828403121561452d5761452c6138de565b5b600082013567ffffffffffffffff81111561454b5761454a6138e3565b5b6145578482850161439e565b91505092915050565b600060ff82169050919050565b61457681614560565b82525050565b614585816142f5565b82525050565b60006060820190506145a0600083018661456d565b6145ad602083018561457c565b6145ba604083018461457c565b949350505050565b600080604083850312156145d9576145d86138de565b5b60006145e785828601613c23565b925050602083013567ffffffffffffffff811115614608576146076138e3565b5b6146148582860161439e565b9150509250929050565b60008060008060808587031215614638576146376138de565b5b600061464687828801613c23565b945050602061465787828801613c23565b9350506040614668878288016139c4565b925050606085013567ffffffffffffffff811115614689576146886138e3565b5b6146958782880161439e565b91505092959194509250565b6080820160008201516146b76000850182613fbe565b5060208201516146ca6020850182613fe1565b5060408201516146dd6040850182613ff0565b5060608201516146f0606085018261400e565b50505050565b600060808201905061470b60008301846146a1565b92915050565b60008060408385031215614728576147276138de565b5b600061473685828601613c23565b925050602061474785828601613c23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061478b826139a3565b9150614796836139a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147cb576147ca614751565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061480c601483613ad3565b9150614817826147d6565b602082019050919050565b6000602082019050818103600083015261483b816147ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061487c826139a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148ae576148ad614751565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061490057607f821691505b602082108103614913576149126148b9565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061494f601f83613ad3565b915061495a82614919565b602082019050919050565b6000602082019050818103600083015261497e81614942565b9050919050565b600081905092915050565b50565b60006149a0600083614985565b91506149ab82614990565b600082019050919050565b60006149c182614993565b9150819050919050565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b6000614a01601f83613ad3565b9150614a0c826149cb565b602082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b6000608082019050614a4c600083018761457c565b614a59602083018661456d565b614a66604083018561457c565b614a73606083018461457c565b95945050505050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614ab2601783613ad3565b9150614abd82614a7c565b602082019050919050565b60006020820190508181036000830152614ae181614aa5565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614b1e601483613ad3565b9150614b2982614ae8565b602082019050919050565b60006020820190508181036000830152614b4d81614b11565b9050919050565b7f4d6178207065722077616c6c6574206578636565646564210000000000000000600082015250565b6000614b8a601883613ad3565b9150614b9582614b54565b602082019050919050565b60006020820190508181036000830152614bb981614b7d565b9050919050565b7f57686974656c697374206d696e74206973206e6f74206163746976652079657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c1c602183613ad3565b9150614c2782614bc0565b604082019050919050565b60006020820190508181036000830152614c4b81614c0f565b9050919050565b7f55736572206973206e6f742077686974656c6973746564210000000000000000600082015250565b6000614c88601883613ad3565b9150614c9382614c52565b602082019050919050565b60006020820190508181036000830152614cb781614c7b565b9050919050565b6000614cc9826139a3565b9150614cd4836139a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d0d57614d0c614751565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614d4e601383613ad3565b9150614d5982614d18565b602082019050919050565b60006020820190508181036000830152614d7d81614d41565b9050919050565b7f5075626c6963206d696e74206973206e6f742061637469766520796574210000600082015250565b6000614dba601e83613ad3565b9150614dc582614d84565b602082019050919050565b60006020820190508181036000830152614de981614dad565b9050919050565b7f4d617820737570706c79206c696d697420726561636865642100000000000000600082015250565b6000614e26601983613ad3565b9150614e3182614df0565b602082019050919050565b60006020820190508181036000830152614e5581614e19565b9050919050565b60008160601b9050919050565b6000614e7482614e5c565b9050919050565b6000614e8682614e69565b9050919050565b614e9e614e9982613bd0565b614e7b565b82525050565b6000614eb08284614e8d565b60148201915081905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f1b602f83613ad3565b9150614f2682614ebf565b604082019050919050565b60006020820190508181036000830152614f4a81614f0e565b9050919050565b600081905092915050565b6000614f6782613ac8565b614f718185614f51565b9350614f81818560208601613ae4565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614faf816148e8565b614fb98186614f51565b94506001821660008114614fd45760018114614fe557615018565b60ff19831686528186019350615018565b614fee85614f8d565b60005b8381101561501057815481890152600182019150602081019050614ff1565b838801955050505b50505092915050565b600061502d8286614f5c565b91506150398285614f5c565b91506150458284614fa2565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ae602683613ad3565b91506150b982615052565b604082019050919050565b600060208201905081810360008301526150dd816150a1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511a602083613ad3565b9150615125826150e4565b602082019050919050565b600060208201905081810360008301526151498161510d565b9050919050565b60006040820190506151656000830185613be2565b6151726020830184613be2565b9392505050565b60008151905061518881613c78565b92915050565b6000602082840312156151a4576151a36138de565b5b60006151b284828501615179565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151f5826139a3565b9150615200836139a3565b9250826152105761520f6151bb565b5b828204905092915050565b6000615226826139a3565b9150615231836139a3565b92508282101561524457615243614751565b5b828203905092915050565b600061525a826139a3565b9150615265836139a3565b925082615275576152746151bb565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006152a782615280565b6152b1818561528b565b93506152c1818560208601613ae4565b6152ca81613b17565b840191505092915050565b60006080820190506152ea6000830187613be2565b6152f76020830186613be2565b6153046040830185613a9e565b8181036060830152615316818461529c565b905095945050505050565b60008151905061533081613914565b92915050565b60006020828403121561534c5761534b6138de565b5b600061535a84828501615321565b9150509291505056fea2646970667358221220a793e238ca5a2f595f05733c29d9a2d29f3b2169b48c1c4b5fce37368026b3bd64736f6c634300080d0033697066733a2f2f516d533939794536417158545270706d386a4b65515368617a3248445577694e534c367654646f793769525168332f68696464656e2e6a736f6e000000000000000000000000383d79da46a14e50156eb3650ee34b1d7ed4dc27
Deployed Bytecode
0x6080604052600436106103815760003560e01c80636caede3d116101d1578063a0712d6811610102578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610d18578063f2c4ce1e14610d55578063f2fde38b14610d7e578063f968adbe14610da757610381565b8063c87b56dd14610c5e578063ced2053b14610c9b578063d5abeb0114610cc4578063e268e4d314610cef57610381565b8063b0940d45116100dc578063b0940d4514610b92578063b88d4fde14610bcf578063c23dc68f14610bf8578063c6f6f21614610c3557610381565b8063a0712d6814610b0e578063a22cb46514610b2a578063a7bb580314610b5357610381565b8063879fbedf1161016f57806395d89b411161014957806395d89b4114610a4d57806397aba7f914610a7857806399a2557a14610ab55780639f41554a14610af257610381565b8063879fbedf146109d05780638da5cb5b146109f9578063940cd05b14610a2457610381565b8063715018a6116101ab578063715018a614610928578063722503801461093f5780637ec4a6591461096a5780638462151c1461099357610381565b80636caede3d146108975780636f8b44b0146108c257806370a08231146108eb57610381565b80633ccfd60b116102b657806351830227116102545780635c975abb116102235780635c975abb146107db57806362b99ad4146108065780636352211e146108315780636c19e7831461086e57610381565b8063518302271461071d5780635503a0e8146107485780635b7633d0146107735780635bbb21771461079e57610381565b806344a0d68a1161029057806344a0d68a14610677578063453c2310146106a05780634d973765146106cb578063512b658d146106f457610381565b80633ccfd60b1461060c57806341f434341461062357806342842e0e1461064e57610381565b806313faede61161032357806318cae269116102fd57806318cae2691461055257806323b872dd1461058f5780632d8be39b146105b857806332282af1146105e157610381565b806313faede6146104d357806316c38b3c146104fe57806318160ddd1461052757610381565b806306fdde031161035f57806306fdde0314610417578063081812fc14610442578063095ea7b31461047f5780630f4161aa146104a857610381565b806301ffc9a714610386578063051ad03b146103c357806306afd592146103ec575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a89190613940565b610dd2565b6040516103ba9190613988565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613a3e565b610e64565b005b3480156103f857600080fd5b50610401610f19565b60405161040e9190613aad565b60405180910390f35b34801561042357600080fd5b5061042c610f1f565b6040516104399190613b61565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613b83565b610fb1565b6040516104769190613bf1565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613c38565b61102d565b005b3480156104b457600080fd5b506104bd611046565b6040516104ca9190613988565b60405180910390f35b3480156104df57600080fd5b506104e8611059565b6040516104f59190613aad565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613ca4565b61105f565b005b34801561053357600080fd5b5061053c611084565b6040516105499190613aad565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613cd1565b61109b565b6040516105869190613aad565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613cfe565b6110b3565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613b83565b611102565b005b3480156105ed57600080fd5b506105f6611114565b6040516106039190613aad565b60405180910390f35b34801561061857600080fd5b5061062161111a565b005b34801561062f57600080fd5b506106386111f7565b6040516106459190613db0565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613cfe565b611209565b005b34801561068357600080fd5b5061069e60048036038101906106999190613b83565b611258565b005b3480156106ac57600080fd5b506106b561126a565b6040516106c29190613aad565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613ca4565b611270565b005b34801561070057600080fd5b5061071b60048036038101906107169190613dcb565b611295565b005b34801561072957600080fd5b50610732611302565b60405161073f9190613988565b60405180910390f35b34801561075457600080fd5b5061075d611315565b60405161076a9190613b61565b60405180910390f35b34801561077f57600080fd5b506107886113a3565b6040516107959190613bf1565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613f49565b6113c9565b6040516107d291906140f5565b60405180910390f35b3480156107e757600080fd5b506107f061148a565b6040516107fd9190613988565b60405180910390f35b34801561081257600080fd5b5061081b61149d565b6040516108289190613b61565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613b83565b61152b565b6040516108659190613bf1565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190613cd1565b61153d565b005b3480156108a357600080fd5b506108ac611589565b6040516108b99190613988565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190613b83565b61159c565b005b3480156108f757600080fd5b50610912600480360381019061090d9190613cd1565b6115ae565b60405161091f9190613aad565b60405180910390f35b34801561093457600080fd5b5061093d611666565b005b34801561094b57600080fd5b5061095461167a565b6040516109619190613b61565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906141cc565b611708565b005b34801561099f57600080fd5b506109ba60048036038101906109b59190613cd1565b61172a565b6040516109c791906142d3565b60405180910390f35b3480156109dc57600080fd5b506109f760048036038101906109f29190613ca4565b61186d565b005b348015610a0557600080fd5b50610a0e611892565b604051610a1b9190613bf1565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613ca4565b6118bc565b005b348015610a5957600080fd5b50610a626118e1565b604051610a6f9190613b61565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a91906143cc565b611973565b604051610aac9190613bf1565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190614428565b6119e8565b604051610ae991906142d3565b60405180910390f35b610b0c6004803603810190610b07919061447b565b611bf4565b005b610b286004803603810190610b239190613b83565b611ed7565b005b348015610b3657600080fd5b50610b516004803603810190610b4c91906144d7565b6121c0565b005b348015610b5f57600080fd5b50610b7a6004803603810190610b759190614517565b6121d9565b604051610b899392919061458b565b60405180910390f35b348015610b9e57600080fd5b50610bb96004803603810190610bb491906145c2565b61221c565b604051610bc69190613988565b60405180910390f35b348015610bdb57600080fd5b50610bf66004803603810190610bf1919061461e565b6122ab565b005b348015610c0457600080fd5b50610c1f6004803603810190610c1a9190613b83565b6122fc565b604051610c2c91906146f6565b60405180910390f35b348015610c4157600080fd5b50610c5c6004803603810190610c579190613b83565b612366565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613b83565b612378565b604051610c929190613b61565b60405180910390f35b348015610ca757600080fd5b50610cc26004803603810190610cbd9190613b83565b6124d0565b005b348015610cd057600080fd5b50610cd96124e2565b604051610ce69190613aad565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190613b83565b6124e8565b005b348015610d2457600080fd5b50610d3f6004803603810190610d3a9190614711565b6124fa565b604051610d4c9190613988565b60405180910390f35b348015610d6157600080fd5b50610d7c6004803603810190610d7791906141cc565b61258e565b005b348015610d8a57600080fd5b50610da56004803603810190610da09190613cd1565b6125b0565b005b348015610db357600080fd5b50610dbc612633565b604051610dc99190613aad565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e2d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610e6c612639565b60005b82829050811015610f135760105484610e86611084565b610e909190614780565b1115610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890614822565b60405180910390fd5b610f02838383818110610ee757610ee6614842565b5b9050602002016020810190610efc9190613cd1565b856126b7565b80610f0c90614871565b9050610e6f565b50505050565b600f5481565b606060028054610f2e906148e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5a906148e8565b8015610fa75780601f10610f7c57610100808354040283529160200191610fa7565b820191906000526020600020905b815481529060010190602001808311610f8a57829003601f168201915b5050505050905090565b6000610fbc826126d5565b610ff2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161103781612734565b6110418383612831565b505050565b601460009054906101000a900460ff1681565b600e5481565b611067612639565b80601460026101000a81548160ff02191690831515021790555050565b600061108e612972565b6001546000540303905090565b60156020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110f1576110f033612734565b5b6110fc84848461297b565b50505050565b61110a612639565b8060118190555050565b60115481565b611122612639565b600260095403611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90614965565b60405180910390fd5b60026009819055506000611179611892565b73ffffffffffffffffffffffffffffffffffffffff164760405161119c906149b6565b60006040518083038185875af1925050503d80600081146111d9576040519150601f19603f3d011682016040523d82523d6000602084013e6111de565b606091505b50509050806111ec57600080fd5b506001600981905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112475761124633612734565b5b611252848484612c9d565b50505050565b611260612639565b80600e8190555050565b60135481565b611278612639565b80601460016101000a81548160ff02191690831515021790555050565b61129d612639565b601054826112a9611084565b6112b39190614780565b11156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90614a17565b60405180910390fd5b6112fe81836126b7565b5050565b601460039054906101000a900460ff1681565b600d8054611322906148e8565b80601f016020809104026020016040519081016040528092919081815260200182805461134e906148e8565b801561139b5780601f106113705761010080835404028352916020019161139b565b820191906000526020600020905b81548152906001019060200180831161137e57829003601f168201915b505050505081565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060008251905060008167ffffffffffffffff8111156113ed576113ec613e0b565b5b60405190808252806020026020018201604052801561142657816020015b6114136137e2565b81526020019060019003908161140b5790505b50905060005b82811461147f5761145685828151811061144957611448614842565b5b60200260200101516122fc565b82828151811061146957611468614842565b5b602002602001018190525080600101905061142c565b508092505050919050565b601460029054906101000a900460ff1681565b600b80546114aa906148e8565b80601f01602080910402602001604051908101604052809291908181526020018280546114d6906148e8565b80156115235780601f106114f857610100808354040283529160200191611523565b820191906000526020600020905b81548152906001019060200180831161150657829003601f168201915b505050505081565b600061153682612cbd565b9050919050565b611545612639565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601460019054906101000a900460ff1681565b6115a4612639565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611615576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61166e612639565b6116786000612d89565b565b600c8054611687906148e8565b80601f01602080910402602001604051908101604052809291908181526020018280546116b3906148e8565b80156117005780601f106116d557610100808354040283529160200191611700565b820191906000526020600020905b8154815290600101906020018083116116e357829003601f168201915b505050505081565b611710612639565b80600b9080519060200190611726929190613831565b5050565b6060600080600061173a856115ae565b905060008167ffffffffffffffff81111561175857611757613e0b565b5b6040519080825280602002602001820160405280156117865781602001602082028036833780820191505090505b5090506117916137e2565b600061179b612972565b90505b83861461185f576117ae81612e4f565b9150816040015161185457600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117f957816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611853578083878060010198508151811061184657611845614842565b5b6020026020010181815250505b5b80600101905061179e565b508195505050505050919050565b611875612639565b80601460006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118c4612639565b80601460036101000a81548160ff02191690831515021790555050565b6060600380546118f0906148e8565b80601f016020809104026020016040519081016040528092919081815260200182805461191c906148e8565b80156119695780601f1061193e57610100808354040283529160200191611969565b820191906000526020600020905b81548152906001019060200180831161194c57829003601f168201915b5050505050905090565b600080600080611982856121d9565b809350819450829550505050600186848484604051600081526020016040526040516119b19493929190614a37565b6020604051602081039080840390855afa1580156119d3573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6060818310611a23576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a2e612e7a565b9050611a38612972565b851015611a4a57611a47612972565b94505b80841115611a56578093505b6000611a61876115ae565b905084861015611a84576000868603905081811015611a7e578091505b50611a89565b600090505b60008167ffffffffffffffff811115611aa557611aa4613e0b565b5b604051908082528060200260200182016040528015611ad35781602001602082028036833780820191505090505b50905060008203611aea5780945050505050611bed565b6000611af5886122fc565b905060008160400151611b0a57816000015190505b60008990505b888114158015611b205750848714155b15611bdf57611b2e81612e4f565b92508260400151611bd457600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611b7957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd35780848880600101995081518110611bc657611bc5614842565b5b6020026020010181815250505b5b806001019050611b10565b508583528296505050505050505b9392505050565b81601460029054906101000a900460ff1615611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614ac8565b60405180910390fd5b600081118015611c5757506012548111155b611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614b34565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611ce49190614780565b1115611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614ba0565b60405180910390fd5b60115481611d31611084565b611d3b9190614780565b1115611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390614a17565b60405180910390fd5b601460019054906101000a900460ff16611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614c32565b60405180910390fd5b60011515611dd9338461221c565b151514611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290614c9e565b60405180910390fd5b82600f54611e299190614cbe565b341015611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614d64565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eba9190614780565b92505081905550611ed2611ecc612e83565b846126b7565b505050565b80601460029054906101000a900460ff1615611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614ac8565b60405180910390fd5b600081118015611f3a57506012548111155b611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614b34565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611fc79190614780565b1115612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614ba0565b60405180910390fd5b60115481612014611084565b61201e9190614780565b111561205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690614a17565b60405180910390fd5b601460009054906101000a900460ff166120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590614dd0565b60405180910390fd5b601054826120ba611084565b6120c49190614780565b1115612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614e3c565b60405180910390fd5b81600e546121139190614cbe565b341015612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614d64565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a49190614780565b925050819055506121bc6121b6612e83565b836126b7565b5050565b816121ca81612734565b6121d48383612e8b565b505050565b600080600060418451146121ec57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b600080836040516020016122309190614ea4565b604051602081830303815290604052805190602001209050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661228b8285611973565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122e9576122e833612734565b5b6122f585858585613002565b5050505050565b6123046137e2565b61230c6137e2565b612314612972565b8310806123285750612324612e7a565b8310155b156123365780915050612361565b61233f83612e4f565b90508060400151156123545780915050612361565b61235d83613075565b9150505b919050565b61236e612639565b8060128190555050565b6060612383826126d5565b6123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b990614f31565b60405180910390fd5b60001515601460039054906101000a900460ff1615150361246f57600c80546123ea906148e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612416906148e8565b80156124635780601f1061243857610100808354040283529160200191612463565b820191906000526020600020905b81548152906001019060200180831161244657829003601f168201915b505050505090506124cb565b6000612479613095565b9050600081511161249957604051806020016040528060008152506124c7565b806124a384613127565b600d6040516020016124b793929190615021565b6040516020818303038152906040525b9150505b919050565b6124d8612639565b80600f8190555050565b60105481565b6124f0612639565b8060138190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612596612639565b80600c90805190602001906125ac929190613831565b5050565b6125b8612639565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e906150c4565b60405180910390fd5b61263081612d89565b50565b60125481565b612641612e83565b73ffffffffffffffffffffffffffffffffffffffff1661265f611892565b73ffffffffffffffffffffffffffffffffffffffff16146126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac90615130565b60405180910390fd5b565b6126d1828260405180602001604052806000815250613287565b5050565b6000816126e0612972565b111580156126ef575060005482105b801561272d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561282e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127ab929190615150565b602060405180830381865afa1580156127c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ec919061518e565b61282d57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016128249190613bf1565b60405180910390fd5b5b50565b600061283c8261152b565b90508073ffffffffffffffffffffffffffffffffffffffff1661285d613324565b73ffffffffffffffffffffffffffffffffffffffff16146128c05761288981612884613324565b6124fa565b6128bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061298682612cbd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146129ed576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806129f98461332c565b91509150612a0f8187612a0a613324565b61334e565b612a5b57612a2486612a1f613324565b6124fa565b612a5a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ac1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ace8686866001613392565b8015612ad957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612ba785612b83888887613398565b7c0200000000000000000000000000000000000000000000000000000000176133c0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612c2d5760006001850190506000600460008381526020019081526020016000205403612c2b576000548114612c2a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9586868660016133eb565b505050505050565b612cb8838383604051806020016040528060008152506122ab565b505050565b60008082905080612ccc612972565b11612d5257600054811015612d515760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612d4f575b60008103612d45576004600083600190039350838152602001908152602001600020549050612d1b565b8092505050612d84565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e576137e2565b612e7360046000848152602001908152602001600020546133f1565b9050919050565b60008054905090565b600033905090565b612e93613324565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ef7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612f04613324565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612fb1613324565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ff69190613988565b60405180910390a35050565b61300d8484846110b3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461306f57613038848484846134a7565b61306e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61307d6137e2565b61308e61308983612cbd565b6133f1565b9050919050565b6060600b80546130a4906148e8565b80601f01602080910402602001604051908101604052809291908181526020018280546130d0906148e8565b801561311d5780601f106130f25761010080835404028352916020019161311d565b820191906000526020600020905b81548152906001019060200180831161310057829003601f168201915b5050505050905090565b60606000820361316e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613282565b600082905060005b600082146131a057808061318990614871565b915050600a8261319991906151ea565b9150613176565b60008167ffffffffffffffff8111156131bc576131bb613e0b565b5b6040519080825280601f01601f1916602001820160405280156131ee5781602001600182028036833780820191505090505b5090505b6000851461327b57600182613207919061521b565b9150600a85613216919061524f565b60306132229190614780565b60f81b81838151811061323857613237614842565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561327491906151ea565b94506131f2565b8093505050505b919050565b61329183836135f7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461331f57600080549050600083820390505b6132d160008683806001019450866134a7565b613307576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106132be57816000541461331c57600080fd5b50505b505050565b600033905090565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86133af8686846137c9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6133f96137e2565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134cd613324565b8786866040518563ffffffff1660e01b81526004016134ef94939291906152d5565b6020604051808303816000875af192505050801561352b57506040513d601f19601f820116820180604052508101906135289190615336565b60015b6135a4573d806000811461355b576040519150601f19603f3d011682016040523d82523d6000602084013e613560565b606091505b50600081510361359c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613663576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361369d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136aa6000848385613392565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613721836137126000866000613398565b61371b856137d2565b176133c0565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613745578060008190555050506137c460008483856133eb565b505050565b60009392505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b82805461383d906148e8565b90600052602060002090601f01602090048101928261385f57600085556138a6565b82601f1061387857805160ff19168380011785556138a6565b828001600101855582156138a6579182015b828111156138a557825182559160200191906001019061388a565b5b5090506138b391906138b7565b5090565b5b808211156138d05760008160009055506001016138b8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61391d816138e8565b811461392857600080fd5b50565b60008135905061393a81613914565b92915050565b600060208284031215613956576139556138de565b5b60006139648482850161392b565b91505092915050565b60008115159050919050565b6139828161396d565b82525050565b600060208201905061399d6000830184613979565b92915050565b6000819050919050565b6139b6816139a3565b81146139c157600080fd5b50565b6000813590506139d3816139ad565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126139fe576139fd6139d9565b5b8235905067ffffffffffffffff811115613a1b57613a1a6139de565b5b602083019150836020820283011115613a3757613a366139e3565b5b9250929050565b600080600060408486031215613a5757613a566138de565b5b6000613a65868287016139c4565b935050602084013567ffffffffffffffff811115613a8657613a856138e3565b5b613a92868287016139e8565b92509250509250925092565b613aa7816139a3565b82525050565b6000602082019050613ac26000830184613a9e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b02578082015181840152602081019050613ae7565b83811115613b11576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b3382613ac8565b613b3d8185613ad3565b9350613b4d818560208601613ae4565b613b5681613b17565b840191505092915050565b60006020820190508181036000830152613b7b8184613b28565b905092915050565b600060208284031215613b9957613b986138de565b5b6000613ba7848285016139c4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bdb82613bb0565b9050919050565b613beb81613bd0565b82525050565b6000602082019050613c066000830184613be2565b92915050565b613c1581613bd0565b8114613c2057600080fd5b50565b600081359050613c3281613c0c565b92915050565b60008060408385031215613c4f57613c4e6138de565b5b6000613c5d85828601613c23565b9250506020613c6e858286016139c4565b9150509250929050565b613c818161396d565b8114613c8c57600080fd5b50565b600081359050613c9e81613c78565b92915050565b600060208284031215613cba57613cb96138de565b5b6000613cc884828501613c8f565b91505092915050565b600060208284031215613ce757613ce66138de565b5b6000613cf584828501613c23565b91505092915050565b600080600060608486031215613d1757613d166138de565b5b6000613d2586828701613c23565b9350506020613d3686828701613c23565b9250506040613d47868287016139c4565b9150509250925092565b6000819050919050565b6000613d76613d71613d6c84613bb0565b613d51565b613bb0565b9050919050565b6000613d8882613d5b565b9050919050565b6000613d9a82613d7d565b9050919050565b613daa81613d8f565b82525050565b6000602082019050613dc56000830184613da1565b92915050565b60008060408385031215613de257613de16138de565b5b6000613df0858286016139c4565b9250506020613e0185828601613c23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e4382613b17565b810181811067ffffffffffffffff82111715613e6257613e61613e0b565b5b80604052505050565b6000613e756138d4565b9050613e818282613e3a565b919050565b600067ffffffffffffffff821115613ea157613ea0613e0b565b5b602082029050602081019050919050565b6000613ec5613ec084613e86565b613e6b565b90508083825260208201905060208402830185811115613ee857613ee76139e3565b5b835b81811015613f115780613efd88826139c4565b845260208401935050602081019050613eea565b5050509392505050565b600082601f830112613f3057613f2f6139d9565b5b8135613f40848260208601613eb2565b91505092915050565b600060208284031215613f5f57613f5e6138de565b5b600082013567ffffffffffffffff811115613f7d57613f7c6138e3565b5b613f8984828501613f1b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fc781613bd0565b82525050565b600067ffffffffffffffff82169050919050565b613fea81613fcd565b82525050565b613ff98161396d565b82525050565b600062ffffff82169050919050565b61401781613fff565b82525050565b6080820160008201516140336000850182613fbe565b5060208201516140466020850182613fe1565b5060408201516140596040850182613ff0565b50606082015161406c606085018261400e565b50505050565b600061407e838361401d565b60808301905092915050565b6000602082019050919050565b60006140a282613f92565b6140ac8185613f9d565b93506140b783613fae565b8060005b838110156140e85781516140cf8882614072565b97506140da8361408a565b9250506001810190506140bb565b5085935050505092915050565b6000602082019050818103600083015261410f8184614097565b905092915050565b600080fd5b600067ffffffffffffffff82111561413757614136613e0b565b5b61414082613b17565b9050602081019050919050565b82818337600083830152505050565b600061416f61416a8461411c565b613e6b565b90508281526020810184848401111561418b5761418a614117565b5b61419684828561414d565b509392505050565b600082601f8301126141b3576141b26139d9565b5b81356141c384826020860161415c565b91505092915050565b6000602082840312156141e2576141e16138de565b5b600082013567ffffffffffffffff811115614200576141ff6138e3565b5b61420c8482850161419e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61424a816139a3565b82525050565b600061425c8383614241565b60208301905092915050565b6000602082019050919050565b600061428082614215565b61428a8185614220565b935061429583614231565b8060005b838110156142c65781516142ad8882614250565b97506142b883614268565b925050600181019050614299565b5085935050505092915050565b600060208201905081810360008301526142ed8184614275565b905092915050565b6000819050919050565b614308816142f5565b811461431357600080fd5b50565b600081359050614325816142ff565b92915050565b600067ffffffffffffffff82111561434657614345613e0b565b5b61434f82613b17565b9050602081019050919050565b600061436f61436a8461432b565b613e6b565b90508281526020810184848401111561438b5761438a614117565b5b61439684828561414d565b509392505050565b600082601f8301126143b3576143b26139d9565b5b81356143c384826020860161435c565b91505092915050565b600080604083850312156143e3576143e26138de565b5b60006143f185828601614316565b925050602083013567ffffffffffffffff811115614412576144116138e3565b5b61441e8582860161439e565b9150509250929050565b600080600060608486031215614441576144406138de565b5b600061444f86828701613c23565b9350506020614460868287016139c4565b9250506040614471868287016139c4565b9150509250925092565b60008060408385031215614492576144916138de565b5b60006144a0858286016139c4565b925050602083013567ffffffffffffffff8111156144c1576144c06138e3565b5b6144cd8582860161439e565b9150509250929050565b600080604083850312156144ee576144ed6138de565b5b60006144fc85828601613c23565b925050602061450d85828601613c8f565b9150509250929050565b60006020828403121561452d5761452c6138de565b5b600082013567ffffffffffffffff81111561454b5761454a6138e3565b5b6145578482850161439e565b91505092915050565b600060ff82169050919050565b61457681614560565b82525050565b614585816142f5565b82525050565b60006060820190506145a0600083018661456d565b6145ad602083018561457c565b6145ba604083018461457c565b949350505050565b600080604083850312156145d9576145d86138de565b5b60006145e785828601613c23565b925050602083013567ffffffffffffffff811115614608576146076138e3565b5b6146148582860161439e565b9150509250929050565b60008060008060808587031215614638576146376138de565b5b600061464687828801613c23565b945050602061465787828801613c23565b9350506040614668878288016139c4565b925050606085013567ffffffffffffffff811115614689576146886138e3565b5b6146958782880161439e565b91505092959194509250565b6080820160008201516146b76000850182613fbe565b5060208201516146ca6020850182613fe1565b5060408201516146dd6040850182613ff0565b5060608201516146f0606085018261400e565b50505050565b600060808201905061470b60008301846146a1565b92915050565b60008060408385031215614728576147276138de565b5b600061473685828601613c23565b925050602061474785828601613c23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061478b826139a3565b9150614796836139a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147cb576147ca614751565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061480c601483613ad3565b9150614817826147d6565b602082019050919050565b6000602082019050818103600083015261483b816147ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061487c826139a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148ae576148ad614751565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061490057607f821691505b602082108103614913576149126148b9565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061494f601f83613ad3565b915061495a82614919565b602082019050919050565b6000602082019050818103600083015261497e81614942565b9050919050565b600081905092915050565b50565b60006149a0600083614985565b91506149ab82614990565b600082019050919050565b60006149c182614993565b9150819050919050565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b6000614a01601f83613ad3565b9150614a0c826149cb565b602082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b6000608082019050614a4c600083018761457c565b614a59602083018661456d565b614a66604083018561457c565b614a73606083018461457c565b95945050505050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614ab2601783613ad3565b9150614abd82614a7c565b602082019050919050565b60006020820190508181036000830152614ae181614aa5565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614b1e601483613ad3565b9150614b2982614ae8565b602082019050919050565b60006020820190508181036000830152614b4d81614b11565b9050919050565b7f4d6178207065722077616c6c6574206578636565646564210000000000000000600082015250565b6000614b8a601883613ad3565b9150614b9582614b54565b602082019050919050565b60006020820190508181036000830152614bb981614b7d565b9050919050565b7f57686974656c697374206d696e74206973206e6f74206163746976652079657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c1c602183613ad3565b9150614c2782614bc0565b604082019050919050565b60006020820190508181036000830152614c4b81614c0f565b9050919050565b7f55736572206973206e6f742077686974656c6973746564210000000000000000600082015250565b6000614c88601883613ad3565b9150614c9382614c52565b602082019050919050565b60006020820190508181036000830152614cb781614c7b565b9050919050565b6000614cc9826139a3565b9150614cd4836139a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d0d57614d0c614751565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614d4e601383613ad3565b9150614d5982614d18565b602082019050919050565b60006020820190508181036000830152614d7d81614d41565b9050919050565b7f5075626c6963206d696e74206973206e6f742061637469766520796574210000600082015250565b6000614dba601e83613ad3565b9150614dc582614d84565b602082019050919050565b60006020820190508181036000830152614de981614dad565b9050919050565b7f4d617820737570706c79206c696d697420726561636865642100000000000000600082015250565b6000614e26601983613ad3565b9150614e3182614df0565b602082019050919050565b60006020820190508181036000830152614e5581614e19565b9050919050565b60008160601b9050919050565b6000614e7482614e5c565b9050919050565b6000614e8682614e69565b9050919050565b614e9e614e9982613bd0565b614e7b565b82525050565b6000614eb08284614e8d565b60148201915081905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f1b602f83613ad3565b9150614f2682614ebf565b604082019050919050565b60006020820190508181036000830152614f4a81614f0e565b9050919050565b600081905092915050565b6000614f6782613ac8565b614f718185614f51565b9350614f81818560208601613ae4565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614faf816148e8565b614fb98186614f51565b94506001821660008114614fd45760018114614fe557615018565b60ff19831686528186019350615018565b614fee85614f8d565b60005b8381101561501057815481890152600182019150602081019050614ff1565b838801955050505b50505092915050565b600061502d8286614f5c565b91506150398285614f5c565b91506150458284614fa2565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ae602683613ad3565b91506150b982615052565b604082019050919050565b600060208201905081810360008301526150dd816150a1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511a602083613ad3565b9150615125826150e4565b602082019050919050565b600060208201905081810360008301526151498161510d565b9050919050565b60006040820190506151656000830185613be2565b6151726020830184613be2565b9392505050565b60008151905061518881613c78565b92915050565b6000602082840312156151a4576151a36138de565b5b60006151b284828501615179565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151f5826139a3565b9150615200836139a3565b9250826152105761520f6151bb565b5b828204905092915050565b6000615226826139a3565b9150615231836139a3565b92508282101561524457615243614751565b5b828203905092915050565b600061525a826139a3565b9150615265836139a3565b925082615275576152746151bb565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006152a782615280565b6152b1818561528b565b93506152c1818560208601613ae4565b6152ca81613b17565b840191505092915050565b60006080820190506152ea6000830187613be2565b6152f76020830186613be2565b6153046040830185613a9e565b8181036060830152615316818461529c565b905095945050505050565b60008151905061533081613914565b92915050565b60006020828403121561534c5761534b6138de565b5b600061535a84828501615321565b9150509291505056fea2646970667358221220a793e238ca5a2f595f05733c29d9a2d29f3b2169b48c1c4b5fce37368026b3bd64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000383d79da46a14e50156eb3650ee34b1d7ed4dc27
-----Decoded View---------------
Arg [0] : _signerAddress (address): 0x383d79DA46a14e50156EB3650eE34b1d7ED4Dc27
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000383d79da46a14e50156eb3650ee34b1d7ed4dc27
Loading...
Loading
Loading...
Loading
OVERVIEW
In the wild west, there was a gang of Rowdy Pickles who were known for causing trouble wherever they went. These pickles were not your ordinary cucumbers, however. They were larger than life and had a fierce sense of adventure. They spend their days roaming across the dusty pl...Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.