ERC-721
Overview
Max Total Supply
1,000 ONEK
Holders
448
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 ONEKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TreyRatcliff1k1k
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Developed By SuperNormal Atelier pragma solidity ^0.8.17; import "./ERC721A.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./DefaultOperatorFilterer.sol"; import "./OperatorFilterer.sol"; contract TreyRatcliff1k1k is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard { using SafeMath for uint256; constructor() ERC721A("TREY RATCLIFF: 1K1K PROJECT", "ONEK") { } uint256 public immutable MAX_SUPPLY = 1000; uint256 public immutable TEAM_SUPPLY = 55; uint256 public immutable WL_SUPPLY = 945; function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override payable onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override payable onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override payable onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } // Premint AllowList // WL variables and functions mapping(address => bool) public allowlist; uint256 public WLedPrice = 0; bool isWLedRunning = false; uint256 public mintedInWLed = 0; uint256 public wlStartTime; mapping(address => uint256) public proofMints; mapping(address => uint256) public moonbirdsMints; mapping(address => uint256) public premintMints; mapping(address => uint8) public allowlistGroups; uint8 constant PROOF = 1; uint8 constant MOONBIRDS = 2; uint8 constant PREMINT = 3; uint8 constant PROOF_LIMIT = 3; uint8 constant MOONBIRDS_LIMIT = 2; uint8 constant PREMINT_LIMIT = 1; function set_WLedPrice(uint256 _price) public onlyOwner { WLedPrice = _price; } function runWLed() public onlyOwner { require(WLedPrice != 0, "Set the allowlist sale price!"); isWLedRunning = true; wlStartTime = block.timestamp; } function safeMintWL(uint256 numTokens) external payable callerIsUser { require(WLedPrice != 0, "Allowlist sale has not begun yet!"); require(isWLedRunning == true, "Allowlist sale is ended!"); require(checkMintWindow(), "Not in allowed time window for minting!"); uint8 group = allowlistGroups[msg.sender]; uint256 mints; if (group == PROOF) { mints = proofMints[msg.sender]; } else if (group == MOONBIRDS) { mints = moonbirdsMints[msg.sender]; } else if (group == PREMINT) { mints = premintMints[msg.sender]; } else { require(false, "Not eligible for allowlist mint!"); } require(mints + numTokens <= groupLimit(group), "Maximum number of mints exceeded for group!"); require(totalSupply() + numTokens <= MAX_SUPPLY, "Reached max supply!"); require(mintedInWLed + numTokens <= WL_SUPPLY + TEAM_SUPPLY, "Reached max supply!"); require(msg.value >= WLedPrice * numTokens, "Not enough ether sent!"); if (group == PROOF) { proofMints[msg.sender] = proofMints[msg.sender].add(numTokens); } else if (group == MOONBIRDS) { moonbirdsMints[msg.sender] = moonbirdsMints[msg.sender].add(numTokens); } else if (group == PREMINT) { premintMints[msg.sender] = premintMints[msg.sender].add(numTokens); } mintedInWLed = mintedInWLed.add(numTokens); _safeMint(msg.sender, numTokens); } function addToAllowlist(address[] memory addresses, uint8 group) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { allowlistGroups[addresses[i]] = group; } } function endWLed() public onlyOwner { isWLedRunning = false; } function checkMintWindow() private view returns (bool) { uint256 currentTime = block.timestamp; uint256 startTime = wlStartTime; if (currentTime < startTime + 1 hours) { return allowlistGroups[msg.sender] == PROOF; } else if (currentTime < startTime + 2 hours) { return allowlistGroups[msg.sender] == PROOF || allowlistGroups[msg.sender] == MOONBIRDS; } else { return true; } } function groupLimit(uint8 group) private pure returns (uint8) { if (group == PROOF) { return PROOF_LIMIT; } else if (group == MOONBIRDS) { return MOONBIRDS_LIMIT; } else if (group == PREMINT) { return PREMINT_LIMIT; } else { return 0; } } // Team Reserve Mint variables and functions uint256 public teamReserveMintPrice = 0; uint256 public teamReserveMintLimit = 0; bool isTeamReserveMintRunning = false; function isAuthorizedMinter(address _address) public pure returns (bool) { return _address == 0xd54B4Fde949570F18F1C13952a538a1525b6CaB2; } function set_teamReserveMintPrice (uint256 _price) public onlyOwner{ teamReserveMintPrice = _price; } function set_teamReserveMintLimit (uint256 _limit) public onlyOwner{ teamReserveMintLimit = _limit; } function runTeamReserveMint() public onlyOwner{ require(teamReserveMintPrice != 0, "Set the team reserve mint price!"); isTeamReserveMintRunning = true; } function safeMintTRM(uint256 amount) external payable nonReentrant callerIsUser { require(isAuthorizedMinter(msg.sender), "Unauthorized minter!"); require(amount > 0, "Cannot mint zero or negative tokens!"); require(teamReserveMintPrice != 0, "Team reserve mint has not begun yet!"); require(isTeamReserveMintRunning==true,"Team reserve mint is ended!"); require(totalSupply() + amount <= MAX_SUPPLY, "Not enough items left!"); require(msg.value >= (amount * teamReserveMintPrice), "Not enough ether sent!"); require(amount <= teamReserveMintLimit, "Cannot mint more than the limit!"); _safeMint(msg.sender, amount); } function endTeamReserveMint () public onlyOwner{ isTeamReserveMintRunning=false; } // Public sale variables and functions uint256 public publicSalePrice = 0; bool isPublicSaleRunning = false; function set_publicSalePrice (uint256 _price) public onlyOwner{ publicSalePrice = _price; } function runPublicSale() public onlyOwner{ require(publicSalePrice != 0, "Set the public sale price!"); isPublicSaleRunning = true; } function safeMintPS(uint256 amount) external payable nonReentrant callerIsUser{ require(publicSalePrice != 0, "Public sale has not begun yet!"); require(isPublicSaleRunning==true,"Public sale is ended!"); require(totalSupply() + amount <= MAX_SUPPLY, "Not enough items left!"); require(msg.value >= (amount * publicSalePrice), "Not enough ether sent!"); _safeMint(msg.sender, amount); } function endPublicSale () public onlyOwner{ isPublicSaleRunning=false; } // metadata URI bool public revealed = false; string private _baseTokenURI; string private notRevealedUri; function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function revealItems() external onlyOwner { revealed = true; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); if (revealed == false) { return notRevealedUri; } return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } //withdrawal function withdraw() external onlyOwner { uint256 balance = address(this).balance; uint256 TreyRatcliffAmount = balance.mul(925).div(1000); // 92.5% of the balance will go to TreyRatcliff's wallet uint256 SuperNormalTeamAmount = balance.mul(75).div(1000); // 7.5% of the balance will go to SuperNormalTeam's wallet address payable TreyRatcliffWallet = payable(0x8A2Cc795646F64C06eB4AB060F03271f13C080D1); address payable SuperNormalTeamWallet = payable(0xb2dC04AcC5342D14833fEbfc2C500eC3E3eC53Ba); TreyRatcliffWallet.transfer(TreyRatcliffAmount); SuperNormalTeamWallet.transfer(SuperNormalTeamAmount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken(); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. return packed; } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"group","type":"uint8"}],"name":"addToAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlistGroups","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTeamReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endWLed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAuthorizedMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"mintedInWLed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"moonbirdsMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"premintMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"proofMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"runPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"runTeamReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"runWLed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMintPS","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMintTRM","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"safeMintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"set_WLedPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"set_publicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"set_teamReserveMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"set_teamReserveMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserveMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserveMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e06040526103e8608090815250603760a0908152506103b160c0908152506000600b556000600c60006101000a81548160ff0219169083151502179055506000600d55600060135560006014556000601560006101000a81548160ff02191690831515021790555060006016556000601760006101000a81548160ff0219169083151502179055506000601760016101000a81548160ff021916908315150217905550348015620000b057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601b81526020017f5452455920524154434c4946463a20314b314b2050524f4a45435400000000008152506040518060400160405280600481526020017f4f4e454b000000000000000000000000000000000000000000000000000000008152508160029081620001459190620006e2565b508060039081620001579190620006e2565b50620001686200039560201b60201c565b600081905550505062000190620001846200039a60201b60201c565b620003a260201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003855780156200024b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002119291906200080e565b600060405180830381600087803b1580156200022c57600080fd5b505af115801562000241573d6000803e3d6000fd5b5050505062000384565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000305576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002cb9291906200080e565b600060405180830381600087803b158015620002e657600080fd5b505af1158015620002fb573d6000803e3d6000fd5b5050505062000383565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200034e91906200083b565b600060405180830381600087803b1580156200036957600080fd5b505af11580156200037e573d6000803e3d6000fd5b505050505b5b5b5050600160098190555062000858565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ea57607f821691505b6020821081036200050057620004ff620004a2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200056a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200052b565b6200057686836200052b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005c3620005bd620005b7846200058e565b62000598565b6200058e565b9050919050565b6000819050919050565b620005df83620005a2565b620005f7620005ee82620005ca565b84845462000538565b825550505050565b600090565b6200060e620005ff565b6200061b818484620005d4565b505050565b5b8181101562000643576200063760008262000604565b60018101905062000621565b5050565b601f82111562000692576200065c8162000506565b62000667846200051b565b8101602085101562000677578190505b6200068f62000686856200051b565b83018262000620565b50505b505050565b600082821c905092915050565b6000620006b76000198460080262000697565b1980831691505092915050565b6000620006d28383620006a4565b9150826002028217905092915050565b620006ed8262000468565b67ffffffffffffffff81111562000709576200070862000473565b5b620007158254620004d1565b6200072282828562000647565b600060209050601f8311600181146200075a576000841562000745578287015190505b620007518582620006c4565b865550620007c1565b601f1984166200076a8662000506565b60005b8281101562000794578489015182556001820191506020850194506020810190506200076d565b86831015620007b45784890151620007b0601f891682620006a4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007f682620007c9565b9050919050565b6200080881620007e9565b82525050565b6000604082019050620008256000830185620007fd565b620008346020830184620007fd565b9392505050565b6000602082019050620008526000830184620007fd565b92915050565b60805160a05160c051615575620008ab600039600081816118a301526123b70152600081816119180152612396015260008181610ea5015281816113e50152818161232101526129c301526155756000f3fe6080604052600436106102ff5760003560e01c8063842392c211610190578063c87b56dd116100dc578063e8831e9511610095578063f0299de01161006f578063f0299de014610adf578063f2c4ce1e14610afb578063f2fde38b14610b24578063fcb30aed14610b4d576102ff565b8063e8831e9514610a3c578063e985e9c514610a65578063edd7734414610aa2576102ff565b8063c87b56dd14610954578063ce3b563314610991578063d1794606146109a8578063d346d7bf146109bf578063e0b9a2c3146109d6578063e4eba514146109ff576102ff565b8063a3cae03d11610149578063b88d4fde11610123578063b88d4fde146108cb578063b9c3a818146108e7578063be9feb3014610912578063c7d17fd11461093d576102ff565b8063a3cae03d1461084c578063a7cd52cb14610863578063afe2e1fa146108a0576102ff565b8063842392c21461073a5780638da5cb5b1461077757806395d89b41146107a257806398c722d4146107cd5780639b6860c8146107f8578063a22cb46514610823576102ff565b806341f434341161024f578063569d171911610208578063715018a6116101e2578063715018a61461069257806377f86399146106a957806378fe3609146106d4578063827a70e9146106fd576102ff565b8063569d1719146105fc5780636352211e1461061857806370a0823114610655576102ff565b806341f434341461050d57806342842e0e146105385780634b47f855146105545780634e2c78221461059157806351830227146105a857806355f804b3146105d3576102ff565b80631a6b2bda116102bc5780632b34bc4b116102965780632b34bc4b1461048957806332cb6b0c146104b45780633ccfd60b146104df5780633f049404146104f6576102ff565b80631a6b2bda1461041957806321ce75b21461044457806323b872dd1461046d576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063095ea7b3146103a957806312310356146103c557806318160ddd146103ee575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613c4a565b610b69565b6040516103389190613c92565b60405180910390f35b34801561034d57600080fd5b50610356610bfb565b6040516103639190613d3d565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613d95565b610c8d565b6040516103a09190613e03565b60405180910390f35b6103c360048036038101906103be9190613e4a565b610d0c565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613d95565b610d25565b005b3480156103fa57600080fd5b50610403610dab565b6040516104109190613e99565b60405180910390f35b34801561042557600080fd5b5061042e610dc2565b60405161043b9190613e99565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190613d95565b610dc8565b005b61048760048036038101906104829190613eb4565b610e4e565b005b34801561049557600080fd5b5061049e610e9d565b6040516104ab9190613e99565b60405180910390f35b3480156104c057600080fd5b506104c9610ea3565b6040516104d69190613e99565b60405180910390f35b3480156104eb57600080fd5b506104f4610ec7565b005b34801561050257600080fd5b5061050b611068565b005b34801561051957600080fd5b50610522611101565b60405161052f9190613f66565b60405180910390f35b610552600480360381019061054d9190613eb4565b611113565b005b34801561056057600080fd5b5061057b60048036038101906105769190613f81565b611133565b6040516105889190613e99565b60405180910390f35b34801561059d57600080fd5b506105a661114b565b005b3480156105b457600080fd5b506105bd611230565b6040516105ca9190613c92565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906140e3565b611243565b005b61061660048036038101906106119190613d95565b6112d2565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613d95565b6114bd565b60405161064c9190613e03565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613f81565b6114cf565b6040516106899190613e99565b60405180910390f35b34801561069e57600080fd5b506106a7611587565b005b3480156106b557600080fd5b506106be61160f565b6040516106cb9190613e99565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613d95565b611615565b005b34801561070957600080fd5b50610724600480360381019061071f9190613f81565b61169b565b6040516107319190614148565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613f81565b6116bb565b60405161076e9190613c92565b60405180910390f35b34801561078357600080fd5b5061078c611707565b6040516107999190613e03565b60405180910390f35b3480156107ae57600080fd5b506107b7611731565b6040516107c49190613d3d565b60405180910390f35b3480156107d957600080fd5b506107e26117c3565b6040516107ef9190613e99565b60405180910390f35b34801561080457600080fd5b5061080d6117c9565b60405161081a9190613e99565b60405180910390f35b34801561082f57600080fd5b5061084a6004803603810190610845919061418f565b6117cf565b005b34801561085857600080fd5b506108616117e8565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613f81565b611881565b6040516108979190613c92565b60405180910390f35b3480156108ac57600080fd5b506108b56118a1565b6040516108c29190613e99565b60405180910390f35b6108e560048036038101906108e09190614270565b6118c5565b005b3480156108f357600080fd5b506108fc611916565b6040516109099190613e99565b60405180910390f35b34801561091e57600080fd5b5061092761193a565b6040516109349190613e99565b60405180910390f35b34801561094957600080fd5b50610952611940565b005b34801561096057600080fd5b5061097b60048036038101906109769190613d95565b6119d9565b6040516109889190613d3d565b60405180910390f35b34801561099d57600080fd5b506109a6611b2f565b005b3480156109b457600080fd5b506109bd611c0d565b005b3480156109cb57600080fd5b506109d4611ca6565b005b3480156109e257600080fd5b506109fd60048036038101906109f89190613d95565b611d84565b005b348015610a0b57600080fd5b50610a266004803603810190610a219190613f81565b611e0a565b604051610a339190613e99565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e91906143e7565b611e22565b005b348015610a7157600080fd5b50610a8c6004803603810190610a879190614443565b611f34565b604051610a999190613c92565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac49190613f81565b611fc8565b604051610ad69190613e99565b60405180910390f35b610af96004803603810190610af49190613d95565b611fe0565b005b348015610b0757600080fd5b50610b226004803603810190610b1d91906140e3565b61269f565b005b348015610b3057600080fd5b50610b4b6004803603810190610b469190613f81565b61272e565b005b610b676004803603810190610b629190613d95565b612825565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c0a906144b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c36906144b2565b8015610c835780601f10610c5857610100808354040283529160200191610c83565b820191906000526020600020905b815481529060010190602001808311610c6657829003601f168201915b5050505050905090565b6000610c9882612ae0565b610cce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610d1681612b3f565b610d208383612c3c565b505050565b610d2d612c4c565b73ffffffffffffffffffffffffffffffffffffffff16610d4b611707565b73ffffffffffffffffffffffffffffffffffffffff1614610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061452f565b60405180910390fd5b8060148190555050565b6000610db5612c54565b6001546000540303905090565b600d5481565b610dd0612c4c565b73ffffffffffffffffffffffffffffffffffffffff16610dee611707565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b9061452f565b60405180910390fd5b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e8c57610e8b33612b3f565b5b610e97848484612c59565b50505050565b60145481565b7f000000000000000000000000000000000000000000000000000000000000000081565b610ecf612c4c565b73ffffffffffffffffffffffffffffffffffffffff16610eed611707565b73ffffffffffffffffffffffffffffffffffffffff1614610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061452f565b60405180910390fd5b60004790506000610f736103e8610f6561039d85612f7b90919063ffffffff16565b612f9190919063ffffffff16565b90506000610f9f6103e8610f91604b86612f7b90919063ffffffff16565b612f9190919063ffffffff16565b90506000738a2cc795646f64c06eb4ab060f03271f13c080d19050600073b2dc04acc5342d14833febfc2c500ec3e3ec53ba90508173ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015611019573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611060573d6000803e3d6000fd5b505050505050565b611070612c4c565b73ffffffffffffffffffffffffffffffffffffffff1661108e611707565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061452f565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b6daaeb6d7670e522a718067333cd4e81565b61112e838383604051806020016040528060008152506118c5565b505050565b600f6020528060005260406000206000915090505481565b611153612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611171611707565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be9061452f565b60405180910390fd5b6000600b540361120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061459b565b60405180910390fd5b6001600c60006101000a81548160ff02191690831515021790555042600e81905550565b601760019054906101000a900460ff1681565b61124b612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611269611707565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061452f565b60405180910390fd5b80601890816112ce919061475d565b5050565b6112da612fa7565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061487b565b60405180910390fd5b60006016540361138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906148e7565b60405180910390fd5b60011515601760009054906101000a900460ff161515146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da90614953565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161140d610dab565b61141791906149a2565b1115611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90614a22565b60405180910390fd5b601654816114669190614a42565b3410156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90614ad0565b60405180910390fd5b6114b23382612ff6565b6114ba613014565b50565b60006114c88261301e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611536576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61158f612c4c565b73ffffffffffffffffffffffffffffffffffffffff166115ad611707565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061452f565b60405180910390fd5b61160d6000613116565b565b600b5481565b61161d612c4c565b73ffffffffffffffffffffffffffffffffffffffff1661163b611707565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061452f565b60405180910390fd5b8060138190555050565b60126020528060005260406000206000915054906101000a900460ff1681565b600073d54b4fde949570f18f1c13952a538a1525b6cab273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611740906144b2565b80601f016020809104026020016040519081016040528092919081815260200182805461176c906144b2565b80156117b95780601f1061178e576101008083540402835291602001916117b9565b820191906000526020600020905b81548152906001019060200180831161179c57829003601f168201915b5050505050905090565b60135481565b60165481565b816117d981612b3f565b6117e383836131dc565b505050565b6117f0612c4c565b73ffffffffffffffffffffffffffffffffffffffff1661180e611707565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b9061452f565b60405180910390fd5b6001601760016101000a81548160ff021916908315150217905550565b600a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119035761190233612b3f565b5b61190f858585856132e7565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e5481565b611948612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611966611707565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b39061452f565b60405180910390fd5b6000601760006101000a81548160ff021916908315150217905550565b60606119e482612ae0565b611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90614b62565b60405180910390fd5b6000611a2d61335a565b905060001515601760019054906101000a900460ff16151503611add5760198054611a57906144b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a83906144b2565b8015611ad05780601f10611aa557610100808354040283529160200191611ad0565b820191906000526020600020905b815481529060010190602001808311611ab357829003601f168201915b5050505050915050611b2a565b6000815103611afb5760405180602001604052806000815250611b26565b80611b05846133ec565b604051602001611b16929190614bbe565b6040516020818303038152906040525b9150505b919050565b611b37612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611b55611707565b73ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba29061452f565b60405180910390fd5b600060165403611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614c2e565b60405180910390fd5b6001601760006101000a81548160ff021916908315150217905550565b611c15612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611c33611707565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061452f565b60405180910390fd5b6000601560006101000a81548160ff021916908315150217905550565b611cae612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611ccc611707565b73ffffffffffffffffffffffffffffffffffffffff1614611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d199061452f565b60405180910390fd5b600060135403611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614c9a565b60405180910390fd5b6001601560006101000a81548160ff021916908315150217905550565b611d8c612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611daa611707565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df79061452f565b60405180910390fd5b8060168190555050565b60106020528060005260406000206000915090505481565b611e2a612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611e48611707565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e959061452f565b60405180910390fd5b60005b8251811015611f2f578160126000858481518110611ec257611ec1614cba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611f2790614ce9565b915050611ea1565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461204e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120459061487b565b60405180910390fd5b6000600b5403612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90614da3565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e090614e0f565b60405180910390fd5b6120f161343c565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614ea1565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600160ff168260ff16036121d857600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122c6565b600260ff168260ff160361222d57601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122c5565b600360ff168260ff160361228257601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122c4565b60006122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba90614f0d565b60405180910390fd5b5b5b5b6122cf82613598565b60ff1683826122de91906149a2565b111561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690614f9f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083612349610dab565b61235391906149a2565b1115612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b9061500b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006123e091906149a2565b83600d546123ee91906149a2565b111561242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124269061500b565b60405180910390fd5b82600b5461243d9190614a42565b34101561247f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247690614ad0565b60405180910390fd5b600160ff168260ff1603612527576124df83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e990919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612675565b600260ff168260ff16036125cf5761258783601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e990919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612674565b600360ff168260ff16036126735761262f83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e990919063ffffffff16565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b61268a83600d546135e990919063ffffffff16565b600d8190555061269a3384612ff6565b505050565b6126a7612c4c565b73ffffffffffffffffffffffffffffffffffffffff166126c5611707565b73ffffffffffffffffffffffffffffffffffffffff161461271b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127129061452f565b60405180910390fd5b806019908161272a919061475d565b5050565b612736612c4c565b73ffffffffffffffffffffffffffffffffffffffff16612754611707565b73ffffffffffffffffffffffffffffffffffffffff16146127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a19061452f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128109061509d565b60405180910390fd5b61282281613116565b50565b61282d612fa7565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128929061487b565b60405180910390fd5b6128a4336116bb565b6128e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128da90615109565b60405180910390fd5b60008111612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d9061519b565b60405180910390fd5b60006013540361296b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129629061522d565b60405180910390fd5b60011515601560009054906101000a900460ff161515146129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890615299565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816129eb610dab565b6129f591906149a2565b1115612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d90614a22565b60405180910390fd5b60135481612a449190614a42565b341015612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90614ad0565b60405180910390fd5b601454811115612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290615305565b60405180910390fd5b612ad53382612ff6565b612add613014565b50565b600081612aeb612c54565b11158015612afa575060005482105b8015612b38575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612c39576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612bb6929190615325565b602060405180830381865afa158015612bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf79190615363565b612c3857806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612c2f9190613e03565b60405180910390fd5b5b50565b612c48828260016135ff565b5050565b600033905090565b600090565b6000612c648261301e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ccb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612cd78461374b565b91509150612ced8187612ce8613772565b61377a565b612d3957612d0286612cfd613772565b611f34565b612d38576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d9f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dac86868660016137be565b8015612db757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612e8585612e618888876137c4565b7c0200000000000000000000000000000000000000000000000000000000176137ec565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612f0b5760006001850190506000600460008381526020019081526020016000205403612f09576000548114612f08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f738686866001613817565b505050505050565b60008183612f899190614a42565b905092915050565b60008183612f9f91906153bf565b905092915050565b600260095403612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe39061543c565b60405180910390fd5b6002600981905550565b61301082826040518060200160405280600081525061381d565b5050565b6001600981905550565b600081613029612c54565b116130df576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036130de57600081036130d95760005482106130ae576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600460008360019003935083815260200190815260200160002054905060008103613111576130af565b613111565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006131e9613772565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16613296613772565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132db9190613c92565b60405180910390a35050565b6132f2848484610e4e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146133545761331d848484846138ba565b613353576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060188054613369906144b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613395906144b2565b80156133e25780601f106133b7576101008083540402835291602001916133e2565b820191906000526020600020905b8154815290600101906020018083116133c557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561342757600184039350600a81066030018453600a8104905080613405575b50828103602084039350808452505050919050565b6000804290506000600e549050610e108161345791906149a2565b8210156134bd57600160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161492505050613595565b611c20816134cb91906149a2565b82101561358e57600160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614806135855750600260ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b92505050613595565b6001925050505b90565b6000600160ff168260ff16036135b157600390506135e4565b600260ff168260ff16036135c857600290506135e4565b600360ff168260ff16036135df57600190506135e4565b600090505b919050565b600081836135f791906149a2565b905092915050565b600061360a836114bd565b90508115613695578073ffffffffffffffffffffffffffffffffffffffff16613631613772565b73ffffffffffffffffffffffffffffffffffffffff16146136945761365d81613658613772565b611f34565b613693576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86137db868684613a0a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6138278383613a13565b60008373ffffffffffffffffffffffffffffffffffffffff163b146138b557600080549050600083820390505b61386760008683806001019450866138ba565b61389d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106138545781600054146138b257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138e0613772565b8786866040518563ffffffff1660e01b815260040161390294939291906154b1565b6020604051808303816000875af192505050801561393e57506040513d601f19601f8201168201806040525081019061393b9190615512565b60015b6139b7573d806000811461396e576040519150601f19603f3d011682016040523d82523d6000602084013e613973565b606091505b5060008151036139af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203613a53576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a6060008483856137be565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613ad783613ac860008660006137c4565b613ad185613bce565b176137ec565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613b7857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613b3d565b5060008203613bb3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613bc96000848385613817565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c2781613bf2565b8114613c3257600080fd5b50565b600081359050613c4481613c1e565b92915050565b600060208284031215613c6057613c5f613be8565b5b6000613c6e84828501613c35565b91505092915050565b60008115159050919050565b613c8c81613c77565b82525050565b6000602082019050613ca76000830184613c83565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ce7578082015181840152602081019050613ccc565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d0f82613cad565b613d198185613cb8565b9350613d29818560208601613cc9565b613d3281613cf3565b840191505092915050565b60006020820190508181036000830152613d578184613d04565b905092915050565b6000819050919050565b613d7281613d5f565b8114613d7d57600080fd5b50565b600081359050613d8f81613d69565b92915050565b600060208284031215613dab57613daa613be8565b5b6000613db984828501613d80565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ded82613dc2565b9050919050565b613dfd81613de2565b82525050565b6000602082019050613e186000830184613df4565b92915050565b613e2781613de2565b8114613e3257600080fd5b50565b600081359050613e4481613e1e565b92915050565b60008060408385031215613e6157613e60613be8565b5b6000613e6f85828601613e35565b9250506020613e8085828601613d80565b9150509250929050565b613e9381613d5f565b82525050565b6000602082019050613eae6000830184613e8a565b92915050565b600080600060608486031215613ecd57613ecc613be8565b5b6000613edb86828701613e35565b9350506020613eec86828701613e35565b9250506040613efd86828701613d80565b9150509250925092565b6000819050919050565b6000613f2c613f27613f2284613dc2565b613f07565b613dc2565b9050919050565b6000613f3e82613f11565b9050919050565b6000613f5082613f33565b9050919050565b613f6081613f45565b82525050565b6000602082019050613f7b6000830184613f57565b92915050565b600060208284031215613f9757613f96613be8565b5b6000613fa584828501613e35565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ff082613cf3565b810181811067ffffffffffffffff8211171561400f5761400e613fb8565b5b80604052505050565b6000614022613bde565b905061402e8282613fe7565b919050565b600067ffffffffffffffff82111561404e5761404d613fb8565b5b61405782613cf3565b9050602081019050919050565b82818337600083830152505050565b600061408661408184614033565b614018565b9050828152602081018484840111156140a2576140a1613fb3565b5b6140ad848285614064565b509392505050565b600082601f8301126140ca576140c9613fae565b5b81356140da848260208601614073565b91505092915050565b6000602082840312156140f9576140f8613be8565b5b600082013567ffffffffffffffff81111561411757614116613bed565b5b614123848285016140b5565b91505092915050565b600060ff82169050919050565b6141428161412c565b82525050565b600060208201905061415d6000830184614139565b92915050565b61416c81613c77565b811461417757600080fd5b50565b60008135905061418981614163565b92915050565b600080604083850312156141a6576141a5613be8565b5b60006141b485828601613e35565b92505060206141c58582860161417a565b9150509250929050565b600067ffffffffffffffff8211156141ea576141e9613fb8565b5b6141f382613cf3565b9050602081019050919050565b600061421361420e846141cf565b614018565b90508281526020810184848401111561422f5761422e613fb3565b5b61423a848285614064565b509392505050565b600082601f83011261425757614256613fae565b5b8135614267848260208601614200565b91505092915050565b6000806000806080858703121561428a57614289613be8565b5b600061429887828801613e35565b94505060206142a987828801613e35565b93505060406142ba87828801613d80565b925050606085013567ffffffffffffffff8111156142db576142da613bed565b5b6142e787828801614242565b91505092959194509250565b600067ffffffffffffffff82111561430e5761430d613fb8565b5b602082029050602081019050919050565b600080fd5b6000614337614332846142f3565b614018565b9050808382526020820190506020840283018581111561435a5761435961431f565b5b835b81811015614383578061436f8882613e35565b84526020840193505060208101905061435c565b5050509392505050565b600082601f8301126143a2576143a1613fae565b5b81356143b2848260208601614324565b91505092915050565b6143c48161412c565b81146143cf57600080fd5b50565b6000813590506143e1816143bb565b92915050565b600080604083850312156143fe576143fd613be8565b5b600083013567ffffffffffffffff81111561441c5761441b613bed565b5b6144288582860161438d565b9250506020614439858286016143d2565b9150509250929050565b6000806040838503121561445a57614459613be8565b5b600061446885828601613e35565b925050602061447985828601613e35565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144ca57607f821691505b6020821081036144dd576144dc614483565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614519602083613cb8565b9150614524826144e3565b602082019050919050565b600060208201905081810360008301526145488161450c565b9050919050565b7f5365742074686520616c6c6f776c6973742073616c6520707269636521000000600082015250565b6000614585601d83613cb8565b91506145908261454f565b602082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261461d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145e0565b61462786836145e0565b95508019841693508086168417925050509392505050565b600061465a61465561465084613d5f565b613f07565b613d5f565b9050919050565b6000819050919050565b6146748361463f565b61468861468082614661565b8484546145ed565b825550505050565b600090565b61469d614690565b6146a881848461466b565b505050565b5b818110156146cc576146c1600082614695565b6001810190506146ae565b5050565b601f821115614711576146e2816145bb565b6146eb846145d0565b810160208510156146fa578190505b61470e614706856145d0565b8301826146ad565b50505b505050565b600082821c905092915050565b600061473460001984600802614716565b1980831691505092915050565b600061474d8383614723565b9150826002028217905092915050565b61476682613cad565b67ffffffffffffffff81111561477f5761477e613fb8565b5b61478982546144b2565b6147948282856146d0565b600060209050601f8311600181146147c757600084156147b5578287015190505b6147bf8582614741565b865550614827565b601f1984166147d5866145bb565b60005b828110156147fd578489015182556001820191506020850194506020810190506147d8565b8683101561481a5784890151614816601f891682614723565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614865601e83613cb8565b91506148708261482f565b602082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574210000600082015250565b60006148d1601e83613cb8565b91506148dc8261489b565b602082019050919050565b60006020820190508181036000830152614900816148c4565b9050919050565b7f5075626c69632073616c6520697320656e646564210000000000000000000000600082015250565b600061493d601583613cb8565b915061494882614907565b602082019050919050565b6000602082019050818103600083015261496c81614930565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149ad82613d5f565b91506149b883613d5f565b92508282019050808211156149d0576149cf614973565b5b92915050565b7f4e6f7420656e6f756768206974656d73206c6566742100000000000000000000600082015250565b6000614a0c601683613cb8565b9150614a17826149d6565b602082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b6000614a4d82613d5f565b9150614a5883613d5f565b9250828202614a6681613d5f565b91508282048414831517614a7d57614a7c614973565b5b5092915050565b7f4e6f7420656e6f7567682065746865722073656e742100000000000000000000600082015250565b6000614aba601683613cb8565b9150614ac582614a84565b602082019050919050565b60006020820190508181036000830152614ae981614aad565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b4c602f83613cb8565b9150614b5782614af0565b604082019050919050565b60006020820190508181036000830152614b7b81614b3f565b9050919050565b600081905092915050565b6000614b9882613cad565b614ba28185614b82565b9350614bb2818560208601613cc9565b80840191505092915050565b6000614bca8285614b8d565b9150614bd68284614b8d565b91508190509392505050565b7f53657420746865207075626c69632073616c6520707269636521000000000000600082015250565b6000614c18601a83613cb8565b9150614c2382614be2565b602082019050919050565b60006020820190508181036000830152614c4781614c0b565b9050919050565b7f53657420746865207465616d2072657365727665206d696e7420707269636521600082015250565b6000614c84602083613cb8565b9150614c8f82614c4e565b602082019050919050565b60006020820190508181036000830152614cb381614c77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614cf482613d5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d2657614d25614973565b5b600182019050919050565b7f416c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602183613cb8565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f416c6c6f776c6973742073616c6520697320656e646564210000000000000000600082015250565b6000614df9601883613cb8565b9150614e0482614dc3565b602082019050919050565b60006020820190508181036000830152614e2881614dec565b9050919050565b7f4e6f7420696e20616c6c6f7765642074696d652077696e646f7720666f72206d60008201527f696e74696e672100000000000000000000000000000000000000000000000000602082015250565b6000614e8b602783613cb8565b9150614e9682614e2f565b604082019050919050565b60006020820190508181036000830152614eba81614e7e565b9050919050565b7f4e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7421600082015250565b6000614ef7602083613cb8565b9150614f0282614ec1565b602082019050919050565b60006020820190508181036000830152614f2681614eea565b9050919050565b7f4d6178696d756d206e756d626572206f66206d696e747320657863656564656460008201527f20666f722067726f757021000000000000000000000000000000000000000000602082015250565b6000614f89602b83613cb8565b9150614f9482614f2d565b604082019050919050565b60006020820190508181036000830152614fb881614f7c565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b6000614ff5601383613cb8565b915061500082614fbf565b602082019050919050565b6000602082019050818103600083015261502481614fe8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615087602683613cb8565b91506150928261502b565b604082019050919050565b600060208201905081810360008301526150b68161507a565b9050919050565b7f556e617574686f72697a6564206d696e74657221000000000000000000000000600082015250565b60006150f3601483613cb8565b91506150fe826150bd565b602082019050919050565b60006020820190508181036000830152615122816150e6565b9050919050565b7f43616e6e6f74206d696e74207a65726f206f72206e6567617469766520746f6b60008201527f656e732100000000000000000000000000000000000000000000000000000000602082015250565b6000615185602483613cb8565b915061519082615129565b604082019050919050565b600060208201905081810360008301526151b481615178565b9050919050565b7f5465616d2072657365727665206d696e7420686173206e6f7420626567756e2060008201527f7965742100000000000000000000000000000000000000000000000000000000602082015250565b6000615217602483613cb8565b9150615222826151bb565b604082019050919050565b600060208201905081810360008301526152468161520a565b9050919050565b7f5465616d2072657365727665206d696e7420697320656e646564210000000000600082015250565b6000615283601b83613cb8565b915061528e8261524d565b602082019050919050565b600060208201905081810360008301526152b281615276565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e20746865206c696d697421600082015250565b60006152ef602083613cb8565b91506152fa826152b9565b602082019050919050565b6000602082019050818103600083015261531e816152e2565b9050919050565b600060408201905061533a6000830185613df4565b6153476020830184613df4565b9392505050565b60008151905061535d81614163565b92915050565b60006020828403121561537957615378613be8565b5b60006153878482850161534e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006153ca82613d5f565b91506153d583613d5f565b9250826153e5576153e4615390565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615426601f83613cb8565b9150615431826153f0565b602082019050919050565b6000602082019050818103600083015261545581615419565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154838261545c565b61548d8185615467565b935061549d818560208601613cc9565b6154a681613cf3565b840191505092915050565b60006080820190506154c66000830187613df4565b6154d36020830186613df4565b6154e06040830185613e8a565b81810360608301526154f28184615478565b905095945050505050565b60008151905061550c81613c1e565b92915050565b60006020828403121561552857615527613be8565b5b6000615536848285016154fd565b9150509291505056fea26469706673582212208d9c638e5858ce1f471481896e1f2f7cee04bd120d6197cce7ea665cd6df8c0864736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102ff5760003560e01c8063842392c211610190578063c87b56dd116100dc578063e8831e9511610095578063f0299de01161006f578063f0299de014610adf578063f2c4ce1e14610afb578063f2fde38b14610b24578063fcb30aed14610b4d576102ff565b8063e8831e9514610a3c578063e985e9c514610a65578063edd7734414610aa2576102ff565b8063c87b56dd14610954578063ce3b563314610991578063d1794606146109a8578063d346d7bf146109bf578063e0b9a2c3146109d6578063e4eba514146109ff576102ff565b8063a3cae03d11610149578063b88d4fde11610123578063b88d4fde146108cb578063b9c3a818146108e7578063be9feb3014610912578063c7d17fd11461093d576102ff565b8063a3cae03d1461084c578063a7cd52cb14610863578063afe2e1fa146108a0576102ff565b8063842392c21461073a5780638da5cb5b1461077757806395d89b41146107a257806398c722d4146107cd5780639b6860c8146107f8578063a22cb46514610823576102ff565b806341f434341161024f578063569d171911610208578063715018a6116101e2578063715018a61461069257806377f86399146106a957806378fe3609146106d4578063827a70e9146106fd576102ff565b8063569d1719146105fc5780636352211e1461061857806370a0823114610655576102ff565b806341f434341461050d57806342842e0e146105385780634b47f855146105545780634e2c78221461059157806351830227146105a857806355f804b3146105d3576102ff565b80631a6b2bda116102bc5780632b34bc4b116102965780632b34bc4b1461048957806332cb6b0c146104b45780633ccfd60b146104df5780633f049404146104f6576102ff565b80631a6b2bda1461041957806321ce75b21461044457806323b872dd1461046d576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063095ea7b3146103a957806312310356146103c557806318160ddd146103ee575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613c4a565b610b69565b6040516103389190613c92565b60405180910390f35b34801561034d57600080fd5b50610356610bfb565b6040516103639190613d3d565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613d95565b610c8d565b6040516103a09190613e03565b60405180910390f35b6103c360048036038101906103be9190613e4a565b610d0c565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613d95565b610d25565b005b3480156103fa57600080fd5b50610403610dab565b6040516104109190613e99565b60405180910390f35b34801561042557600080fd5b5061042e610dc2565b60405161043b9190613e99565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190613d95565b610dc8565b005b61048760048036038101906104829190613eb4565b610e4e565b005b34801561049557600080fd5b5061049e610e9d565b6040516104ab9190613e99565b60405180910390f35b3480156104c057600080fd5b506104c9610ea3565b6040516104d69190613e99565b60405180910390f35b3480156104eb57600080fd5b506104f4610ec7565b005b34801561050257600080fd5b5061050b611068565b005b34801561051957600080fd5b50610522611101565b60405161052f9190613f66565b60405180910390f35b610552600480360381019061054d9190613eb4565b611113565b005b34801561056057600080fd5b5061057b60048036038101906105769190613f81565b611133565b6040516105889190613e99565b60405180910390f35b34801561059d57600080fd5b506105a661114b565b005b3480156105b457600080fd5b506105bd611230565b6040516105ca9190613c92565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906140e3565b611243565b005b61061660048036038101906106119190613d95565b6112d2565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613d95565b6114bd565b60405161064c9190613e03565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613f81565b6114cf565b6040516106899190613e99565b60405180910390f35b34801561069e57600080fd5b506106a7611587565b005b3480156106b557600080fd5b506106be61160f565b6040516106cb9190613e99565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613d95565b611615565b005b34801561070957600080fd5b50610724600480360381019061071f9190613f81565b61169b565b6040516107319190614148565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613f81565b6116bb565b60405161076e9190613c92565b60405180910390f35b34801561078357600080fd5b5061078c611707565b6040516107999190613e03565b60405180910390f35b3480156107ae57600080fd5b506107b7611731565b6040516107c49190613d3d565b60405180910390f35b3480156107d957600080fd5b506107e26117c3565b6040516107ef9190613e99565b60405180910390f35b34801561080457600080fd5b5061080d6117c9565b60405161081a9190613e99565b60405180910390f35b34801561082f57600080fd5b5061084a6004803603810190610845919061418f565b6117cf565b005b34801561085857600080fd5b506108616117e8565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613f81565b611881565b6040516108979190613c92565b60405180910390f35b3480156108ac57600080fd5b506108b56118a1565b6040516108c29190613e99565b60405180910390f35b6108e560048036038101906108e09190614270565b6118c5565b005b3480156108f357600080fd5b506108fc611916565b6040516109099190613e99565b60405180910390f35b34801561091e57600080fd5b5061092761193a565b6040516109349190613e99565b60405180910390f35b34801561094957600080fd5b50610952611940565b005b34801561096057600080fd5b5061097b60048036038101906109769190613d95565b6119d9565b6040516109889190613d3d565b60405180910390f35b34801561099d57600080fd5b506109a6611b2f565b005b3480156109b457600080fd5b506109bd611c0d565b005b3480156109cb57600080fd5b506109d4611ca6565b005b3480156109e257600080fd5b506109fd60048036038101906109f89190613d95565b611d84565b005b348015610a0b57600080fd5b50610a266004803603810190610a219190613f81565b611e0a565b604051610a339190613e99565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e91906143e7565b611e22565b005b348015610a7157600080fd5b50610a8c6004803603810190610a879190614443565b611f34565b604051610a999190613c92565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac49190613f81565b611fc8565b604051610ad69190613e99565b60405180910390f35b610af96004803603810190610af49190613d95565b611fe0565b005b348015610b0757600080fd5b50610b226004803603810190610b1d91906140e3565b61269f565b005b348015610b3057600080fd5b50610b4b6004803603810190610b469190613f81565b61272e565b005b610b676004803603810190610b629190613d95565b612825565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c0a906144b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c36906144b2565b8015610c835780601f10610c5857610100808354040283529160200191610c83565b820191906000526020600020905b815481529060010190602001808311610c6657829003601f168201915b5050505050905090565b6000610c9882612ae0565b610cce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610d1681612b3f565b610d208383612c3c565b505050565b610d2d612c4c565b73ffffffffffffffffffffffffffffffffffffffff16610d4b611707565b73ffffffffffffffffffffffffffffffffffffffff1614610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061452f565b60405180910390fd5b8060148190555050565b6000610db5612c54565b6001546000540303905090565b600d5481565b610dd0612c4c565b73ffffffffffffffffffffffffffffffffffffffff16610dee611707565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b9061452f565b60405180910390fd5b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e8c57610e8b33612b3f565b5b610e97848484612c59565b50505050565b60145481565b7f00000000000000000000000000000000000000000000000000000000000003e881565b610ecf612c4c565b73ffffffffffffffffffffffffffffffffffffffff16610eed611707565b73ffffffffffffffffffffffffffffffffffffffff1614610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061452f565b60405180910390fd5b60004790506000610f736103e8610f6561039d85612f7b90919063ffffffff16565b612f9190919063ffffffff16565b90506000610f9f6103e8610f91604b86612f7b90919063ffffffff16565b612f9190919063ffffffff16565b90506000738a2cc795646f64c06eb4ab060f03271f13c080d19050600073b2dc04acc5342d14833febfc2c500ec3e3ec53ba90508173ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015611019573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611060573d6000803e3d6000fd5b505050505050565b611070612c4c565b73ffffffffffffffffffffffffffffffffffffffff1661108e611707565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061452f565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b6daaeb6d7670e522a718067333cd4e81565b61112e838383604051806020016040528060008152506118c5565b505050565b600f6020528060005260406000206000915090505481565b611153612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611171611707565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be9061452f565b60405180910390fd5b6000600b540361120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061459b565b60405180910390fd5b6001600c60006101000a81548160ff02191690831515021790555042600e81905550565b601760019054906101000a900460ff1681565b61124b612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611269611707565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061452f565b60405180910390fd5b80601890816112ce919061475d565b5050565b6112da612fa7565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061487b565b60405180910390fd5b60006016540361138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906148e7565b60405180910390fd5b60011515601760009054906101000a900460ff161515146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da90614953565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e88161140d610dab565b61141791906149a2565b1115611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90614a22565b60405180910390fd5b601654816114669190614a42565b3410156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90614ad0565b60405180910390fd5b6114b23382612ff6565b6114ba613014565b50565b60006114c88261301e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611536576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61158f612c4c565b73ffffffffffffffffffffffffffffffffffffffff166115ad611707565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061452f565b60405180910390fd5b61160d6000613116565b565b600b5481565b61161d612c4c565b73ffffffffffffffffffffffffffffffffffffffff1661163b611707565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061452f565b60405180910390fd5b8060138190555050565b60126020528060005260406000206000915054906101000a900460ff1681565b600073d54b4fde949570f18f1c13952a538a1525b6cab273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611740906144b2565b80601f016020809104026020016040519081016040528092919081815260200182805461176c906144b2565b80156117b95780601f1061178e576101008083540402835291602001916117b9565b820191906000526020600020905b81548152906001019060200180831161179c57829003601f168201915b5050505050905090565b60135481565b60165481565b816117d981612b3f565b6117e383836131dc565b505050565b6117f0612c4c565b73ffffffffffffffffffffffffffffffffffffffff1661180e611707565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b9061452f565b60405180910390fd5b6001601760016101000a81548160ff021916908315150217905550565b600a6020528060005260406000206000915054906101000a900460ff1681565b7f00000000000000000000000000000000000000000000000000000000000003b181565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119035761190233612b3f565b5b61190f858585856132e7565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000003781565b600e5481565b611948612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611966611707565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b39061452f565b60405180910390fd5b6000601760006101000a81548160ff021916908315150217905550565b60606119e482612ae0565b611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90614b62565b60405180910390fd5b6000611a2d61335a565b905060001515601760019054906101000a900460ff16151503611add5760198054611a57906144b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a83906144b2565b8015611ad05780601f10611aa557610100808354040283529160200191611ad0565b820191906000526020600020905b815481529060010190602001808311611ab357829003601f168201915b5050505050915050611b2a565b6000815103611afb5760405180602001604052806000815250611b26565b80611b05846133ec565b604051602001611b16929190614bbe565b6040516020818303038152906040525b9150505b919050565b611b37612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611b55611707565b73ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba29061452f565b60405180910390fd5b600060165403611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614c2e565b60405180910390fd5b6001601760006101000a81548160ff021916908315150217905550565b611c15612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611c33611707565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061452f565b60405180910390fd5b6000601560006101000a81548160ff021916908315150217905550565b611cae612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611ccc611707565b73ffffffffffffffffffffffffffffffffffffffff1614611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d199061452f565b60405180910390fd5b600060135403611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614c9a565b60405180910390fd5b6001601560006101000a81548160ff021916908315150217905550565b611d8c612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611daa611707565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df79061452f565b60405180910390fd5b8060168190555050565b60106020528060005260406000206000915090505481565b611e2a612c4c565b73ffffffffffffffffffffffffffffffffffffffff16611e48611707565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e959061452f565b60405180910390fd5b60005b8251811015611f2f578160126000858481518110611ec257611ec1614cba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611f2790614ce9565b915050611ea1565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461204e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120459061487b565b60405180910390fd5b6000600b5403612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90614da3565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e090614e0f565b60405180910390fd5b6120f161343c565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614ea1565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600160ff168260ff16036121d857600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122c6565b600260ff168260ff160361222d57601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122c5565b600360ff168260ff160361228257601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122c4565b60006122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba90614f0d565b60405180910390fd5b5b5b5b6122cf82613598565b60ff1683826122de91906149a2565b111561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690614f9f565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e883612349610dab565b61235391906149a2565b1115612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b9061500b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000377f00000000000000000000000000000000000000000000000000000000000003b16123e091906149a2565b83600d546123ee91906149a2565b111561242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124269061500b565b60405180910390fd5b82600b5461243d9190614a42565b34101561247f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247690614ad0565b60405180910390fd5b600160ff168260ff1603612527576124df83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e990919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612675565b600260ff168260ff16036125cf5761258783601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e990919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612674565b600360ff168260ff16036126735761262f83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e990919063ffffffff16565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b61268a83600d546135e990919063ffffffff16565b600d8190555061269a3384612ff6565b505050565b6126a7612c4c565b73ffffffffffffffffffffffffffffffffffffffff166126c5611707565b73ffffffffffffffffffffffffffffffffffffffff161461271b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127129061452f565b60405180910390fd5b806019908161272a919061475d565b5050565b612736612c4c565b73ffffffffffffffffffffffffffffffffffffffff16612754611707565b73ffffffffffffffffffffffffffffffffffffffff16146127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a19061452f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128109061509d565b60405180910390fd5b61282281613116565b50565b61282d612fa7565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128929061487b565b60405180910390fd5b6128a4336116bb565b6128e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128da90615109565b60405180910390fd5b60008111612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d9061519b565b60405180910390fd5b60006013540361296b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129629061522d565b60405180910390fd5b60011515601560009054906101000a900460ff161515146129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890615299565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e8816129eb610dab565b6129f591906149a2565b1115612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d90614a22565b60405180910390fd5b60135481612a449190614a42565b341015612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90614ad0565b60405180910390fd5b601454811115612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290615305565b60405180910390fd5b612ad53382612ff6565b612add613014565b50565b600081612aeb612c54565b11158015612afa575060005482105b8015612b38575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612c39576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612bb6929190615325565b602060405180830381865afa158015612bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf79190615363565b612c3857806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612c2f9190613e03565b60405180910390fd5b5b50565b612c48828260016135ff565b5050565b600033905090565b600090565b6000612c648261301e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ccb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612cd78461374b565b91509150612ced8187612ce8613772565b61377a565b612d3957612d0286612cfd613772565b611f34565b612d38576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d9f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dac86868660016137be565b8015612db757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612e8585612e618888876137c4565b7c0200000000000000000000000000000000000000000000000000000000176137ec565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612f0b5760006001850190506000600460008381526020019081526020016000205403612f09576000548114612f08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f738686866001613817565b505050505050565b60008183612f899190614a42565b905092915050565b60008183612f9f91906153bf565b905092915050565b600260095403612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe39061543c565b60405180910390fd5b6002600981905550565b61301082826040518060200160405280600081525061381d565b5050565b6001600981905550565b600081613029612c54565b116130df576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036130de57600081036130d95760005482106130ae576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600460008360019003935083815260200190815260200160002054905060008103613111576130af565b613111565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006131e9613772565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16613296613772565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132db9190613c92565b60405180910390a35050565b6132f2848484610e4e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146133545761331d848484846138ba565b613353576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060188054613369906144b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613395906144b2565b80156133e25780601f106133b7576101008083540402835291602001916133e2565b820191906000526020600020905b8154815290600101906020018083116133c557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561342757600184039350600a81066030018453600a8104905080613405575b50828103602084039350808452505050919050565b6000804290506000600e549050610e108161345791906149a2565b8210156134bd57600160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161492505050613595565b611c20816134cb91906149a2565b82101561358e57600160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614806135855750600260ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b92505050613595565b6001925050505b90565b6000600160ff168260ff16036135b157600390506135e4565b600260ff168260ff16036135c857600290506135e4565b600360ff168260ff16036135df57600190506135e4565b600090505b919050565b600081836135f791906149a2565b905092915050565b600061360a836114bd565b90508115613695578073ffffffffffffffffffffffffffffffffffffffff16613631613772565b73ffffffffffffffffffffffffffffffffffffffff16146136945761365d81613658613772565b611f34565b613693576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86137db868684613a0a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6138278383613a13565b60008373ffffffffffffffffffffffffffffffffffffffff163b146138b557600080549050600083820390505b61386760008683806001019450866138ba565b61389d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106138545781600054146138b257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138e0613772565b8786866040518563ffffffff1660e01b815260040161390294939291906154b1565b6020604051808303816000875af192505050801561393e57506040513d601f19601f8201168201806040525081019061393b9190615512565b60015b6139b7573d806000811461396e576040519150601f19603f3d011682016040523d82523d6000602084013e613973565b606091505b5060008151036139af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203613a53576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a6060008483856137be565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613ad783613ac860008660006137c4565b613ad185613bce565b176137ec565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613b7857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613b3d565b5060008203613bb3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613bc96000848385613817565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c2781613bf2565b8114613c3257600080fd5b50565b600081359050613c4481613c1e565b92915050565b600060208284031215613c6057613c5f613be8565b5b6000613c6e84828501613c35565b91505092915050565b60008115159050919050565b613c8c81613c77565b82525050565b6000602082019050613ca76000830184613c83565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ce7578082015181840152602081019050613ccc565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d0f82613cad565b613d198185613cb8565b9350613d29818560208601613cc9565b613d3281613cf3565b840191505092915050565b60006020820190508181036000830152613d578184613d04565b905092915050565b6000819050919050565b613d7281613d5f565b8114613d7d57600080fd5b50565b600081359050613d8f81613d69565b92915050565b600060208284031215613dab57613daa613be8565b5b6000613db984828501613d80565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ded82613dc2565b9050919050565b613dfd81613de2565b82525050565b6000602082019050613e186000830184613df4565b92915050565b613e2781613de2565b8114613e3257600080fd5b50565b600081359050613e4481613e1e565b92915050565b60008060408385031215613e6157613e60613be8565b5b6000613e6f85828601613e35565b9250506020613e8085828601613d80565b9150509250929050565b613e9381613d5f565b82525050565b6000602082019050613eae6000830184613e8a565b92915050565b600080600060608486031215613ecd57613ecc613be8565b5b6000613edb86828701613e35565b9350506020613eec86828701613e35565b9250506040613efd86828701613d80565b9150509250925092565b6000819050919050565b6000613f2c613f27613f2284613dc2565b613f07565b613dc2565b9050919050565b6000613f3e82613f11565b9050919050565b6000613f5082613f33565b9050919050565b613f6081613f45565b82525050565b6000602082019050613f7b6000830184613f57565b92915050565b600060208284031215613f9757613f96613be8565b5b6000613fa584828501613e35565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ff082613cf3565b810181811067ffffffffffffffff8211171561400f5761400e613fb8565b5b80604052505050565b6000614022613bde565b905061402e8282613fe7565b919050565b600067ffffffffffffffff82111561404e5761404d613fb8565b5b61405782613cf3565b9050602081019050919050565b82818337600083830152505050565b600061408661408184614033565b614018565b9050828152602081018484840111156140a2576140a1613fb3565b5b6140ad848285614064565b509392505050565b600082601f8301126140ca576140c9613fae565b5b81356140da848260208601614073565b91505092915050565b6000602082840312156140f9576140f8613be8565b5b600082013567ffffffffffffffff81111561411757614116613bed565b5b614123848285016140b5565b91505092915050565b600060ff82169050919050565b6141428161412c565b82525050565b600060208201905061415d6000830184614139565b92915050565b61416c81613c77565b811461417757600080fd5b50565b60008135905061418981614163565b92915050565b600080604083850312156141a6576141a5613be8565b5b60006141b485828601613e35565b92505060206141c58582860161417a565b9150509250929050565b600067ffffffffffffffff8211156141ea576141e9613fb8565b5b6141f382613cf3565b9050602081019050919050565b600061421361420e846141cf565b614018565b90508281526020810184848401111561422f5761422e613fb3565b5b61423a848285614064565b509392505050565b600082601f83011261425757614256613fae565b5b8135614267848260208601614200565b91505092915050565b6000806000806080858703121561428a57614289613be8565b5b600061429887828801613e35565b94505060206142a987828801613e35565b93505060406142ba87828801613d80565b925050606085013567ffffffffffffffff8111156142db576142da613bed565b5b6142e787828801614242565b91505092959194509250565b600067ffffffffffffffff82111561430e5761430d613fb8565b5b602082029050602081019050919050565b600080fd5b6000614337614332846142f3565b614018565b9050808382526020820190506020840283018581111561435a5761435961431f565b5b835b81811015614383578061436f8882613e35565b84526020840193505060208101905061435c565b5050509392505050565b600082601f8301126143a2576143a1613fae565b5b81356143b2848260208601614324565b91505092915050565b6143c48161412c565b81146143cf57600080fd5b50565b6000813590506143e1816143bb565b92915050565b600080604083850312156143fe576143fd613be8565b5b600083013567ffffffffffffffff81111561441c5761441b613bed565b5b6144288582860161438d565b9250506020614439858286016143d2565b9150509250929050565b6000806040838503121561445a57614459613be8565b5b600061446885828601613e35565b925050602061447985828601613e35565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144ca57607f821691505b6020821081036144dd576144dc614483565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614519602083613cb8565b9150614524826144e3565b602082019050919050565b600060208201905081810360008301526145488161450c565b9050919050565b7f5365742074686520616c6c6f776c6973742073616c6520707269636521000000600082015250565b6000614585601d83613cb8565b91506145908261454f565b602082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261461d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145e0565b61462786836145e0565b95508019841693508086168417925050509392505050565b600061465a61465561465084613d5f565b613f07565b613d5f565b9050919050565b6000819050919050565b6146748361463f565b61468861468082614661565b8484546145ed565b825550505050565b600090565b61469d614690565b6146a881848461466b565b505050565b5b818110156146cc576146c1600082614695565b6001810190506146ae565b5050565b601f821115614711576146e2816145bb565b6146eb846145d0565b810160208510156146fa578190505b61470e614706856145d0565b8301826146ad565b50505b505050565b600082821c905092915050565b600061473460001984600802614716565b1980831691505092915050565b600061474d8383614723565b9150826002028217905092915050565b61476682613cad565b67ffffffffffffffff81111561477f5761477e613fb8565b5b61478982546144b2565b6147948282856146d0565b600060209050601f8311600181146147c757600084156147b5578287015190505b6147bf8582614741565b865550614827565b601f1984166147d5866145bb565b60005b828110156147fd578489015182556001820191506020850194506020810190506147d8565b8683101561481a5784890151614816601f891682614723565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614865601e83613cb8565b91506148708261482f565b602082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574210000600082015250565b60006148d1601e83613cb8565b91506148dc8261489b565b602082019050919050565b60006020820190508181036000830152614900816148c4565b9050919050565b7f5075626c69632073616c6520697320656e646564210000000000000000000000600082015250565b600061493d601583613cb8565b915061494882614907565b602082019050919050565b6000602082019050818103600083015261496c81614930565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149ad82613d5f565b91506149b883613d5f565b92508282019050808211156149d0576149cf614973565b5b92915050565b7f4e6f7420656e6f756768206974656d73206c6566742100000000000000000000600082015250565b6000614a0c601683613cb8565b9150614a17826149d6565b602082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b6000614a4d82613d5f565b9150614a5883613d5f565b9250828202614a6681613d5f565b91508282048414831517614a7d57614a7c614973565b5b5092915050565b7f4e6f7420656e6f7567682065746865722073656e742100000000000000000000600082015250565b6000614aba601683613cb8565b9150614ac582614a84565b602082019050919050565b60006020820190508181036000830152614ae981614aad565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b4c602f83613cb8565b9150614b5782614af0565b604082019050919050565b60006020820190508181036000830152614b7b81614b3f565b9050919050565b600081905092915050565b6000614b9882613cad565b614ba28185614b82565b9350614bb2818560208601613cc9565b80840191505092915050565b6000614bca8285614b8d565b9150614bd68284614b8d565b91508190509392505050565b7f53657420746865207075626c69632073616c6520707269636521000000000000600082015250565b6000614c18601a83613cb8565b9150614c2382614be2565b602082019050919050565b60006020820190508181036000830152614c4781614c0b565b9050919050565b7f53657420746865207465616d2072657365727665206d696e7420707269636521600082015250565b6000614c84602083613cb8565b9150614c8f82614c4e565b602082019050919050565b60006020820190508181036000830152614cb381614c77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614cf482613d5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d2657614d25614973565b5b600182019050919050565b7f416c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602183613cb8565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f416c6c6f776c6973742073616c6520697320656e646564210000000000000000600082015250565b6000614df9601883613cb8565b9150614e0482614dc3565b602082019050919050565b60006020820190508181036000830152614e2881614dec565b9050919050565b7f4e6f7420696e20616c6c6f7765642074696d652077696e646f7720666f72206d60008201527f696e74696e672100000000000000000000000000000000000000000000000000602082015250565b6000614e8b602783613cb8565b9150614e9682614e2f565b604082019050919050565b60006020820190508181036000830152614eba81614e7e565b9050919050565b7f4e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7421600082015250565b6000614ef7602083613cb8565b9150614f0282614ec1565b602082019050919050565b60006020820190508181036000830152614f2681614eea565b9050919050565b7f4d6178696d756d206e756d626572206f66206d696e747320657863656564656460008201527f20666f722067726f757021000000000000000000000000000000000000000000602082015250565b6000614f89602b83613cb8565b9150614f9482614f2d565b604082019050919050565b60006020820190508181036000830152614fb881614f7c565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b6000614ff5601383613cb8565b915061500082614fbf565b602082019050919050565b6000602082019050818103600083015261502481614fe8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615087602683613cb8565b91506150928261502b565b604082019050919050565b600060208201905081810360008301526150b68161507a565b9050919050565b7f556e617574686f72697a6564206d696e74657221000000000000000000000000600082015250565b60006150f3601483613cb8565b91506150fe826150bd565b602082019050919050565b60006020820190508181036000830152615122816150e6565b9050919050565b7f43616e6e6f74206d696e74207a65726f206f72206e6567617469766520746f6b60008201527f656e732100000000000000000000000000000000000000000000000000000000602082015250565b6000615185602483613cb8565b915061519082615129565b604082019050919050565b600060208201905081810360008301526151b481615178565b9050919050565b7f5465616d2072657365727665206d696e7420686173206e6f7420626567756e2060008201527f7965742100000000000000000000000000000000000000000000000000000000602082015250565b6000615217602483613cb8565b9150615222826151bb565b604082019050919050565b600060208201905081810360008301526152468161520a565b9050919050565b7f5465616d2072657365727665206d696e7420697320656e646564210000000000600082015250565b6000615283601b83613cb8565b915061528e8261524d565b602082019050919050565b600060208201905081810360008301526152b281615276565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e20746865206c696d697421600082015250565b60006152ef602083613cb8565b91506152fa826152b9565b602082019050919050565b6000602082019050818103600083015261531e816152e2565b9050919050565b600060408201905061533a6000830185613df4565b6153476020830184613df4565b9392505050565b60008151905061535d81614163565b92915050565b60006020828403121561537957615378613be8565b5b60006153878482850161534e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006153ca82613d5f565b91506153d583613d5f565b9250826153e5576153e4615390565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615426601f83613cb8565b9150615431826153f0565b602082019050919050565b6000602082019050818103600083015261545581615419565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154838261545c565b61548d8185615467565b935061549d818560208601613cc9565b6154a681613cf3565b840191505092915050565b60006080820190506154c66000830187613df4565b6154d36020830186613df4565b6154e06040830185613e8a565b81810360608301526154f28184615478565b905095945050505050565b60008151905061550c81613c1e565b92915050565b60006020828403121561552857615527613be8565b5b6000615536848285016154fd565b9150509291505056fea26469706673582212208d9c638e5858ce1f471481896e1f2f7cee04bd120d6197cce7ea665cd6df8c0864736f6c63430008110033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.