Overview
TokenID
55
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CyberGenie
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// //// ___ _ _ ____ ____ _ _ ___ ____ ____ ____ ____ _ _ _ ____ //// //// | |__| |___ | \_/ |__] |___ |__/ | __ |___ |\ | | |___ //// //// | | | |___ |___ | |__] |___ | \ |__] |___ | \| | |___ //// //// //// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /// @custom:security-contact [email protected] contract CyberGenie is ERC721A, Pausable, Ownable { struct PartnerConditions { uint256 maxMintPerAddress; uint256 price; } // Max allowed minting per address uint256 public constant MAX_MINT_PER_ADDRESS = 5; // Max token supply uint256 public constant MAX_SUPPLY = 5000; // Public mint price uint256 public mintPrice = 0.07 ether; // Whitelist mint price uint256 public whitelistMintPrice = 0.05 ether; // Validation of metadata order string public provenanceHash = "4347a3f0a341c2537ba3f1a42440052014f864fb8b06dca9e6ca944d1ac66aba"; // Keep track of already minted whitelist wallets mapping(address => bool) private whitelistClaimed; // blacklistd sc partners mapping(address => bool) private partnersSCBlacklist; // List of partners sc with discounted price i.e nft community partners, a small list address[] public partnersSCListKeys; mapping(address => uint256) public partnersSCList; // List of partners wallets with discounted price and max_per_address i.e collaborator wallets, a small list mapping(address => PartnerConditions) public partnersWalletList; bytes32 public whitelistMerkleRoot; bool public isPublicSaleActive; bool public isWhitelistMintEnabled = true; string private baseTokenURI = "https://cybergenie.mypinata.cloud/ipfs/Qmbt8fZnCdXJaE9bwYpMuu5XV88NKjbHGVo35vUSg7LicM/"; constructor() ERC721A("The Cyber Genie", "CG") {} modifier validateCount(uint256 _count, uint8 _partnershipType) { uint256 _maxMintPerAddress; if (_partnershipType == 1) { _maxMintPerAddress = getMaxMintPerAddress(_msgSender()); } else { _maxMintPerAddress = MAX_MINT_PER_ADDRESS; } require( _count > 0 && _count + _numberMinted(_msgSender()) - _getAux(_msgSender()) <= _maxMintPerAddress, "CG: Exceeded maxMintPerAddress" ); require( totalSupply() + _count <= MAX_SUPPLY, "CG: Exceeded max supply" ); _; } modifier validatePrice(uint256 _count, uint8 _partnershipType) { uint256 _price; if (_partnershipType == 1) { _price = getPartnerWalletMintPrice(_msgSender()); } else if (_partnershipType == 2) { _price = getPartnerSCMintPrice(_msgSender()); } else { _price = (isWhitelistMintEnabled) ? whitelistMintPrice : mintPrice; } require(msg.value >= _count * _price, "CG: Insufficient funds"); _; } modifier validateProvenance() { require( bytes(provenanceHash).length == 0, "CG: Provenance already set!" ); _; } /** * @dev Get the max mint per address some wallet partners might have * different max per address constraint i.e collaborators */ function getMaxMintPerAddress(address _claimer) public view returns (uint256) { uint256 _maxMintPerAddress = MAX_MINT_PER_ADDRESS; if (partnersWalletList[_claimer].maxMintPerAddress > 0) { _maxMintPerAddress = partnersWalletList[_claimer].maxMintPerAddress; } return _maxMintPerAddress; } /** * @dev Get the minting price for partner wallet * */ function getPartnerWalletMintPrice(address _claimer) public view returns (uint256) { uint256 _price = (isWhitelistMintEnabled) ? whitelistMintPrice : mintPrice; if (partnersWalletList[_claimer].price > 0) { _price = partnersWalletList[_claimer].price; } return _price; } /** * @dev Get the minting price for partner SC * */ function getPartnerSCMintPrice(address _claimer) public view returns (uint256) { uint256 _price = (isWhitelistMintEnabled) ? whitelistMintPrice : mintPrice; for (uint256 i = 0; i < partnersSCListKeys.length; i++) { // check if claimer has tokens with partner sc if ( IERC721A(partnersSCListKeys[i]).balanceOf(_claimer) >= 1 && !partnersSCBlacklist[partnersSCListKeys[i]] ) { uint256 _tmpPrice; _tmpPrice = partnersSCList[partnersSCListKeys[i]]; if (_tmpPrice < _price) { _price = _tmpPrice; } } } return _price; } /** * @dev sets the base uri for {baseURI} */ function setBaseURI(string calldata baseURI) external onlyOwner { baseTokenURI = baseURI; } /** * @dev sets the mint price in wei for {price} */ function setMintPrice(uint256 _newMintPrice) external onlyOwner { mintPrice = _newMintPrice; } /** * @dev sets the whitelist mint price in wei for {price} */ function setWhitelistMintPrice(uint256 _newWhitelistMintPrice) external onlyOwner { whitelistMintPrice = _newWhitelistMintPrice; } /** * @dev sets the state of public sale for {isPublicSaleActive} */ function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } /** * @dev sets the state of whitelist public sale for {isWhitelistMintEnabled} */ function setIsWhitelistMintEnabled(bool _newState) external onlyOwner { isWhitelistMintEnabled = _newState; } /** * @dev sets the merkle root for {whitelistMerkleRoot} */ function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } /** * @dev adds a partner to the partner wallet list {partnersWalletList} * * Requirements: * * - onlyOwner * */ function setPartnersSCList(address _address, uint256 _price) external onlyOwner { partnersSCListKeys.push(_address); partnersSCList[_address] = _price; } /** * @dev adds a partner to the partner sc blacklist {partnersSCBlacklist} * * Requirements: * * - onlyOwner * */ function setPartnersSCBlackList(address _address) external onlyOwner { partnersSCBlacklist[_address] = true; } /** * @dev adds a partner to the partner wallet list {partnersWalletList} * * Requirements: * * - onlyOwner * */ function setPartnersWalletList( address[] calldata _addrs, uint256[] calldata _maxMintPerAddress, uint256[] calldata _price ) external onlyOwner { for (uint256 i = 0; i < _addrs.length; i++) { partnersWalletList[_addrs[i]] = PartnerConditions({ maxMintPerAddress: _maxMintPerAddress[i], price: _price[i] }); } } /** * @dev sets the provinance hash for {provenanceHash} * only allowed one time, can be used to verify that metadata order was not altered before reveal * * Requirements: * * - onlyOwner * - validateProvenance * */ function setProvenanceHash(string memory _newProvenanceHash) external onlyOwner validateProvenance { provenanceHash = _newProvenanceHash; } /** * @dev Activate emergency stop mechanism * */ function pause() public onlyOwner { _pause(); } /** * @dev De-activate emergency stop mechanism * */ function unpause() public onlyOwner { _unpause(); } /** * @dev See {ERC721A-_beforeTokenTransfer}. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override whenNotPaused { super.transferFrom(from, to, tokenId); } /** * @dev See {ERC721A-_startTokenId}. */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** * @dev See {ERC721A-_baseURI}. */ function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } /** * @dev See {ERC721A-tokenURI}. */ function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "Nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _toString(_tokenId))) : ""; } /** * @dev Owner minting * * Requirements: * * - onlyOwner * */ function airdropOwner(address[] calldata _addrs, uint256[] calldata _counts) external onlyOwner { for (uint256 i = 0; i < _addrs.length; i++) { _mint(_addrs[i], _counts[i]); _setAux(_addrs[i], uint64(_getAux(_addrs[i]) + _counts[i])); } } /** * @dev Public minting for whitelist * * Requirements: * * - validateCount * - validatePrice * - `isWhitelistMintEnabled` must be true. * */ function whitelistMint( uint32 _count, bytes32[] calldata _merkleProof, uint8 partnershipType ) public payable validateCount(_count, partnershipType) validatePrice(_count, partnershipType) { require(isWhitelistMintEnabled, "CG: Whitelist sale is not active"); require( !whitelistClaimed[_msgSender()], "CG: Address already claimed whitelist spot" ); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require( MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "CG: Invalid Merkle Proof" ); whitelistClaimed[_msgSender()] = true; _safeMint(_msgSender(), _count); } /** * @dev Public minting during public sale * * Requirements: * * - validateCount * - validatePrice * - `isPublicSaleActive` must be true. * */ function mint(uint32 _count, uint8 partnershipType) external payable validateCount(_count, partnershipType) validatePrice(_count, partnershipType) { require(isPublicSaleActive, "CG: Public Sale is not active"); _mint(_msgSender(), _count); } /** * @dev Withdraw contract balance * * Requirements: * * - onlyOwner * - `success` must be true. * */ function withdraw() external payable onlyOwner { (bool success, ) = payable(owner()).call{value: address(this).balance}( "" ); require(success, "CG: Withdraw failed."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// 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":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256[]","name":"_counts","type":"uint256[]"}],"name":"airdropOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"}],"name":"getMaxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"}],"name":"getPartnerSCMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"}],"name":"getPartnerWalletMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_count","type":"uint32"},{"internalType":"uint8","name":"partnershipType","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","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":"partnersSCList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"partnersSCListKeys","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"partnersWalletList","outputs":[{"internalType":"uint256","name":"maxMintPerAddress","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setIsWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPartnersSCBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPartnersSCList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256[]","name":"_maxMintPerAddress","type":"uint256[]"},{"internalType":"uint256[]","name":"_price","type":"uint256[]"}],"name":"setPartnersWalletList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWhitelistMintPrice","type":"uint256"}],"name":"setWhitelistMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_count","type":"uint32"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint8","name":"partnershipType","type":"uint8"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405266f8b0a10e47000060095566b1a2bc2ec50000600a5560405180606001604052806040815260200162004cae60409139600b90805190602001906200004b92919062000275565b506001601260016101000a81548160ff02191690831515021790555060405180608001604052806056815260200162004cee60569139601390805190602001906200009892919062000275565b50348015620000a657600080fd5b506040518060400160405280600f81526020017f5468652043796265722047656e696500000000000000000000000000000000008152506040518060400160405280600281526020017f434700000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012b92919062000275565b5080600390805190602001906200014492919062000275565b50620001556200019e60201b60201c565b60008190555050506000600860006101000a81548160ff021916908315150217905550620001986200018c620001a760201b60201c565b620001af60201b60201c565b6200038a565b60006001905090565b600033905090565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002839062000354565b90600052602060002090601f016020900481019282620002a75760008555620002f3565b82601f10620002c257805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f2578251825591602001919060010190620002d5565b5b50905062000302919062000306565b5090565b5b808211156200032157600081600090555060010162000307565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036d57607f821691505b6020821081141562000384576200038362000325565b5b50919050565b614914806200039a6000396000f3fe6080604052600436106102935760003560e01c80636817c76c1161015a578063ab226ce0116100c1578063cbae59871161007a578063cbae59871461097e578063d6377a6b146109a7578063e985e9c5146109e4578063f2fde38b14610a21578063f4a0a52814610a4a578063fd45a29014610a7357610293565b8063ab226ce01461088c578063b88d4fde146108b5578063bd32fb66146108d1578063c42d0768146108fa578063c6ab67a314610916578063c87b56dd1461094157610293565b806395d89b411161011357806395d89b411461078b578063a22cb465146107b6578063a3574aaf146107df578063a611708e146107fb578063a724ad8614610824578063aa98e0c61461086157610293565b80636817c76c146106a157806370a08231146106cc578063715018a61461070957806376b7d2ab146107205780638456cb59146107495780638da5cb5b1461076057610293565b80632c9bee89116101fe5780633f4ba83a116101b75780633f4ba83a146105b257806342842e0e146105c957806351aaceab146105e557806355f804b3146106105780635c975abb146106395780636352211e1461066457610293565b80632c9bee89146104d557806332cb6b0c146104fe57806335c6aaf8146105295780633744aa96146105545780633acd6cb21461057d5780633ccfd60b146105a857610293565b806318160ddd1161025057806318160ddd146103c05780631c170be3146103eb5780631e84c413146104285780631f70cd7a1461045357806323b872dd1461049057806328cad13d146104ac57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc146103005780630898b33e1461033d578063095ea7b31461037b5780631096952314610397575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba919061335f565b610ab0565b6040516102cc91906133a7565b60405180910390f35b3480156102e157600080fd5b506102ea610b42565b6040516102f7919061345b565b60405180910390f35b34801561030c57600080fd5b50610327600480360381019061032291906134b3565b610bd4565b6040516103349190613521565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613568565b610c53565b6040516103729291906135a4565b60405180910390f35b610395600480360381019061039091906135cd565b610c77565b005b3480156103a357600080fd5b506103be60048036038101906103b99190613742565b610dbb565b005b3480156103cc57600080fd5b506103d5610e2e565b6040516103e2919061378b565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613568565b610e45565b60405161041f919061378b565b60405180910390f35b34801561043457600080fd5b5061043d610ee6565b60405161044a91906133a7565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613568565b610ef9565b604051610487919061378b565b60405180910390f35b6104aa60048036038101906104a591906137a6565b610f11565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613825565b610f29565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613908565b610f4e565b005b34801561050a57600080fd5b50610513611056565b604051610520919061378b565b60405180910390f35b34801561053557600080fd5b5061053e61105c565b60405161054b919061378b565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613989565b611062565b005b34801561058957600080fd5b50610592611158565b60405161059f919061378b565b60405180910390f35b6105b061115d565b005b3480156105be57600080fd5b506105c761121b565b005b6105e360048036038101906105de91906137a6565b61122d565b005b3480156105f157600080fd5b506105fa61124d565b60405161060791906133a7565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190613a93565b611260565b005b34801561064557600080fd5b5061064e61127e565b60405161065b91906133a7565b60405180910390f35b34801561067057600080fd5b5061068b600480360381019061068691906134b3565b611295565b6040516106989190613521565b60405180910390f35b3480156106ad57600080fd5b506106b66112a7565b6040516106c3919061378b565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190613568565b6112ad565b604051610700919061378b565b60405180910390f35b34801561071557600080fd5b5061071e611366565b005b34801561072c57600080fd5b5061074760048036038101906107429190613568565b61137a565b005b34801561075557600080fd5b5061075e6113dd565b005b34801561076c57600080fd5b506107756113ef565b6040516107829190613521565b60405180910390f35b34801561079757600080fd5b506107a0611419565b6040516107ad919061345b565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613ae0565b6114ab565b005b6107f960048036038101906107f49190613b95565b6115b6565b005b34801561080757600080fd5b50610822600480360381019061081d91906134b3565b6117fe565b005b34801561083057600080fd5b5061084b60048036038101906108469190613568565b611810565b604051610858919061378b565b60405180910390f35b34801561086d57600080fd5b506108766118cf565b6040516108839190613bee565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae91906135cd565b6118d5565b005b6108cf60048036038101906108ca9190613caa565b611988565b005b3480156108dd57600080fd5b506108f860048036038101906108f39190613d59565b6119fb565b005b610914600480360381019061090f9190613ddc565b611a0d565b005b34801561092257600080fd5b5061092b611e0a565b604051610938919061345b565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906134b3565b611e98565b604051610975919061345b565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a09190613825565b611f3f565b005b3480156109b357600080fd5b506109ce60048036038101906109c99190613568565b611f64565b6040516109db919061378b565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a069190613e50565b6121aa565b604051610a1891906133a7565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190613568565b61223e565b005b348015610a5657600080fd5b50610a716004803603810190610a6c91906134b3565b6122c2565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a9591906134b3565b6122d4565b604051610aa79190613521565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b5190613ebf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d90613ebf565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b5050505050905090565b6000610bdf82612313565b610c15576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60106020528060005260406000206000915090508060000154908060010154905082565b6000610c8282611295565b90508073ffffffffffffffffffffffffffffffffffffffff16610ca3612372565b73ffffffffffffffffffffffffffffffffffffffff1614610d0657610ccf81610cca612372565b6121aa565b610d05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610dc361237a565b6000600b8054610dd290613ebf565b905014610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613f3d565b60405180910390fd5b80600b9080519060200190610e2a9291906131ca565b5050565b6000610e386123f8565b6001546000540303905090565b600080600590506000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115610edd57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490505b80915050919050565b601260009054906101000a900460ff1681565b600f6020528060005260406000206000915090505481565b610f19612401565b610f2483838361244b565b505050565b610f3161237a565b80601260006101000a81548160ff02191690831515021790555050565b610f5661237a565b60005b8484905081101561104f57610fae858583818110610f7a57610f79613f5d565b5b9050602002016020810190610f8f9190613568565b848484818110610fa257610fa1613f5d565b5b90506020020135612770565b61103c858583818110610fc457610fc3613f5d565b5b9050602002016020810190610fd99190613568565b848484818110610fec57610feb613f5d565b5b9050602002013561102388888681811061100957611008613f5d565b5b905060200201602081019061101e9190613568565b61292d565b67ffffffffffffffff166110379190613fbb565b61297a565b808061104790614011565b915050610f59565b5050505050565b61138881565b600a5481565b61106a61237a565b60005b8686905081101561114f57604051806040016040528086868481811061109657611095613f5d565b5b9050602002013581526020018484848181106110b5576110b4613f5d565b5b90506020020135815250601060008989858181106110d6576110d5613f5d565b5b90506020020160208101906110eb9190613568565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155905050808061114790614011565b91505061106d565b50505050505050565b600581565b61116561237a565b600061116f6113ef565b73ffffffffffffffffffffffffffffffffffffffff16476040516111929061408b565b60006040518083038185875af1925050503d80600081146111cf576040519150601f19603f3d011682016040523d82523d6000602084013e6111d4565b606091505b5050905080611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906140ec565b60405180910390fd5b50565b61122361237a565b61122b612a30565b565b61124883838360405180602001604052806000815250611988565b505050565b601260019054906101000a900460ff1681565b61126861237a565b818160139190611279929190613250565b505050565b6000600860009054906101000a900460ff16905090565b60006112a082612a93565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611315576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61136e61237a565b6113786000612b61565b565b61138261237a565b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6113e561237a565b6113ed612c27565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461142890613ebf565b80601f016020809104026020016040519081016040528092919081815260200182805461145490613ebf565b80156114a15780601f10611476576101008083540402835291602001916114a1565b820191906000526020600020905b81548152906001019060200180831161148457829003601f168201915b5050505050905090565b80600760006114b8612372565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611565612372565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115aa91906133a7565b60405180910390a35050565b8163ffffffff1681600060018260ff1614156115e3576115dc6115d7612c8a565b610e45565b90506115e8565b600590505b6000831180156116365750806116046115ff612c8a565b61292d565b67ffffffffffffffff1661161e611619612c8a565b612c92565b856116299190613fbb565b611633919061410c565b11155b611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c9061418c565b60405180910390fd5b61138883611681610e2e565b61168b9190613fbb565b11156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c3906141f8565b60405180910390fd5b8463ffffffff1684600060018260ff1614156116f9576116f26116ed612c8a565b611810565b9050611740565b60028260ff16141561171c57611715611710612c8a565b611f64565b905061173f565b601260019054906101000a900460ff166117385760095461173c565b600a545b90505b5b808361174c9190614218565b34101561178e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611785906142be565b60405180910390fd5b601260009054906101000a900460ff166117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d49061432a565b60405180910390fd5b6117f46117e8612c8a565b8963ffffffff16612770565b5050505050505050565b61180661237a565b80600a8190555050565b600080601260019054906101000a900460ff1661182f57600954611833565b600a545b90506000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411156118c657601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015490505b80915050919050565b60115481565b6118dd61237a565b600e829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611993848484610f11565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119f5576119be84848484612ce9565b6119f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a0361237a565b8060118190555050565b8363ffffffff1681600060018260ff161415611a3a57611a33611a2e612c8a565b610e45565b9050611a3f565b600590505b600083118015611a8d575080611a5b611a56612c8a565b61292d565b67ffffffffffffffff16611a75611a70612c8a565b612c92565b85611a809190613fbb565b611a8a919061410c565b11155b611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac39061418c565b60405180910390fd5b61138883611ad8610e2e565b611ae29190613fbb565b1115611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a906141f8565b60405180910390fd5b8663ffffffff1684600060018260ff161415611b5057611b49611b44612c8a565b611810565b9050611b97565b60028260ff161415611b7357611b6c611b67612c8a565b611f64565b9050611b96565b601260019054906101000a900460ff16611b8f57600954611b93565b600a545b90505b5b8083611ba39190614218565b341015611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc906142be565b60405180910390fd5b601260019054906101000a900460ff16611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614396565b60405180910390fd5b600c6000611c40612c8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90614428565b60405180910390fd5b6000611cd2612c8a565b604051602001611ce29190614490565b604051602081830303815290604052805190602001209050611d488a8a80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612e49565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e906144f7565b60405180910390fd5b6001600c6000611d95612c8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611dfd611df1612c8a565b8c63ffffffff16612e60565b5050505050505050505050565b600b8054611e1790613ebf565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4390613ebf565b8015611e905780601f10611e6557610100808354040283529160200191611e90565b820191906000526020600020905b815481529060010190602001808311611e7357829003601f168201915b505050505081565b6060611ea382612313565b611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990614563565b60405180910390fd5b6000611eec612e7e565b90506000815111611f0c5760405180602001604052806000815250611f37565b80611f1684612f10565b604051602001611f279291906145bf565b6040516020818303038152906040525b915050919050565b611f4761237a565b80601260016101000a81548160ff02191690831515021790555050565b600080601260019054906101000a900460ff16611f8357600954611f87565b600a545b905060005b600e805490508110156121a0576001600e8281548110611faf57611fae613f5d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b81526004016120129190613521565b60206040518083038186803b15801561202a57600080fd5b505afa15801561203e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206291906145f8565b101580156120f85750600d6000600e838154811061208357612082613f5d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561218d576000600f6000600e848154811061211757612116613f5d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561218b578092505b505b808061219890614011565b915050611f8c565b5080915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61224661237a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90614697565b60405180910390fd5b6122bf81612b61565b50565b6122ca61237a565b8060098190555050565b600e81815481106122e457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008161231e6123f8565b1115801561232d575060005482105b801561236b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612382612c8a565b73ffffffffffffffffffffffffffffffffffffffff166123a06113ef565b73ffffffffffffffffffffffffffffffffffffffff16146123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed90614703565b60405180910390fd5b565b60006001905090565b61240961127e565b15612449576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124409061476f565b60405180910390fd5b565b600061245682612a93565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124bd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124c984612f69565b915091506124df81876124da612372565b612f90565b61252b576124f4866124ef612372565b6121aa565b61252a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612592576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259f8686866001612fd4565b80156125aa57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061267885612654888887612fda565b7c020000000000000000000000000000000000000000000000000000000017613002565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156127005760006001850190506000600460008381526020019081526020016000205414156126fe5760005481146126fd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612768868686600161302d565b505050505050565b60008054905060008214156127b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127be6000848385612fd4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612835836128266000866000612fda565b61282f85613033565b17613002565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061289b565b506000821415612912576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612928600084838561302d565b505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b612a38613043565b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a7c612c8a565b604051612a899190613521565b60405180910390a1565b60008082905080612aa26123f8565b11612b2a57600054811015612b295760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612b27575b6000811415612b1d576004600083600190039350838152602001908152602001600020549050612af2565b8092505050612b5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c2f612401565b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c73612c8a565b604051612c809190613521565b60405180910390a1565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d0f612372565b8786866040518563ffffffff1660e01b8152600401612d3194939291906147e4565b602060405180830381600087803b158015612d4b57600080fd5b505af1925050508015612d7c57506040513d601f19601f82011682018060405250810190612d799190614845565b60015b612df6573d8060008114612dac576040519150601f19603f3d011682016040523d82523d6000602084013e612db1565b606091505b50600081511415612dee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082612e56858461308c565b1490509392505050565b612e7a8282604051806020016040528060008152506130e2565b5050565b606060138054612e8d90613ebf565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb990613ebf565b8015612f065780601f10612edb57610100808354040283529160200191612f06565b820191906000526020600020905b815481529060010190602001808311612ee957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612f5457600184039350600a81066030018453600a8104905080612f4f57612f54565b612f29565b50828103602084039350808452505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ff186868461317f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b61304b61127e565b61308a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613081906148be565b60405180910390fd5b565b60008082905060005b84518110156130d7576130c2828683815181106130b5576130b4613f5d565b5b6020026020010151613188565b915080806130cf90614011565b915050613095565b508091505092915050565b6130ec8383612770565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461317a57600080549050600083820390505b61312c6000868380600101945086612ce9565b613162576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061311957816000541461317757600080fd5b50505b505050565b60009392505050565b60008183106131a05761319b82846131b3565b6131ab565b6131aa83836131b3565b5b905092915050565b600082600052816020526040600020905092915050565b8280546131d690613ebf565b90600052602060002090601f0160209004810192826131f8576000855561323f565b82601f1061321157805160ff191683800117855561323f565b8280016001018555821561323f579182015b8281111561323e578251825591602001919060010190613223565b5b50905061324c91906132d6565b5090565b82805461325c90613ebf565b90600052602060002090601f01602090048101928261327e57600085556132c5565b82601f1061329757803560ff19168380011785556132c5565b828001600101855582156132c5579182015b828111156132c45782358255916020019190600101906132a9565b5b5090506132d291906132d6565b5090565b5b808211156132ef5760008160009055506001016132d7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61333c81613307565b811461334757600080fd5b50565b60008135905061335981613333565b92915050565b600060208284031215613375576133746132fd565b5b60006133838482850161334a565b91505092915050565b60008115159050919050565b6133a18161338c565b82525050565b60006020820190506133bc6000830184613398565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133fc5780820151818401526020810190506133e1565b8381111561340b576000848401525b50505050565b6000601f19601f8301169050919050565b600061342d826133c2565b61343781856133cd565b93506134478185602086016133de565b61345081613411565b840191505092915050565b600060208201905081810360008301526134758184613422565b905092915050565b6000819050919050565b6134908161347d565b811461349b57600080fd5b50565b6000813590506134ad81613487565b92915050565b6000602082840312156134c9576134c86132fd565b5b60006134d78482850161349e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061350b826134e0565b9050919050565b61351b81613500565b82525050565b60006020820190506135366000830184613512565b92915050565b61354581613500565b811461355057600080fd5b50565b6000813590506135628161353c565b92915050565b60006020828403121561357e5761357d6132fd565b5b600061358c84828501613553565b91505092915050565b61359e8161347d565b82525050565b60006040820190506135b96000830185613595565b6135c66020830184613595565b9392505050565b600080604083850312156135e4576135e36132fd565b5b60006135f285828601613553565b92505060206136038582860161349e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61364f82613411565b810181811067ffffffffffffffff8211171561366e5761366d613617565b5b80604052505050565b60006136816132f3565b905061368d8282613646565b919050565b600067ffffffffffffffff8211156136ad576136ac613617565b5b6136b682613411565b9050602081019050919050565b82818337600083830152505050565b60006136e56136e084613692565b613677565b90508281526020810184848401111561370157613700613612565b5b61370c8482856136c3565b509392505050565b600082601f8301126137295761372861360d565b5b81356137398482602086016136d2565b91505092915050565b600060208284031215613758576137576132fd565b5b600082013567ffffffffffffffff81111561377657613775613302565b5b61378284828501613714565b91505092915050565b60006020820190506137a06000830184613595565b92915050565b6000806000606084860312156137bf576137be6132fd565b5b60006137cd86828701613553565b93505060206137de86828701613553565b92505060406137ef8682870161349e565b9150509250925092565b6138028161338c565b811461380d57600080fd5b50565b60008135905061381f816137f9565b92915050565b60006020828403121561383b5761383a6132fd565b5b600061384984828501613810565b91505092915050565b600080fd5b600080fd5b60008083601f8401126138725761387161360d565b5b8235905067ffffffffffffffff81111561388f5761388e613852565b5b6020830191508360208202830111156138ab576138aa613857565b5b9250929050565b60008083601f8401126138c8576138c761360d565b5b8235905067ffffffffffffffff8111156138e5576138e4613852565b5b60208301915083602082028301111561390157613900613857565b5b9250929050565b60008060008060408587031215613922576139216132fd565b5b600085013567ffffffffffffffff8111156139405761393f613302565b5b61394c8782880161385c565b9450945050602085013567ffffffffffffffff81111561396f5761396e613302565b5b61397b878288016138b2565b925092505092959194509250565b600080600080600080606087890312156139a6576139a56132fd565b5b600087013567ffffffffffffffff8111156139c4576139c3613302565b5b6139d089828a0161385c565b9650965050602087013567ffffffffffffffff8111156139f3576139f2613302565b5b6139ff89828a016138b2565b9450945050604087013567ffffffffffffffff811115613a2257613a21613302565b5b613a2e89828a016138b2565b92509250509295509295509295565b60008083601f840112613a5357613a5261360d565b5b8235905067ffffffffffffffff811115613a7057613a6f613852565b5b602083019150836001820283011115613a8c57613a8b613857565b5b9250929050565b60008060208385031215613aaa57613aa96132fd565b5b600083013567ffffffffffffffff811115613ac857613ac7613302565b5b613ad485828601613a3d565b92509250509250929050565b60008060408385031215613af757613af66132fd565b5b6000613b0585828601613553565b9250506020613b1685828601613810565b9150509250929050565b600063ffffffff82169050919050565b613b3981613b20565b8114613b4457600080fd5b50565b600081359050613b5681613b30565b92915050565b600060ff82169050919050565b613b7281613b5c565b8114613b7d57600080fd5b50565b600081359050613b8f81613b69565b92915050565b60008060408385031215613bac57613bab6132fd565b5b6000613bba85828601613b47565b9250506020613bcb85828601613b80565b9150509250929050565b6000819050919050565b613be881613bd5565b82525050565b6000602082019050613c036000830184613bdf565b92915050565b600067ffffffffffffffff821115613c2457613c23613617565b5b613c2d82613411565b9050602081019050919050565b6000613c4d613c4884613c09565b613677565b905082815260208101848484011115613c6957613c68613612565b5b613c748482856136c3565b509392505050565b600082601f830112613c9157613c9061360d565b5b8135613ca1848260208601613c3a565b91505092915050565b60008060008060808587031215613cc457613cc36132fd565b5b6000613cd287828801613553565b9450506020613ce387828801613553565b9350506040613cf48782880161349e565b925050606085013567ffffffffffffffff811115613d1557613d14613302565b5b613d2187828801613c7c565b91505092959194509250565b613d3681613bd5565b8114613d4157600080fd5b50565b600081359050613d5381613d2d565b92915050565b600060208284031215613d6f57613d6e6132fd565b5b6000613d7d84828501613d44565b91505092915050565b60008083601f840112613d9c57613d9b61360d565b5b8235905067ffffffffffffffff811115613db957613db8613852565b5b602083019150836020820283011115613dd557613dd4613857565b5b9250929050565b60008060008060608587031215613df657613df56132fd565b5b6000613e0487828801613b47565b945050602085013567ffffffffffffffff811115613e2557613e24613302565b5b613e3187828801613d86565b93509350506040613e4487828801613b80565b91505092959194509250565b60008060408385031215613e6757613e666132fd565b5b6000613e7585828601613553565b9250506020613e8685828601613553565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ed757607f821691505b60208210811415613eeb57613eea613e90565b5b50919050565b7f43473a2050726f76656e616e636520616c726561647920736574210000000000600082015250565b6000613f27601b836133cd565b9150613f3282613ef1565b602082019050919050565b60006020820190508181036000830152613f5681613f1a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fc68261347d565b9150613fd18361347d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400657614005613f8c565b5b828201905092915050565b600061401c8261347d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404f5761404e613f8c565b5b600182019050919050565b600081905092915050565b50565b600061407560008361405a565b915061408082614065565b600082019050919050565b600061409682614068565b9150819050919050565b7f43473a205769746864726177206661696c65642e000000000000000000000000600082015250565b60006140d66014836133cd565b91506140e1826140a0565b602082019050919050565b60006020820190508181036000830152614105816140c9565b9050919050565b60006141178261347d565b91506141228361347d565b92508282101561413557614134613f8c565b5b828203905092915050565b7f43473a204578636565646564206d61784d696e74506572416464726573730000600082015250565b6000614176601e836133cd565b915061418182614140565b602082019050919050565b600060208201905081810360008301526141a581614169565b9050919050565b7f43473a204578636565646564206d617820737570706c79000000000000000000600082015250565b60006141e26017836133cd565b91506141ed826141ac565b602082019050919050565b60006020820190508181036000830152614211816141d5565b9050919050565b60006142238261347d565b915061422e8361347d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426757614266613f8c565b5b828202905092915050565b7f43473a20496e73756666696369656e742066756e647300000000000000000000600082015250565b60006142a86016836133cd565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f43473a205075626c69632053616c65206973206e6f7420616374697665000000600082015250565b6000614314601d836133cd565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b7f43473a2057686974656c6973742073616c65206973206e6f7420616374697665600082015250565b60006143806020836133cd565b915061438b8261434a565b602082019050919050565b600060208201905081810360008301526143af81614373565b9050919050565b7f43473a204164647265737320616c726561647920636c61696d6564207768697460008201527f656c6973742073706f7400000000000000000000000000000000000000000000602082015250565b6000614412602a836133cd565b915061441d826143b6565b604082019050919050565b6000602082019050818103600083015261444181614405565b9050919050565b60008160601b9050919050565b600061446082614448565b9050919050565b600061447282614455565b9050919050565b61448a61448582613500565b614467565b82525050565b600061449c8284614479565b60148201915081905092915050565b7f43473a20496e76616c6964204d65726b6c652050726f6f660000000000000000600082015250565b60006144e16018836133cd565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b600061454d6011836133cd565b915061455882614517565b602082019050919050565b6000602082019050818103600083015261457c81614540565b9050919050565b600081905092915050565b6000614599826133c2565b6145a38185614583565b93506145b38185602086016133de565b80840191505092915050565b60006145cb828561458e565b91506145d7828461458e565b91508190509392505050565b6000815190506145f281613487565b92915050565b60006020828403121561460e5761460d6132fd565b5b600061461c848285016145e3565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146816026836133cd565b915061468c82614625565b604082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146ed6020836133cd565b91506146f8826146b7565b602082019050919050565b6000602082019050818103600083015261471c816146e0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006147596010836133cd565b915061476482614723565b602082019050919050565b600060208201905081810360008301526147888161474c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147b68261478f565b6147c0818561479a565b93506147d08185602086016133de565b6147d981613411565b840191505092915050565b60006080820190506147f96000830187613512565b6148066020830186613512565b6148136040830185613595565b818103606083015261482581846147ab565b905095945050505050565b60008151905061483f81613333565b92915050565b60006020828403121561485b5761485a6132fd565b5b600061486984828501614830565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006148a86014836133cd565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b905091905056fea264697066735822122022fa281e5bc8aa6be90a26d509079a5f1f712691e4fbf1407921a8ca650e098f64736f6c634300080900333433343761336630613334316332353337626133663161343234343030353230313466383634666238623036646361396536636139343464316163363661626168747470733a2f2f637962657267656e69652e6d7970696e6174612e636c6f75642f697066732f516d627438665a6e4364584a614539627759704d757535585638384e4b6a624847566f333576555367374c69634d2f
Deployed Bytecode
0x6080604052600436106102935760003560e01c80636817c76c1161015a578063ab226ce0116100c1578063cbae59871161007a578063cbae59871461097e578063d6377a6b146109a7578063e985e9c5146109e4578063f2fde38b14610a21578063f4a0a52814610a4a578063fd45a29014610a7357610293565b8063ab226ce01461088c578063b88d4fde146108b5578063bd32fb66146108d1578063c42d0768146108fa578063c6ab67a314610916578063c87b56dd1461094157610293565b806395d89b411161011357806395d89b411461078b578063a22cb465146107b6578063a3574aaf146107df578063a611708e146107fb578063a724ad8614610824578063aa98e0c61461086157610293565b80636817c76c146106a157806370a08231146106cc578063715018a61461070957806376b7d2ab146107205780638456cb59146107495780638da5cb5b1461076057610293565b80632c9bee89116101fe5780633f4ba83a116101b75780633f4ba83a146105b257806342842e0e146105c957806351aaceab146105e557806355f804b3146106105780635c975abb146106395780636352211e1461066457610293565b80632c9bee89146104d557806332cb6b0c146104fe57806335c6aaf8146105295780633744aa96146105545780633acd6cb21461057d5780633ccfd60b146105a857610293565b806318160ddd1161025057806318160ddd146103c05780631c170be3146103eb5780631e84c413146104285780631f70cd7a1461045357806323b872dd1461049057806328cad13d146104ac57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc146103005780630898b33e1461033d578063095ea7b31461037b5780631096952314610397575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba919061335f565b610ab0565b6040516102cc91906133a7565b60405180910390f35b3480156102e157600080fd5b506102ea610b42565b6040516102f7919061345b565b60405180910390f35b34801561030c57600080fd5b50610327600480360381019061032291906134b3565b610bd4565b6040516103349190613521565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613568565b610c53565b6040516103729291906135a4565b60405180910390f35b610395600480360381019061039091906135cd565b610c77565b005b3480156103a357600080fd5b506103be60048036038101906103b99190613742565b610dbb565b005b3480156103cc57600080fd5b506103d5610e2e565b6040516103e2919061378b565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613568565b610e45565b60405161041f919061378b565b60405180910390f35b34801561043457600080fd5b5061043d610ee6565b60405161044a91906133a7565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613568565b610ef9565b604051610487919061378b565b60405180910390f35b6104aa60048036038101906104a591906137a6565b610f11565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613825565b610f29565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613908565b610f4e565b005b34801561050a57600080fd5b50610513611056565b604051610520919061378b565b60405180910390f35b34801561053557600080fd5b5061053e61105c565b60405161054b919061378b565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613989565b611062565b005b34801561058957600080fd5b50610592611158565b60405161059f919061378b565b60405180910390f35b6105b061115d565b005b3480156105be57600080fd5b506105c761121b565b005b6105e360048036038101906105de91906137a6565b61122d565b005b3480156105f157600080fd5b506105fa61124d565b60405161060791906133a7565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190613a93565b611260565b005b34801561064557600080fd5b5061064e61127e565b60405161065b91906133a7565b60405180910390f35b34801561067057600080fd5b5061068b600480360381019061068691906134b3565b611295565b6040516106989190613521565b60405180910390f35b3480156106ad57600080fd5b506106b66112a7565b6040516106c3919061378b565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190613568565b6112ad565b604051610700919061378b565b60405180910390f35b34801561071557600080fd5b5061071e611366565b005b34801561072c57600080fd5b5061074760048036038101906107429190613568565b61137a565b005b34801561075557600080fd5b5061075e6113dd565b005b34801561076c57600080fd5b506107756113ef565b6040516107829190613521565b60405180910390f35b34801561079757600080fd5b506107a0611419565b6040516107ad919061345b565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613ae0565b6114ab565b005b6107f960048036038101906107f49190613b95565b6115b6565b005b34801561080757600080fd5b50610822600480360381019061081d91906134b3565b6117fe565b005b34801561083057600080fd5b5061084b60048036038101906108469190613568565b611810565b604051610858919061378b565b60405180910390f35b34801561086d57600080fd5b506108766118cf565b6040516108839190613bee565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae91906135cd565b6118d5565b005b6108cf60048036038101906108ca9190613caa565b611988565b005b3480156108dd57600080fd5b506108f860048036038101906108f39190613d59565b6119fb565b005b610914600480360381019061090f9190613ddc565b611a0d565b005b34801561092257600080fd5b5061092b611e0a565b604051610938919061345b565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906134b3565b611e98565b604051610975919061345b565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a09190613825565b611f3f565b005b3480156109b357600080fd5b506109ce60048036038101906109c99190613568565b611f64565b6040516109db919061378b565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a069190613e50565b6121aa565b604051610a1891906133a7565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190613568565b61223e565b005b348015610a5657600080fd5b50610a716004803603810190610a6c91906134b3565b6122c2565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a9591906134b3565b6122d4565b604051610aa79190613521565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b5190613ebf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d90613ebf565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b5050505050905090565b6000610bdf82612313565b610c15576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60106020528060005260406000206000915090508060000154908060010154905082565b6000610c8282611295565b90508073ffffffffffffffffffffffffffffffffffffffff16610ca3612372565b73ffffffffffffffffffffffffffffffffffffffff1614610d0657610ccf81610cca612372565b6121aa565b610d05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610dc361237a565b6000600b8054610dd290613ebf565b905014610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613f3d565b60405180910390fd5b80600b9080519060200190610e2a9291906131ca565b5050565b6000610e386123f8565b6001546000540303905090565b600080600590506000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115610edd57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490505b80915050919050565b601260009054906101000a900460ff1681565b600f6020528060005260406000206000915090505481565b610f19612401565b610f2483838361244b565b505050565b610f3161237a565b80601260006101000a81548160ff02191690831515021790555050565b610f5661237a565b60005b8484905081101561104f57610fae858583818110610f7a57610f79613f5d565b5b9050602002016020810190610f8f9190613568565b848484818110610fa257610fa1613f5d565b5b90506020020135612770565b61103c858583818110610fc457610fc3613f5d565b5b9050602002016020810190610fd99190613568565b848484818110610fec57610feb613f5d565b5b9050602002013561102388888681811061100957611008613f5d565b5b905060200201602081019061101e9190613568565b61292d565b67ffffffffffffffff166110379190613fbb565b61297a565b808061104790614011565b915050610f59565b5050505050565b61138881565b600a5481565b61106a61237a565b60005b8686905081101561114f57604051806040016040528086868481811061109657611095613f5d565b5b9050602002013581526020018484848181106110b5576110b4613f5d565b5b90506020020135815250601060008989858181106110d6576110d5613f5d565b5b90506020020160208101906110eb9190613568565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155905050808061114790614011565b91505061106d565b50505050505050565b600581565b61116561237a565b600061116f6113ef565b73ffffffffffffffffffffffffffffffffffffffff16476040516111929061408b565b60006040518083038185875af1925050503d80600081146111cf576040519150601f19603f3d011682016040523d82523d6000602084013e6111d4565b606091505b5050905080611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906140ec565b60405180910390fd5b50565b61122361237a565b61122b612a30565b565b61124883838360405180602001604052806000815250611988565b505050565b601260019054906101000a900460ff1681565b61126861237a565b818160139190611279929190613250565b505050565b6000600860009054906101000a900460ff16905090565b60006112a082612a93565b9050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611315576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61136e61237a565b6113786000612b61565b565b61138261237a565b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6113e561237a565b6113ed612c27565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461142890613ebf565b80601f016020809104026020016040519081016040528092919081815260200182805461145490613ebf565b80156114a15780601f10611476576101008083540402835291602001916114a1565b820191906000526020600020905b81548152906001019060200180831161148457829003601f168201915b5050505050905090565b80600760006114b8612372565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611565612372565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115aa91906133a7565b60405180910390a35050565b8163ffffffff1681600060018260ff1614156115e3576115dc6115d7612c8a565b610e45565b90506115e8565b600590505b6000831180156116365750806116046115ff612c8a565b61292d565b67ffffffffffffffff1661161e611619612c8a565b612c92565b856116299190613fbb565b611633919061410c565b11155b611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c9061418c565b60405180910390fd5b61138883611681610e2e565b61168b9190613fbb565b11156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c3906141f8565b60405180910390fd5b8463ffffffff1684600060018260ff1614156116f9576116f26116ed612c8a565b611810565b9050611740565b60028260ff16141561171c57611715611710612c8a565b611f64565b905061173f565b601260019054906101000a900460ff166117385760095461173c565b600a545b90505b5b808361174c9190614218565b34101561178e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611785906142be565b60405180910390fd5b601260009054906101000a900460ff166117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d49061432a565b60405180910390fd5b6117f46117e8612c8a565b8963ffffffff16612770565b5050505050505050565b61180661237a565b80600a8190555050565b600080601260019054906101000a900460ff1661182f57600954611833565b600a545b90506000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411156118c657601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015490505b80915050919050565b60115481565b6118dd61237a565b600e829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611993848484610f11565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119f5576119be84848484612ce9565b6119f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a0361237a565b8060118190555050565b8363ffffffff1681600060018260ff161415611a3a57611a33611a2e612c8a565b610e45565b9050611a3f565b600590505b600083118015611a8d575080611a5b611a56612c8a565b61292d565b67ffffffffffffffff16611a75611a70612c8a565b612c92565b85611a809190613fbb565b611a8a919061410c565b11155b611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac39061418c565b60405180910390fd5b61138883611ad8610e2e565b611ae29190613fbb565b1115611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a906141f8565b60405180910390fd5b8663ffffffff1684600060018260ff161415611b5057611b49611b44612c8a565b611810565b9050611b97565b60028260ff161415611b7357611b6c611b67612c8a565b611f64565b9050611b96565b601260019054906101000a900460ff16611b8f57600954611b93565b600a545b90505b5b8083611ba39190614218565b341015611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc906142be565b60405180910390fd5b601260019054906101000a900460ff16611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614396565b60405180910390fd5b600c6000611c40612c8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90614428565b60405180910390fd5b6000611cd2612c8a565b604051602001611ce29190614490565b604051602081830303815290604052805190602001209050611d488a8a80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612e49565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e906144f7565b60405180910390fd5b6001600c6000611d95612c8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611dfd611df1612c8a565b8c63ffffffff16612e60565b5050505050505050505050565b600b8054611e1790613ebf565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4390613ebf565b8015611e905780601f10611e6557610100808354040283529160200191611e90565b820191906000526020600020905b815481529060010190602001808311611e7357829003601f168201915b505050505081565b6060611ea382612313565b611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990614563565b60405180910390fd5b6000611eec612e7e565b90506000815111611f0c5760405180602001604052806000815250611f37565b80611f1684612f10565b604051602001611f279291906145bf565b6040516020818303038152906040525b915050919050565b611f4761237a565b80601260016101000a81548160ff02191690831515021790555050565b600080601260019054906101000a900460ff16611f8357600954611f87565b600a545b905060005b600e805490508110156121a0576001600e8281548110611faf57611fae613f5d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b81526004016120129190613521565b60206040518083038186803b15801561202a57600080fd5b505afa15801561203e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206291906145f8565b101580156120f85750600d6000600e838154811061208357612082613f5d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561218d576000600f6000600e848154811061211757612116613f5d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561218b578092505b505b808061219890614011565b915050611f8c565b5080915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61224661237a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90614697565b60405180910390fd5b6122bf81612b61565b50565b6122ca61237a565b8060098190555050565b600e81815481106122e457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008161231e6123f8565b1115801561232d575060005482105b801561236b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612382612c8a565b73ffffffffffffffffffffffffffffffffffffffff166123a06113ef565b73ffffffffffffffffffffffffffffffffffffffff16146123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed90614703565b60405180910390fd5b565b60006001905090565b61240961127e565b15612449576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124409061476f565b60405180910390fd5b565b600061245682612a93565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124bd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124c984612f69565b915091506124df81876124da612372565b612f90565b61252b576124f4866124ef612372565b6121aa565b61252a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612592576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259f8686866001612fd4565b80156125aa57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061267885612654888887612fda565b7c020000000000000000000000000000000000000000000000000000000017613002565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156127005760006001850190506000600460008381526020019081526020016000205414156126fe5760005481146126fd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612768868686600161302d565b505050505050565b60008054905060008214156127b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127be6000848385612fd4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612835836128266000866000612fda565b61282f85613033565b17613002565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061289b565b506000821415612912576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612928600084838561302d565b505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b612a38613043565b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a7c612c8a565b604051612a899190613521565b60405180910390a1565b60008082905080612aa26123f8565b11612b2a57600054811015612b295760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612b27575b6000811415612b1d576004600083600190039350838152602001908152602001600020549050612af2565b8092505050612b5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c2f612401565b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c73612c8a565b604051612c809190613521565b60405180910390a1565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d0f612372565b8786866040518563ffffffff1660e01b8152600401612d3194939291906147e4565b602060405180830381600087803b158015612d4b57600080fd5b505af1925050508015612d7c57506040513d601f19601f82011682018060405250810190612d799190614845565b60015b612df6573d8060008114612dac576040519150601f19603f3d011682016040523d82523d6000602084013e612db1565b606091505b50600081511415612dee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082612e56858461308c565b1490509392505050565b612e7a8282604051806020016040528060008152506130e2565b5050565b606060138054612e8d90613ebf565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb990613ebf565b8015612f065780601f10612edb57610100808354040283529160200191612f06565b820191906000526020600020905b815481529060010190602001808311612ee957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612f5457600184039350600a81066030018453600a8104905080612f4f57612f54565b612f29565b50828103602084039350808452505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ff186868461317f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b61304b61127e565b61308a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613081906148be565b60405180910390fd5b565b60008082905060005b84518110156130d7576130c2828683815181106130b5576130b4613f5d565b5b6020026020010151613188565b915080806130cf90614011565b915050613095565b508091505092915050565b6130ec8383612770565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461317a57600080549050600083820390505b61312c6000868380600101945086612ce9565b613162576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061311957816000541461317757600080fd5b50505b505050565b60009392505050565b60008183106131a05761319b82846131b3565b6131ab565b6131aa83836131b3565b5b905092915050565b600082600052816020526040600020905092915050565b8280546131d690613ebf565b90600052602060002090601f0160209004810192826131f8576000855561323f565b82601f1061321157805160ff191683800117855561323f565b8280016001018555821561323f579182015b8281111561323e578251825591602001919060010190613223565b5b50905061324c91906132d6565b5090565b82805461325c90613ebf565b90600052602060002090601f01602090048101928261327e57600085556132c5565b82601f1061329757803560ff19168380011785556132c5565b828001600101855582156132c5579182015b828111156132c45782358255916020019190600101906132a9565b5b5090506132d291906132d6565b5090565b5b808211156132ef5760008160009055506001016132d7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61333c81613307565b811461334757600080fd5b50565b60008135905061335981613333565b92915050565b600060208284031215613375576133746132fd565b5b60006133838482850161334a565b91505092915050565b60008115159050919050565b6133a18161338c565b82525050565b60006020820190506133bc6000830184613398565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133fc5780820151818401526020810190506133e1565b8381111561340b576000848401525b50505050565b6000601f19601f8301169050919050565b600061342d826133c2565b61343781856133cd565b93506134478185602086016133de565b61345081613411565b840191505092915050565b600060208201905081810360008301526134758184613422565b905092915050565b6000819050919050565b6134908161347d565b811461349b57600080fd5b50565b6000813590506134ad81613487565b92915050565b6000602082840312156134c9576134c86132fd565b5b60006134d78482850161349e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061350b826134e0565b9050919050565b61351b81613500565b82525050565b60006020820190506135366000830184613512565b92915050565b61354581613500565b811461355057600080fd5b50565b6000813590506135628161353c565b92915050565b60006020828403121561357e5761357d6132fd565b5b600061358c84828501613553565b91505092915050565b61359e8161347d565b82525050565b60006040820190506135b96000830185613595565b6135c66020830184613595565b9392505050565b600080604083850312156135e4576135e36132fd565b5b60006135f285828601613553565b92505060206136038582860161349e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61364f82613411565b810181811067ffffffffffffffff8211171561366e5761366d613617565b5b80604052505050565b60006136816132f3565b905061368d8282613646565b919050565b600067ffffffffffffffff8211156136ad576136ac613617565b5b6136b682613411565b9050602081019050919050565b82818337600083830152505050565b60006136e56136e084613692565b613677565b90508281526020810184848401111561370157613700613612565b5b61370c8482856136c3565b509392505050565b600082601f8301126137295761372861360d565b5b81356137398482602086016136d2565b91505092915050565b600060208284031215613758576137576132fd565b5b600082013567ffffffffffffffff81111561377657613775613302565b5b61378284828501613714565b91505092915050565b60006020820190506137a06000830184613595565b92915050565b6000806000606084860312156137bf576137be6132fd565b5b60006137cd86828701613553565b93505060206137de86828701613553565b92505060406137ef8682870161349e565b9150509250925092565b6138028161338c565b811461380d57600080fd5b50565b60008135905061381f816137f9565b92915050565b60006020828403121561383b5761383a6132fd565b5b600061384984828501613810565b91505092915050565b600080fd5b600080fd5b60008083601f8401126138725761387161360d565b5b8235905067ffffffffffffffff81111561388f5761388e613852565b5b6020830191508360208202830111156138ab576138aa613857565b5b9250929050565b60008083601f8401126138c8576138c761360d565b5b8235905067ffffffffffffffff8111156138e5576138e4613852565b5b60208301915083602082028301111561390157613900613857565b5b9250929050565b60008060008060408587031215613922576139216132fd565b5b600085013567ffffffffffffffff8111156139405761393f613302565b5b61394c8782880161385c565b9450945050602085013567ffffffffffffffff81111561396f5761396e613302565b5b61397b878288016138b2565b925092505092959194509250565b600080600080600080606087890312156139a6576139a56132fd565b5b600087013567ffffffffffffffff8111156139c4576139c3613302565b5b6139d089828a0161385c565b9650965050602087013567ffffffffffffffff8111156139f3576139f2613302565b5b6139ff89828a016138b2565b9450945050604087013567ffffffffffffffff811115613a2257613a21613302565b5b613a2e89828a016138b2565b92509250509295509295509295565b60008083601f840112613a5357613a5261360d565b5b8235905067ffffffffffffffff811115613a7057613a6f613852565b5b602083019150836001820283011115613a8c57613a8b613857565b5b9250929050565b60008060208385031215613aaa57613aa96132fd565b5b600083013567ffffffffffffffff811115613ac857613ac7613302565b5b613ad485828601613a3d565b92509250509250929050565b60008060408385031215613af757613af66132fd565b5b6000613b0585828601613553565b9250506020613b1685828601613810565b9150509250929050565b600063ffffffff82169050919050565b613b3981613b20565b8114613b4457600080fd5b50565b600081359050613b5681613b30565b92915050565b600060ff82169050919050565b613b7281613b5c565b8114613b7d57600080fd5b50565b600081359050613b8f81613b69565b92915050565b60008060408385031215613bac57613bab6132fd565b5b6000613bba85828601613b47565b9250506020613bcb85828601613b80565b9150509250929050565b6000819050919050565b613be881613bd5565b82525050565b6000602082019050613c036000830184613bdf565b92915050565b600067ffffffffffffffff821115613c2457613c23613617565b5b613c2d82613411565b9050602081019050919050565b6000613c4d613c4884613c09565b613677565b905082815260208101848484011115613c6957613c68613612565b5b613c748482856136c3565b509392505050565b600082601f830112613c9157613c9061360d565b5b8135613ca1848260208601613c3a565b91505092915050565b60008060008060808587031215613cc457613cc36132fd565b5b6000613cd287828801613553565b9450506020613ce387828801613553565b9350506040613cf48782880161349e565b925050606085013567ffffffffffffffff811115613d1557613d14613302565b5b613d2187828801613c7c565b91505092959194509250565b613d3681613bd5565b8114613d4157600080fd5b50565b600081359050613d5381613d2d565b92915050565b600060208284031215613d6f57613d6e6132fd565b5b6000613d7d84828501613d44565b91505092915050565b60008083601f840112613d9c57613d9b61360d565b5b8235905067ffffffffffffffff811115613db957613db8613852565b5b602083019150836020820283011115613dd557613dd4613857565b5b9250929050565b60008060008060608587031215613df657613df56132fd565b5b6000613e0487828801613b47565b945050602085013567ffffffffffffffff811115613e2557613e24613302565b5b613e3187828801613d86565b93509350506040613e4487828801613b80565b91505092959194509250565b60008060408385031215613e6757613e666132fd565b5b6000613e7585828601613553565b9250506020613e8685828601613553565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ed757607f821691505b60208210811415613eeb57613eea613e90565b5b50919050565b7f43473a2050726f76656e616e636520616c726561647920736574210000000000600082015250565b6000613f27601b836133cd565b9150613f3282613ef1565b602082019050919050565b60006020820190508181036000830152613f5681613f1a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fc68261347d565b9150613fd18361347d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400657614005613f8c565b5b828201905092915050565b600061401c8261347d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404f5761404e613f8c565b5b600182019050919050565b600081905092915050565b50565b600061407560008361405a565b915061408082614065565b600082019050919050565b600061409682614068565b9150819050919050565b7f43473a205769746864726177206661696c65642e000000000000000000000000600082015250565b60006140d66014836133cd565b91506140e1826140a0565b602082019050919050565b60006020820190508181036000830152614105816140c9565b9050919050565b60006141178261347d565b91506141228361347d565b92508282101561413557614134613f8c565b5b828203905092915050565b7f43473a204578636565646564206d61784d696e74506572416464726573730000600082015250565b6000614176601e836133cd565b915061418182614140565b602082019050919050565b600060208201905081810360008301526141a581614169565b9050919050565b7f43473a204578636565646564206d617820737570706c79000000000000000000600082015250565b60006141e26017836133cd565b91506141ed826141ac565b602082019050919050565b60006020820190508181036000830152614211816141d5565b9050919050565b60006142238261347d565b915061422e8361347d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426757614266613f8c565b5b828202905092915050565b7f43473a20496e73756666696369656e742066756e647300000000000000000000600082015250565b60006142a86016836133cd565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f43473a205075626c69632053616c65206973206e6f7420616374697665000000600082015250565b6000614314601d836133cd565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b7f43473a2057686974656c6973742073616c65206973206e6f7420616374697665600082015250565b60006143806020836133cd565b915061438b8261434a565b602082019050919050565b600060208201905081810360008301526143af81614373565b9050919050565b7f43473a204164647265737320616c726561647920636c61696d6564207768697460008201527f656c6973742073706f7400000000000000000000000000000000000000000000602082015250565b6000614412602a836133cd565b915061441d826143b6565b604082019050919050565b6000602082019050818103600083015261444181614405565b9050919050565b60008160601b9050919050565b600061446082614448565b9050919050565b600061447282614455565b9050919050565b61448a61448582613500565b614467565b82525050565b600061449c8284614479565b60148201915081905092915050565b7f43473a20496e76616c6964204d65726b6c652050726f6f660000000000000000600082015250565b60006144e16018836133cd565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b600061454d6011836133cd565b915061455882614517565b602082019050919050565b6000602082019050818103600083015261457c81614540565b9050919050565b600081905092915050565b6000614599826133c2565b6145a38185614583565b93506145b38185602086016133de565b80840191505092915050565b60006145cb828561458e565b91506145d7828461458e565b91508190509392505050565b6000815190506145f281613487565b92915050565b60006020828403121561460e5761460d6132fd565b5b600061461c848285016145e3565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146816026836133cd565b915061468c82614625565b604082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146ed6020836133cd565b91506146f8826146b7565b602082019050919050565b6000602082019050818103600083015261471c816146e0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006147596010836133cd565b915061476482614723565b602082019050919050565b600060208201905081810360008301526147888161474c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147b68261478f565b6147c0818561479a565b93506147d08185602086016133de565b6147d981613411565b840191505092915050565b60006080820190506147f96000830187613512565b6148066020830186613512565b6148136040830185613595565b818103606083015261482581846147ab565b905095945050505050565b60008151905061483f81613333565b92915050565b60006020828403121561485b5761485a6132fd565b5b600061486984828501614830565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006148a86014836133cd565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b905091905056fea264697066735822122022fa281e5bc8aa6be90a26d509079a5f1f712691e4fbf1407921a8ca650e098f64736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ 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.