Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
999 BMS
Holders
316
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 BMSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
BMS
Compiler Version
v0.8.22+commit.4fc1097e
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.20; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** *********************************************** * BMS BMS BMS BMS. BMS BMS BMS * BMS BMS. BMS BMS. BMS BMS. BMS * BMS BMS BMS. BMS. BMS. BMS BMS * BMS BMS BMS BMS. BMS. BMS BMS * BMS BMS. BMS BMS BMS BMS * BMS BMS BMS .... BMS BMS BMS * ************************************************* * ************************************************* * ------- ------------------------------ --------- */ contract BMS is ERC721A, Ownable, Pausable, ReentrancyGuard { uint256 public maxSupply = 2023; mapping(string => uint256) public mintedCount; //map of total mints per phase mapping(address => uint256) minted; //map of addresses that minted mapping(string => mapping(address => uint8)) public mintedPerRole; //map of addresses that minted per phase and their mint counts mapping(address => uint8) public mintedFree; //map of addresses that minted free and their mint counts mapping(string => string) private metadataRoot; uint8 publicMaxMintPerTransaction = 2; uint256 publicSupply = 2023; uint256 publicMintCost = 0.0099 ether; uint8 wlMaxMintPerTransaction = 2; uint8 wlNumberOfFreemint = 1; uint256 wlSupply = 2023; uint256 wlMintCost = 0.0077 ether; bytes32 root; enum Phases { N, Whitelist, Public } //mint phases, N = mint not live Phases public currentPhase; string private baseURI = "ipfs://bafybeia2m4h4fttolhesaobzmcgbpolzgbkqziymhtnezvfn4p6xb7dwre/"; mapping(uint8 => string) levelsIPFS; bool isRevealed; bool isUpgradeLive; uint256 upgradeCost = 0.01 ether; mapping(uint256 => uint8) public levels; //events event Minted(address indexed to, uint8 numberOfTokens, uint256 amount); event SoldOut(); event PhaseChanged(address indexed to, uint256 indexed eventId, uint8 indexed phaseId); event WithdrawalSuccessful(address indexed to, uint256 amount); //errors error WithdrawalFailed(); constructor() ERC721A("Bear Market Survivors by Dotseemple_Ai", "BMS") {} /* * Mint functions */ function whitelistMint(uint8 numberOfTokens, bytes32[] calldata proof) external payable nonReentrant whenNotPaused { require(currentPhase == Phases.Whitelist, "ERROR: Whitelist Mint is not active."); string memory _minterPhase = "WHITELIST"; uint256 _totalCost; //verify whitelist require(isWhitelisted(msg.sender, proof, root), "ERROR: You are not allowed to mint on this phase."); require(numberOfTokens > 0, "ERROR: Number of tokens should be greater than zero"); require(numberOfTokens <= wlMaxMintPerTransaction, "ERROR: Maximum number of mints per transaction exceeded"); require((mintedPerRole[_minterPhase][msg.sender] + numberOfTokens) <= wlMaxMintPerTransaction, "ERROR: Your maximum NFT mint per wallet on this phase has been reached."); require((_totalMinted() + numberOfTokens) <= maxSupply, "ERROR: No tokens left to mint"); require(mintedCount[_minterPhase] + numberOfTokens <= wlSupply, "ERROR: Maximum number of mints on this phase has been reached"); //Free mint check if ((mintedFree[msg.sender] > 0)) { _totalCost = wlMintCost * numberOfTokens; require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint."); } else { //Block for free mint if (numberOfTokens > wlNumberOfFreemint) { _totalCost = wlMintCost * (numberOfTokens - wlNumberOfFreemint); require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint."); } mintedFree[msg.sender] = 1; // Register free mint } _safeMint(msg.sender, numberOfTokens); //after mint registry mintedCount[_minterPhase] += numberOfTokens; //adds the newly minted token count per minter Role mintedPerRole[_minterPhase][msg.sender] += numberOfTokens; //registers the address and the number of tokens of the minter per role emit Minted(msg.sender, numberOfTokens, _totalCost); //if total minted reach or exceeds max supply - pause contract if (_totalMinted() >= maxSupply) { emit SoldOut(); } } function publicMint(uint8 numberOfTokens) external payable nonReentrant whenNotPaused { require(currentPhase == Phases.Public, "ERROR: Mint is not active."); string memory _minterPhase = "PUBLIC"; require(numberOfTokens > 0, "ERROR: Number of tokens should be greater than zero"); require(numberOfTokens <= publicMaxMintPerTransaction, "ERROR: Maximum number of mints per transaction exceeded"); require((mintedPerRole[_minterPhase][msg.sender] + numberOfTokens) <= publicMaxMintPerTransaction, "ERROR: Your maximum NFT mint per wallet on this phase has been reached."); require(mintedCount[_minterPhase] + numberOfTokens <= publicSupply, "ERROR: Maximum number of mints on this phase has been reached"); require((_totalMinted() + numberOfTokens) <= maxSupply, "ERROR: No tokens left to mint"); uint256 _totalCost; _totalCost = publicMintCost * numberOfTokens; require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint."); _safeMint(msg.sender, numberOfTokens); //after mint registry mintedCount[_minterPhase] += numberOfTokens; //adds the newly minted token count per minter Role mintedPerRole[_minterPhase][msg.sender] += numberOfTokens; //registers the address and the number of tokens of the minter per role emit Minted(msg.sender, numberOfTokens, _totalCost); //if total minted reach or exceeds max supply - pause contract if (_totalMinted() >= maxSupply) { emit SoldOut(); } } function internalMint(uint8 numberOfTokens) public onlyOwner { require((_totalMinted() + numberOfTokens) <= maxSupply, "ERROR: Not enough tokens"); _safeMint(msg.sender, numberOfTokens); emit Minted(msg.sender, numberOfTokens, 0); } function airdrop(uint8 numberOfTokens, address recipient) public onlyOwner whenNotPaused { require((_totalMinted() + numberOfTokens) <= maxSupply, "ERROR: Not enough tokens left"); _safeMint(recipient, numberOfTokens); } function multipleAirdrop(uint8 numberOfTokens, address[] memory recipients) public onlyOwner whenNotPaused { for (uint256 i = 0; i < recipients.length; i++) { airdrop(numberOfTokens, recipients[i]); } } function verifyWhitelist(address _address, bytes32[] calldata _merkleProof) public view returns (bool) { if (isWhitelisted(_address, _merkleProof, root)) return true; return false; } //for whitelist check function isWhitelisted ( address _minterLeaf, bytes32[] calldata _merkleProof, bytes32 _minterRoot ) public pure returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(_minterLeaf)); return MerkleProof.verify(_merkleProof, _minterRoot, _leaf); } //setters function setMintPhase(uint8 _phase) public onlyOwner { currentPhase = Phases(_phase); emit PhaseChanged(msg.sender, block.timestamp, uint8(currentPhase)); } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setPhaseMaxSupply(uint256 _maxSupply, bool _isPublic) public onlyOwner { if ( _isPublic ) publicSupply = _maxSupply; else wlSupply = _maxSupply; } function setPhaseMaxMintPerTx(uint8 _maxMintPerTx, bool _isPublic) public onlyOwner { if ( _isPublic ) publicMaxMintPerTransaction = _maxMintPerTx; else wlMaxMintPerTransaction = _maxMintPerTx; } function setPhaseMintCost(uint256 _mintCost, bool _isPublic) public onlyOwner { if ( _isPublic ) publicMintCost = _mintCost; else wlMintCost = _mintCost; } //Function to set the Merkel root function setRoot(bytes32 _newRoot) public onlyOwner { root = _newRoot; } /***************************************************************************************/ /* * Reveal functions */ function revealCollection (string memory _baseURI, bool _isRevealed, uint8 _level) public onlyOwner { isRevealed = _isRevealed; baseURI = _baseURI; if (isRevealed) { levelsIPFS[_level] = _baseURI; } } /***************************************************************************************/ /* * Levels functions */ function upgradeNFT(uint256 nftId) external payable nonReentrant whenNotPaused { require(isUpgradeLive == true, "ERROR: Upgrade is not live."); require((msg.sender == ownerOf(nftId)), "ERROR: You are not the owner of this NFT"); require(msg.value >= upgradeCost, "ERROR: You do not have enough funds to upgrade."); uint8 _currentLevel = levels[nftId]; _currentLevel++; _upgradeNFTLevel(nftId, _currentLevel); } function _upgradeNFTLevel(uint256 _nftId, uint8 _level) internal { levels[_nftId] = _level; //add 1 step to upgrade } function setNFTUpgradingLiveStatus(bool _upgradeStatus) public onlyOwner { isUpgradeLive = _upgradeStatus; } function setNFTLevel(uint256 _nftId, uint8 _level) public onlyOwner { _upgradeNFTLevel(_nftId, _level); } function setNFTLevelBulk(uint256[] memory _nftIds, uint8 _level) public onlyOwner { uint256 _nftId; for (uint8 ctr = 0; ctr < _nftIds.length; ctr++) { _nftId = _nftIds[ctr]; _upgradeNFTLevel(_nftId, _level); } } /***************************************************************************************/ /* * Withdraw Function */ function withdraw() public onlyOwner { require(address(this).balance > 0, "ERROR: No balance to withdraw."); uint256 amount = address(this).balance; //sends fund to team wallet (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); if (!success) { revert WithdrawalFailed(); } emit WithdrawalSuccessful(msg.sender, amount); } /***************************************************************************************/ function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory _baseURI = baseURI; uint8 _level = levels[_tokenId]; if (isRevealed) { _baseURI = levelsIPFS[_level]; } _tokenId += 1; return string(abi.encodePacked(baseURI, Strings.toString(_tokenId))); } function unPause() public onlyOwner { _unpause(); } function pause() public onlyOwner whenNotPaused { _pause(); } /* * Public - GETTER FUNCTIONS - specific for Frontend APPs */ //Function to get the MintDetails for a specific minter function getMintDetails(bool _isPublic, address _userAddress) public view returns (uint8, uint8, uint256, uint256, uint256, uint8) { string memory _minterPhase = (_isPublic)? "PUBLIC" : "WHITELIST"; uint8 _mintedPerRole = mintedPerRole[_minterPhase][_userAddress]; uint8 _maxMintPerTransaction = (_isPublic)? publicMaxMintPerTransaction : wlMaxMintPerTransaction; uint256 _mintCost = (_isPublic)? publicMintCost : wlMintCost; uint256 _supply = (_isPublic)? publicSupply : wlSupply; return ( uint8(currentPhase), _maxMintPerTransaction, _mintCost, _supply, mintedCount[_minterPhase], _mintedPerRole ); } function getSupplyInfo() public view returns (uint256, uint256, uint8) { return (maxSupply, totalSupply(), uint8(currentPhase)); } //getter for levels function getLevel(uint256 _tokenId) public view returns (uint8) { return (levels[_tokenId]); } } /* * ***** ***** ***** ***** */
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.2) (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 rebuilds 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 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proofLen - 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 from 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) { require(proofPos == proofLen, "MerkleProof: invalid multiproof"); unchecked { 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 rebuilds 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 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proofLen - 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 from 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) { require(proofPos == proofLen, "MerkleProof: invalid multiproof"); unchecked { 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.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// 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.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// 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"},{"inputs":[],"name":"WithdrawalFailed","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":"to","type":"address"},{"indexed":false,"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"eventId","type":"uint256"},{"indexed":true,"internalType":"uint8","name":"phaseId","type":"uint8"}],"name":"PhaseChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SoldOut","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawalSuccessful","type":"event"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"address","name":"recipient","type":"address"}],"name":"airdrop","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":[],"name":"currentPhase","outputs":[{"internalType":"enum BMS.Phases","name":"","type":"uint8"}],"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":"uint256","name":"_tokenId","type":"uint256"}],"name":"getLevel","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublic","type":"bool"},{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getMintDetails","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minterLeaf","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"_minterRoot","type":"bytes32"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"levels","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedFree","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"mintedPerRole","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"multipleAirdrop","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bool","name":"_isRevealed","type":"bool"},{"internalType":"uint8","name":"_level","type":"uint8"}],"name":"revealCollection","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":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"uint8","name":"_level","type":"uint8"}],"name":"setNFTLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_nftIds","type":"uint256[]"},{"internalType":"uint8","name":"_level","type":"uint8"}],"name":"setNFTLevelBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_upgradeStatus","type":"bool"}],"name":"setNFTUpgradingLiveStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxMintPerTx","type":"uint8"},{"internalType":"bool","name":"_isPublic","type":"bool"}],"name":"setPhaseMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"bool","name":"_isPublic","type":"bool"}],"name":"setPhaseMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintCost","type":"uint256"},{"internalType":"bool","name":"_isPublic","type":"bool"}],"name":"setPhaseMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","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":[{"internalType":"uint256","name":"nftId","type":"uint256"}],"name":"upgradeNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"verifyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526107e7600a55600260105f6101000a81548160ff021916908360ff1602179055506107e760115566232bff5f46c000601255600260135f6101000a81548160ff021916908360ff1602179055506001601360016101000a81548160ff021916908360ff1602179055506107e7601455661b5b1bf4c5400060155560405180608001604052806043815260200162005d786043913960189081620000a89190620004c6565b50662386f26fc10000601b55348015620000c0575f80fd5b5060405180606001604052806026815260200162005dbb602691396040518060400160405280600381526020017f424d5300000000000000000000000000000000000000000000000000000000008152508160029081620001229190620004c6565b508060039081620001349190620004c6565b50620001456200019460201b60201c565b5f8190555050506200016c620001606200019860201b60201c565b6200019f60201b60201c565b5f600860146101000a81548160ff0219169083151502179055506001600981905550620005aa565b5f90565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002de57607f821691505b602082108103620002f457620002f362000299565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031b565b6200036486836200031b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003ae620003a8620003a2846200037c565b62000385565b6200037c565b9050919050565b5f819050919050565b620003c9836200038e565b620003e1620003d882620003b5565b84845462000327565b825550505050565b5f90565b620003f7620003e9565b62000404818484620003be565b505050565b5b818110156200042b576200041f5f82620003ed565b6001810190506200040a565b5050565b601f8211156200047a576200044481620002fa565b6200044f846200030c565b810160208510156200045f578190505b620004776200046e856200030c565b83018262000409565b50505b505050565b5f82821c905092915050565b5f6200049c5f19846008026200047f565b1980831691505092915050565b5f620004b683836200048b565b9150826002028217905092915050565b620004d18262000262565b67ffffffffffffffff811115620004ed57620004ec6200026c565b5b620004f98254620002c6565b620005068282856200042f565b5f60209050601f8311600181146200053c575f841562000527578287015190505b620005338582620004a9565b865550620005a2565b601f1984166200054c86620002fa565b5f5b8281101562000575578489015182556001820191506020850194506020810190506200054e565b8683101562000595578489015162000591601f8916826200048b565b8355505b6001600288020188555050505b505050505050565b6157c080620005b85f395ff3fe608060405260043610610292575f3560e01c8063715018a611610159578063b88d4fde116100c0578063dab5f34011610079578063dab5f340146109b7578063e7d97937146109df578063e985e9c514610a07578063f2fde38b14610a43578063f7b188a514610a6b578063fce2856414610a8157610292565b8063b88d4fde146108bd578063c47e5d64146108d9578063c670354b14610901578063c87b56dd14610929578063c8a5992a14610965578063d5abeb011461098d57610292565b806390690c9a1161011257806390690c9a146107c357806395d89b41146107df578063a1e35e8114610809578063a22cb46514610831578063b2596a6714610859578063b3d6c53c1461089557610292565b8063715018a6146106d95780638456cb59146106ef578063858e83b51461070557806386481d40146107215780638c677e571461075d5780638da5cb5b1461079957610292565b806323b872dd116101fd5780635c975abb116101b65780635c975abb146105bf5780636352211e146105e95780636482b74a146106255780636e8fdbd81461064d5780636f8b44b01461067557806370a082311461069d57610292565b806323b872dd1461050557806331c07bbf146105215780633a55feda146105495780633ccfd60b1461057157806342842e0e1461058757806358381669146105a357610292565b80630d66662e1161024f5780630d66662e146103ba57806315587fc3146103fb57806315c6cd8f1461043757806318160ddd14610473578063209848011461049d57806320edeaf3146104d957610292565b806301ffc9a714610296578063055ad42e146102d257806306fdde03146102fc578063081812fc14610326578063095ea7b314610362578063099457341461037e575b5f80fd5b3480156102a1575f80fd5b506102bc60048036038101906102b79190613807565b610aa9565b6040516102c9919061384c565b60405180910390f35b3480156102dd575f80fd5b506102e6610b3a565b6040516102f391906138d8565b60405180910390f35b348015610307575f80fd5b50610310610b4c565b60405161031d919061397b565b60405180910390f35b348015610331575f80fd5b5061034c600480360381019061034791906139ce565b610bdc565b6040516103599190613a38565b60405180910390f35b61037c60048036038101906103779190613a7b565b610c56565b005b348015610389575f80fd5b506103a4600480360381019061039f9190613be5565b610d95565b6040516103b19190613c3b565b60405180910390f35b3480156103c5575f80fd5b506103e060048036038101906103db9190613c7e565b610dc2565b6040516103f296959493929190613cd7565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c9190613d36565b610f5e565b60405161042e9190613d90565b60405180910390f35b348015610442575f80fd5b5061045d60048036038101906104589190613e06565b610fa0565b60405161046a919061384c565b60405180910390f35b34801561047e575f80fd5b50610487610fc8565b6040516104949190613c3b565b60405180910390f35b3480156104a8575f80fd5b506104c360048036038101906104be9190613e63565b610fdd565b6040516104d09190613d90565b60405180910390f35b3480156104e4575f80fd5b506104ed610ffa565b6040516104fc93929190613e8e565b60405180910390f35b61051f600480360381019061051a9190613ec3565b611034565b005b34801561052c575f80fd5b5061054760048036038101906105429190613f3d565b611342565b005b348015610554575f80fd5b5061056f600480360381019061056a9190613f68565b6113f3565b005b34801561057c575f80fd5b50610585611418565b005b6105a1600480360381019061059c9190613ec3565b611557565b005b6105bd60048036038101906105b89190613f93565b611576565b005b3480156105ca575f80fd5b506105d3611bb0565b6040516105e0919061384c565b60405180910390f35b3480156105f4575f80fd5b5061060f600480360381019061060a91906139ce565b611bc6565b60405161061c9190613a38565b60405180910390f35b348015610630575f80fd5b5061064b60048036038101906106469190613ff0565b611bd7565b005b348015610658575f80fd5b50610673600480360381019061066e91906140ee565b611bed565b005b348015610680575f80fd5b5061069b600480360381019061069691906139ce565b611c3e565b005b3480156106a8575f80fd5b506106c360048036038101906106be9190613e63565b611c50565b6040516106d09190613c3b565b60405180910390f35b3480156106e4575f80fd5b506106ed611d05565b005b3480156106fa575f80fd5b50610703611d18565b005b61071f600480360381019061071a9190613f3d565b611d32565b005b34801561072c575f80fd5b50610747600480360381019061074291906139ce565b6121de565b6040516107549190613d90565b60405180910390f35b348015610768575f80fd5b50610783600480360381019061077e919061417b565b612204565b604051610790919061384c565b60405180910390f35b3480156107a4575f80fd5b506107ad612285565b6040516107ba9190613a38565b60405180910390f35b6107dd60048036038101906107d891906139ce565b6122ad565b005b3480156107ea575f80fd5b506107f3612413565b604051610800919061397b565b60405180910390f35b348015610814575f80fd5b5061082f600480360381019061082a91906142ac565b6124a3565b005b34801561083c575f80fd5b5061085760048036038101906108529190614306565b612500565b005b348015610864575f80fd5b5061087f600480360381019061087a91906139ce565b612606565b60405161088c9190613d90565b60405180910390f35b3480156108a0575f80fd5b506108bb60048036038101906108b69190614344565b612623565b005b6108d760048036038101906108d29190614420565b61269e565b005b3480156108e4575f80fd5b506108ff60048036038101906108fa91906144a0565b612710565b005b34801561090c575f80fd5b506109276004803603810190610922919061450c565b612780565b005b348015610934575f80fd5b5061094f600480360381019061094a91906139ce565b6127a6565b60405161095c919061397b565b60405180910390f35b348015610970575f80fd5b5061098b6004803603810190610986919061454a565b612995565b005b348015610998575f80fd5b506109a16129e1565b6040516109ae9190613c3b565b60405180910390f35b3480156109c2575f80fd5b506109dd60048036038101906109d89190614588565b6129e7565b005b3480156109ea575f80fd5b50610a056004803603810190610a009190613f3d565b6129f9565b005b348015610a12575f80fd5b50610a2d6004803603810190610a2891906145b3565b612abb565b604051610a3a919061384c565b60405180910390f35b348015610a4e575f80fd5b50610a696004803603810190610a649190613e63565b612b49565b005b348015610a76575f80fd5b50610a7f612bcb565b005b348015610a8c575f80fd5b50610aa76004803603810190610aa2919061450c565b612bdd565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60175f9054906101000a900460ff1681565b606060028054610b5b9061461e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b879061461e565b8015610bd25780601f10610ba957610100808354040283529160200191610bd2565b820191905f5260205f20905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b5f610be682612c03565b610c1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610c6082611bc6565b90508073ffffffffffffffffffffffffffffffffffffffff16610c81612c5d565b73ffffffffffffffffffffffffffffffffffffffff1614610ce457610cad81610ca8612c5d565b612abb565b610ce3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b818051602081018201805184825260208301602085012081835280955050505050505f915090505481565b5f805f805f805f88610e09576040518060400160405280600981526020017f57484954454c4953540000000000000000000000000000000000000000000000815250610e40565b6040518060400160405280600681526020017f5055424c494300000000000000000000000000000000000000000000000000008152505b90505f600d82604051610e539190614688565b90815260200160405180910390205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1690505f8a610ec55760135f9054906101000a900460ff16610ed5565b60105f9054906101000a900460ff165b90505f8b610ee557601554610ee9565b6012545b90505f8c610ef957601454610efd565b6011545b905060175f9054906101000a900460ff166002811115610f2057610f1f613865565b5b838383600b89604051610f339190614688565b908152602001604051809103902054889a509a509a509a509a509a5050505050509295509295509295565b600d82805160208101820180518482526020830160208501208183528095505050505050602052805f5260405f205f915091509054906101000a900460ff1681565b5f610faf848484601654612204565b15610fbd5760019050610fc1565b5f90505b9392505050565b5f610fd1612c64565b6001545f540303905090565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f805f600a54611008610fc8565b60175f9054906101000a900460ff16600281111561102957611028613865565b5b925092509250909192565b5f61103e82612c68565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110a5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806110b084612d2b565b915091506110c681876110c1612c5d565b612d4e565b611112576110db866110d6612c5d565b612abb565b611111576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611177576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111848686866001612d91565b801561118e575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061125685611232888887612d97565b7c020000000000000000000000000000000000000000000000000000000017612dbe565b60045f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036112d2575f6001850190505f60045f8381526020019081526020015f2054036112d0575f5481146112cf578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461133a8686866001612de8565b505050505050565b61134a612dee565b8060ff1660028111156113605761135f613865565b5b60175f6101000a81548160ff0219169083600281111561138357611382613865565b5b021790555060175f9054906101000a900460ff1660028111156113a9576113a8613865565b5b60ff16423373ffffffffffffffffffffffffffffffffffffffff167f7d7f6ed6d84cc6a4531c22effb48bb76d643459a9d3398dab7ddb04f6fb01ebc60405160405180910390a450565b6113fb612dee565b80601a60016101000a81548160ff02191690831515021790555050565b611420612dee565b5f4711611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906146e8565b60405180910390fd5b5f4790505f3373ffffffffffffffffffffffffffffffffffffffff164760405161148b90614733565b5f6040518083038185875af1925050503d805f81146114c5576040519150601f19603f3d011682016040523d82523d5f602084013e6114ca565b606091505b5050905080611505576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec8360405161154b9190613c3b565b60405180910390a25050565b61157183838360405180602001604052805f81525061269e565b505050565b61157e612e6c565b611586612ebb565b6001600281111561159a57611599613865565b5b60175f9054906101000a900460ff1660028111156115bb576115ba613865565b5b146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906147b7565b60405180910390fd5b5f6040518060400160405280600981526020017f57484954454c495354000000000000000000000000000000000000000000000081525090505f611643338585601654612204565b611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990614845565b60405180910390fd5b5f8560ff16116116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be906148d3565b60405180910390fd5b60135f9054906101000a900460ff1660ff168560ff16111561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590614961565b60405180910390fd5b60135f9054906101000a900460ff1660ff1685600d846040516117419190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117a191906149ac565b60ff1611156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614a76565b60405180910390fd5b600a548560ff166117f4612f05565b6117fe9190614a94565b111561183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690614b11565b60405180910390fd5b6014548560ff16600b846040516118569190614688565b90815260200160405180910390205461186f9190614a94565b11156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790614b9f565b60405180910390fd5b5f600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1660ff16111561195f578460ff166015546119159190614bbd565b90508034101561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190614c6e565b60405180910390fd5b611a44565b601360019054906101000a900460ff1660ff168560ff1611156119ed57601360019054906101000a900460ff16856119979190614c8c565b60ff166015546119a79190614bbd565b9050803410156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390614c6e565b60405180910390fd5b5b6001600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908360ff1602179055505b611a51338660ff16612f16565b8460ff16600b83604051611a659190614688565b90815260200160405180910390205f828254611a819190614a94565b9250508190555084600d83604051611a999190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff16611afc91906149ac565b92506101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d0777408683604051611b5c929190614cc0565b60405180910390a2600a54611b6f612f05565b10611ba1577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b5050611bab612f33565b505050565b5f600860149054906101000a900460ff16905090565b5f611bd082612c68565b9050919050565b611bdf612dee565b611be98282612f3d565b5050565b611bf5612dee565b611bfd612ebb565b5f5b8151811015611c3957611c2c83838381518110611c1f57611c1e614ce7565b5b6020026020010151612623565b8080600101915050611bff565b505050565b611c46612dee565b80600a8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611d0d612dee565b611d165f612f6a565b565b611d20612dee565b611d28612ebb565b611d3061302d565b565b611d3a612e6c565b611d42612ebb565b600280811115611d5557611d54613865565b5b60175f9054906101000a900460ff166002811115611d7657611d75613865565b5b14611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614d5e565b60405180910390fd5b5f6040518060400160405280600681526020017f5055424c4943000000000000000000000000000000000000000000000000000081525090505f8260ff1611611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b906148d3565b60405180910390fd5b60105f9054906101000a900460ff1660ff168260ff161115611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614961565b60405180910390fd5b60105f9054906101000a900460ff1660ff1682600d83604051611eae9190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f0e91906149ac565b60ff161115611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990614a76565b60405180910390fd5b6011548260ff16600b83604051611f699190614688565b908152602001604051809103902054611f829190614a94565b1115611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90614b9f565b60405180910390fd5b600a548260ff16611fd2612f05565b611fdc9190614a94565b111561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614b11565b60405180910390fd5b5f8260ff1660125461202f9190614bbd565b905080341015612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614c6e565b60405180910390fd5b612081338460ff16612f16565b8260ff16600b836040516120959190614688565b90815260200160405180910390205f8282546120b19190614a94565b9250508190555082600d836040516120c99190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff1661212c91906149ac565b92506101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740848360405161218c929190614cc0565b60405180910390a2600a5461219f612f05565b106121d1577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b50506121db612f33565b50565b5f601c5f8381526020019081526020015f205f9054906101000a900460ff169050919050565b5f80856040516020016122179190614dc1565b60405160208183030381529060405280519060200120905061227a8585808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f820116905080830192505050505050508483613090565b915050949350505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6122b5612e6c565b6122bd612ebb565b60011515601a60019054906101000a900460ff16151514612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90614e25565b60405180910390fd5b61231c81611bc6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614eb3565b60405180910390fd5b601b543410156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c590614f41565b60405180910390fd5b5f601c5f8381526020019081526020015f205f9054906101000a900460ff16905080806123fa90614f5f565b9150506124078282612f3d565b50612410612f33565b50565b6060600380546124229061461e565b80601f016020809104026020016040519081016040528092919081815260200182805461244e9061461e565b80156124995780601f1061247057610100808354040283529160200191612499565b820191905f5260205f20905b81548152906001019060200180831161247c57829003601f168201915b5050505050905090565b6124ab612dee565b5f805f90505b83518160ff1610156124fa57838160ff16815181106124d3576124d2614ce7565b5b602002602001015191506124e78284612f3d565b80806124f290614f5f565b9150506124b1565b50505050565b8060075f61250c612c5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125b5612c5d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125fa919061384c565b60405180910390a35050565b601c602052805f5260405f205f915054906101000a900460ff1681565b61262b612dee565b612633612ebb565b600a548260ff16612642612f05565b61264c9190614a94565b111561268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614fd1565b60405180910390fd5b61269a818360ff16612f16565b5050565b6126a9848484611034565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461270a576126d3848484846130a6565b612709576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612718612dee565b81601a5f6101000a81548160ff0219169083151502179055508260189081612740919061518c565b50601a5f9054906101000a900460ff161561277b578260195f8360ff1660ff1681526020019081526020015f209081612779919061518c565b505b505050565b612788612dee565b801561279a57816011819055506127a2565b816014819055505b5050565b60606127b182612c03565b6127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e7906152cb565b60405180910390fd5b5f601880546127fe9061461e565b80601f016020809104026020016040519081016040528092919081815260200182805461282a9061461e565b80156128755780601f1061284c57610100808354040283529160200191612875565b820191905f5260205f20905b81548152906001019060200180831161285857829003601f168201915b505050505090505f601c5f8581526020019081526020015f205f9054906101000a900460ff169050601a5f9054906101000a900460ff16156129525760195f8260ff1660ff1681526020019081526020015f2080546128d39061461e565b80601f01602080910402602001604051908101604052809291908181526020018280546128ff9061461e565b801561294a5780601f106129215761010080835404028352916020019161294a565b820191905f5260205f20905b81548152906001019060200180831161292d57829003601f168201915b505050505091505b60018461295f9190614a94565b9350601861296c856131f1565b60405160200161297d929190615369565b60405160208183030381529060405292505050919050565b61299d612dee565b80156129c2578160105f6101000a81548160ff021916908360ff1602179055506129dd565b8160135f6101000a81548160ff021916908360ff1602179055505b5050565b600a5481565b6129ef612dee565b8060168190555050565b612a01612dee565b600a548160ff16612a10612f05565b612a1a9190614a94565b1115612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a52906153d6565b60405180910390fd5b612a68338260ff16612f16565b3373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740825f604051612ab092919061542d565b60405180910390a250565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b612b51612dee565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb6906154c4565b60405180910390fd5b612bc881612f6a565b50565b612bd3612dee565b612bdb6132bb565b565b612be5612dee565b8015612bf75781601281905550612bff565b816015819055505b5050565b5f81612c0d612c64565b11158015612c1b57505f5482105b8015612c5657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f90565b5f8082905080612c76612c64565b11612cf4575f54811015612cf3575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612cf1575b5f8103612ce75760045f836001900393508381526020019081526020015f20549050612cc0565b8092505050612d26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612dad86868461331d565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612df6613325565b73ffffffffffffffffffffffffffffffffffffffff16612e14612285565b73ffffffffffffffffffffffffffffffffffffffff1614612e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e619061552c565b60405180910390fd5b565b600260095403612eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea890615594565b60405180910390fd5b6002600981905550565b612ec3611bb0565b15612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa906155fc565b60405180910390fd5b565b5f612f0e612c64565b5f5403905090565b612f2f828260405180602001604052805f81525061332c565b5050565b6001600981905550565b80601c5f8481526020019081526020015f205f6101000a81548160ff021916908360ff1602179055505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613035612ebb565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613079613325565b6040516130869190613a38565b60405180910390a1565b5f8261309c85846133c3565b1490509392505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130cb612c5d565b8786866040518563ffffffff1660e01b81526004016130ed949392919061566c565b6020604051808303815f875af192505050801561312857506040513d601f19601f8201168201806040525081019061312591906156ca565b60015b61319e573d805f8114613156576040519150601f19603f3d011682016040523d82523d5f602084013e61315b565b606091505b505f815103613196576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f60016131ff84613411565b0190505f8167ffffffffffffffff81111561321d5761321c613ac1565b5b6040519080825280601f01601f19166020018201604052801561324f5781602001600182028036833780820191505090505b5090505f82602001820190505b6001156132b0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816132a5576132a46156f5565b5b0494505f850361325c575b819350505050919050565b6132c3613562565b5f600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613306613325565b6040516133139190613a38565b60405180910390a1565b5f9392505050565b5f33905090565b61333683836135ab565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146133be575f805490505f83820390505b6133725f8683806001019450866130a6565b6133a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061336057815f54146133bb575f80fd5b50505b505050565b5f808290505f5b8451811015613406576133f7828683815181106133ea576133e9614ce7565b5b6020026020010151613754565b915080806001019150506133ca565b508091505092915050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061346d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613463576134626156f5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106134aa576d04ee2d6d415b85acef810000000083816134a05761349f6156f5565b5b0492506020810190505b662386f26fc1000083106134d957662386f26fc1000083816134cf576134ce6156f5565b5b0492506010810190505b6305f5e1008310613502576305f5e10083816134f8576134f76156f5565b5b0492506008810190505b612710831061352757612710838161351d5761351c6156f5565b5b0492506004810190505b6064831061354a57606483816135405761353f6156f5565b5b0492506002810190505b600a8310613559576001810190505b80915050919050565b61356a611bb0565b6135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a09061576c565b60405180910390fd5b565b5f805490505f82036135e9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135f55f848385612d91565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550613667836136585f865f612d97565b6136618561377e565b17612dbe565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146137015780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506136c8565b505f820361373b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061374f5f848385612de8565b505050565b5f81831061376b57613766828461378d565b613776565b613775838361378d565b5b905092915050565b5f6001821460e11b9050919050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e6816137b2565b81146137f0575f80fd5b50565b5f81359050613801816137dd565b92915050565b5f6020828403121561381c5761381b6137aa565b5b5f613829848285016137f3565b91505092915050565b5f8115159050919050565b61384681613832565b82525050565b5f60208201905061385f5f83018461383d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600381106138a3576138a2613865565b5b50565b5f8190506138b382613892565b919050565b5f6138c2826138a6565b9050919050565b6138d2816138b8565b82525050565b5f6020820190506138eb5f8301846138c9565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561392857808201518184015260208101905061390d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61394d826138f1565b61395781856138fb565b935061396781856020860161390b565b61397081613933565b840191505092915050565b5f6020820190508181035f8301526139938184613943565b905092915050565b5f819050919050565b6139ad8161399b565b81146139b7575f80fd5b50565b5f813590506139c8816139a4565b92915050565b5f602082840312156139e3576139e26137aa565b5b5f6139f0848285016139ba565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a22826139f9565b9050919050565b613a3281613a18565b82525050565b5f602082019050613a4b5f830184613a29565b92915050565b613a5a81613a18565b8114613a64575f80fd5b50565b5f81359050613a7581613a51565b92915050565b5f8060408385031215613a9157613a906137aa565b5b5f613a9e85828601613a67565b9250506020613aaf858286016139ba565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613af782613933565b810181811067ffffffffffffffff82111715613b1657613b15613ac1565b5b80604052505050565b5f613b286137a1565b9050613b348282613aee565b919050565b5f67ffffffffffffffff821115613b5357613b52613ac1565b5b613b5c82613933565b9050602081019050919050565b828183375f83830152505050565b5f613b89613b8484613b39565b613b1f565b905082815260208101848484011115613ba557613ba4613abd565b5b613bb0848285613b69565b509392505050565b5f82601f830112613bcc57613bcb613ab9565b5b8135613bdc848260208601613b77565b91505092915050565b5f60208284031215613bfa57613bf96137aa565b5b5f82013567ffffffffffffffff811115613c1757613c166137ae565b5b613c2384828501613bb8565b91505092915050565b613c358161399b565b82525050565b5f602082019050613c4e5f830184613c2c565b92915050565b613c5d81613832565b8114613c67575f80fd5b50565b5f81359050613c7881613c54565b92915050565b5f8060408385031215613c9457613c936137aa565b5b5f613ca185828601613c6a565b9250506020613cb285828601613a67565b9150509250929050565b5f60ff82169050919050565b613cd181613cbc565b82525050565b5f60c082019050613cea5f830189613cc8565b613cf76020830188613cc8565b613d046040830187613c2c565b613d116060830186613c2c565b613d1e6080830185613c2c565b613d2b60a0830184613cc8565b979650505050505050565b5f8060408385031215613d4c57613d4b6137aa565b5b5f83013567ffffffffffffffff811115613d6957613d686137ae565b5b613d7585828601613bb8565b9250506020613d8685828601613a67565b9150509250929050565b5f602082019050613da35f830184613cc8565b92915050565b5f80fd5b5f80fd5b5f8083601f840112613dc657613dc5613ab9565b5b8235905067ffffffffffffffff811115613de357613de2613da9565b5b602083019150836020820283011115613dff57613dfe613dad565b5b9250929050565b5f805f60408486031215613e1d57613e1c6137aa565b5b5f613e2a86828701613a67565b935050602084013567ffffffffffffffff811115613e4b57613e4a6137ae565b5b613e5786828701613db1565b92509250509250925092565b5f60208284031215613e7857613e776137aa565b5b5f613e8584828501613a67565b91505092915050565b5f606082019050613ea15f830186613c2c565b613eae6020830185613c2c565b613ebb6040830184613cc8565b949350505050565b5f805f60608486031215613eda57613ed96137aa565b5b5f613ee786828701613a67565b9350506020613ef886828701613a67565b9250506040613f09868287016139ba565b9150509250925092565b613f1c81613cbc565b8114613f26575f80fd5b50565b5f81359050613f3781613f13565b92915050565b5f60208284031215613f5257613f516137aa565b5b5f613f5f84828501613f29565b91505092915050565b5f60208284031215613f7d57613f7c6137aa565b5b5f613f8a84828501613c6a565b91505092915050565b5f805f60408486031215613faa57613fa96137aa565b5b5f613fb786828701613f29565b935050602084013567ffffffffffffffff811115613fd857613fd76137ae565b5b613fe486828701613db1565b92509250509250925092565b5f8060408385031215614006576140056137aa565b5b5f614013858286016139ba565b925050602061402485828601613f29565b9150509250929050565b5f67ffffffffffffffff82111561404857614047613ac1565b5b602082029050602081019050919050565b5f61406b6140668461402e565b613b1f565b9050808382526020820190506020840283018581111561408e5761408d613dad565b5b835b818110156140b757806140a38882613a67565b845260208401935050602081019050614090565b5050509392505050565b5f82601f8301126140d5576140d4613ab9565b5b81356140e5848260208601614059565b91505092915050565b5f8060408385031215614104576141036137aa565b5b5f61411185828601613f29565b925050602083013567ffffffffffffffff811115614132576141316137ae565b5b61413e858286016140c1565b9150509250929050565b5f819050919050565b61415a81614148565b8114614164575f80fd5b50565b5f8135905061417581614151565b92915050565b5f805f8060608587031215614193576141926137aa565b5b5f6141a087828801613a67565b945050602085013567ffffffffffffffff8111156141c1576141c06137ae565b5b6141cd87828801613db1565b935093505060406141e087828801614167565b91505092959194509250565b5f67ffffffffffffffff82111561420657614205613ac1565b5b602082029050602081019050919050565b5f614229614224846141ec565b613b1f565b9050808382526020820190506020840283018581111561424c5761424b613dad565b5b835b81811015614275578061426188826139ba565b84526020840193505060208101905061424e565b5050509392505050565b5f82601f83011261429357614292613ab9565b5b81356142a3848260208601614217565b91505092915050565b5f80604083850312156142c2576142c16137aa565b5b5f83013567ffffffffffffffff8111156142df576142de6137ae565b5b6142eb8582860161427f565b92505060206142fc85828601613f29565b9150509250929050565b5f806040838503121561431c5761431b6137aa565b5b5f61432985828601613a67565b925050602061433a85828601613c6a565b9150509250929050565b5f806040838503121561435a576143596137aa565b5b5f61436785828601613f29565b925050602061437885828601613a67565b9150509250929050565b5f67ffffffffffffffff82111561439c5761439b613ac1565b5b6143a582613933565b9050602081019050919050565b5f6143c46143bf84614382565b613b1f565b9050828152602081018484840111156143e0576143df613abd565b5b6143eb848285613b69565b509392505050565b5f82601f83011261440757614406613ab9565b5b81356144178482602086016143b2565b91505092915050565b5f805f8060808587031215614438576144376137aa565b5b5f61444587828801613a67565b945050602061445687828801613a67565b9350506040614467878288016139ba565b925050606085013567ffffffffffffffff811115614488576144876137ae565b5b614494878288016143f3565b91505092959194509250565b5f805f606084860312156144b7576144b66137aa565b5b5f84013567ffffffffffffffff8111156144d4576144d36137ae565b5b6144e086828701613bb8565b93505060206144f186828701613c6a565b925050604061450286828701613f29565b9150509250925092565b5f8060408385031215614522576145216137aa565b5b5f61452f858286016139ba565b925050602061454085828601613c6a565b9150509250929050565b5f80604083850312156145605761455f6137aa565b5b5f61456d85828601613f29565b925050602061457e85828601613c6a565b9150509250929050565b5f6020828403121561459d5761459c6137aa565b5b5f6145aa84828501614167565b91505092915050565b5f80604083850312156145c9576145c86137aa565b5b5f6145d685828601613a67565b92505060206145e785828601613a67565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061463557607f821691505b602082108103614648576146476145f1565b5b50919050565b5f81905092915050565b5f614662826138f1565b61466c818561464e565b935061467c81856020860161390b565b80840191505092915050565b5f6146938284614658565b915081905092915050565b7f4552524f523a204e6f2062616c616e636520746f2077697468647261772e00005f82015250565b5f6146d2601e836138fb565b91506146dd8261469e565b602082019050919050565b5f6020820190508181035f8301526146ff816146c6565b9050919050565b5f81905092915050565b50565b5f61471e5f83614706565b915061472982614710565b5f82019050919050565b5f61473d82614713565b9150819050919050565b7f4552524f523a2057686974656c697374204d696e74206973206e6f74206163745f8201527f6976652e00000000000000000000000000000000000000000000000000000000602082015250565b5f6147a16024836138fb565b91506147ac82614747565b604082019050919050565b5f6020820190508181035f8301526147ce81614795565b9050919050565b7f4552524f523a20596f7520617265206e6f7420616c6c6f77656420746f206d695f8201527f6e74206f6e20746869732070686173652e000000000000000000000000000000602082015250565b5f61482f6031836138fb565b915061483a826147d5565b604082019050919050565b5f6020820190508181035f83015261485c81614823565b9050919050565b7f4552524f523a204e756d626572206f6620746f6b656e732073686f756c6420625f8201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b5f6148bd6033836138fb565b91506148c882614863565b604082019050919050565b5f6020820190508181035f8301526148ea816148b1565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e747320705f8201527f6572207472616e73616374696f6e206578636565646564000000000000000000602082015250565b5f61494b6037836138fb565b9150614956826148f1565b604082019050919050565b5f6020820190508181035f8301526149788161493f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6149b682613cbc565b91506149c183613cbc565b9250828201905060ff8111156149da576149d961497f565b5b92915050565b7f4552524f523a20596f7572206d6178696d756d204e4654206d696e74207065725f8201527f2077616c6c6574206f6e207468697320706861736520686173206265656e207260208201527f6561636865642e00000000000000000000000000000000000000000000000000604082015250565b5f614a606047836138fb565b9150614a6b826149e0565b606082019050919050565b5f6020820190508181035f830152614a8d81614a54565b9050919050565b5f614a9e8261399b565b9150614aa98361399b565b9250828201905080821115614ac157614ac061497f565b5b92915050565b7f4552524f523a204e6f20746f6b656e73206c65667420746f206d696e740000005f82015250565b5f614afb601d836138fb565b9150614b0682614ac7565b602082019050919050565b5f6020820190508181035f830152614b2881614aef565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473206f5f8201527f6e207468697320706861736520686173206265656e2072656163686564000000602082015250565b5f614b89603d836138fb565b9150614b9482614b2f565b604082019050919050565b5f6020820190508181035f830152614bb681614b7d565b9050919050565b5f614bc78261399b565b9150614bd28361399b565b9250828202614be08161399b565b91508282048414831517614bf757614bf661497f565b5b5092915050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f7567682066755f8201527f6e647320746f206d696e742e0000000000000000000000000000000000000000602082015250565b5f614c58602c836138fb565b9150614c6382614bfe565b604082019050919050565b5f6020820190508181035f830152614c8581614c4c565b9050919050565b5f614c9682613cbc565b9150614ca183613cbc565b9250828203905060ff811115614cba57614cb961497f565b5b92915050565b5f604082019050614cd35f830185613cc8565b614ce06020830184613c2c565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4552524f523a204d696e74206973206e6f74206163746976652e0000000000005f82015250565b5f614d48601a836138fb565b9150614d5382614d14565b602082019050919050565b5f6020820190508181035f830152614d7581614d3c565b9050919050565b5f8160601b9050919050565b5f614d9282614d7c565b9050919050565b5f614da382614d88565b9050919050565b614dbb614db682613a18565b614d99565b82525050565b5f614dcc8284614daa565b60148201915081905092915050565b7f4552524f523a2055706772616465206973206e6f74206c6976652e00000000005f82015250565b5f614e0f601b836138fb565b9150614e1a82614ddb565b602082019050919050565b5f6020820190508181035f830152614e3c81614e03565b9050919050565b7f4552524f523a20596f7520617265206e6f7420746865206f776e6572206f66205f8201527f74686973204e4654000000000000000000000000000000000000000000000000602082015250565b5f614e9d6028836138fb565b9150614ea882614e43565b604082019050919050565b5f6020820190508181035f830152614eca81614e91565b9050919050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f7567682066755f8201527f6e647320746f20757067726164652e0000000000000000000000000000000000602082015250565b5f614f2b602f836138fb565b9150614f3682614ed1565b604082019050919050565b5f6020820190508181035f830152614f5881614f1f565b9050919050565b5f614f6982613cbc565b915060ff8203614f7c57614f7b61497f565b5b600182019050919050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e73206c6566740000005f82015250565b5f614fbb601d836138fb565b9150614fc682614f87565b602082019050919050565b5f6020820190508181035f830152614fe881614faf565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261504b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615010565b6150558683615010565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61509061508b6150868461399b565b61506d565b61399b565b9050919050565b5f819050919050565b6150a983615076565b6150bd6150b582615097565b84845461501c565b825550505050565b5f90565b6150d16150c5565b6150dc8184846150a0565b505050565b5b818110156150ff576150f45f826150c9565b6001810190506150e2565b5050565b601f8211156151445761511581614fef565b61511e84615001565b8101602085101561512d578190505b61514161513985615001565b8301826150e1565b50505b505050565b5f82821c905092915050565b5f6151645f1984600802615149565b1980831691505092915050565b5f61517c8383615155565b9150826002028217905092915050565b615195826138f1565b67ffffffffffffffff8111156151ae576151ad613ac1565b5b6151b8825461461e565b6151c3828285615103565b5f60209050601f8311600181146151f4575f84156151e2578287015190505b6151ec8582615171565b865550615253565b601f19841661520286614fef565b5f5b8281101561522957848901518255600182019150602085019450602081019050615204565b868310156152465784890151615242601f891682615155565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6152b5602f836138fb565b91506152c08261525b565b604082019050919050565b5f6020820190508181035f8301526152e2816152a9565b9050919050565b5f81546152f58161461e565b6152ff818661464e565b9450600182165f8114615319576001811461532e57615360565b60ff1983168652811515820286019350615360565b61533785614fef565b5f5b8381101561535857815481890152600182019150602081019050615339565b838801955050505b50505092915050565b5f61537482856152e9565b91506153808284614658565b91508190509392505050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e7300000000000000005f82015250565b5f6153c06018836138fb565b91506153cb8261538c565b602082019050919050565b5f6020820190508181035f8301526153ed816153b4565b9050919050565b5f819050919050565b5f61541761541261540d846153f4565b61506d565b61399b565b9050919050565b615427816153fd565b82525050565b5f6040820190506154405f830185613cc8565b61544d602083018461541e565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6154ae6026836138fb565b91506154b982615454565b604082019050919050565b5f6020820190508181035f8301526154db816154a2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6155166020836138fb565b9150615521826154e2565b602082019050919050565b5f6020820190508181035f8301526155438161550a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61557e601f836138fb565b91506155898261554a565b602082019050919050565b5f6020820190508181035f8301526155ab81615572565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f6155e66010836138fb565b91506155f1826155b2565b602082019050919050565b5f6020820190508181035f830152615613816155da565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61563e8261561a565b6156488185615624565b935061565881856020860161390b565b61566181613933565b840191505092915050565b5f60808201905061567f5f830187613a29565b61568c6020830186613a29565b6156996040830185613c2c565b81810360608301526156ab8184615634565b905095945050505050565b5f815190506156c4816137dd565b92915050565b5f602082840312156156df576156de6137aa565b5b5f6156ec848285016156b6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6157566014836138fb565b915061576182615722565b602082019050919050565b5f6020820190508181035f8301526157838161574a565b905091905056fea26469706673582212202c31938ab193a77b43476f799cea8e4e11a40bdcedd5589b6f11da755b50137d64736f6c63430008160033697066733a2f2f6261667962656961326d3468346674746f6c686573616f627a6d636762706f6c7a67626b717a69796d68746e657a76666e347036786237647772652f42656172204d61726b6574205375727669766f727320627920446f747365656d706c655f4169
Deployed Bytecode
0x608060405260043610610292575f3560e01c8063715018a611610159578063b88d4fde116100c0578063dab5f34011610079578063dab5f340146109b7578063e7d97937146109df578063e985e9c514610a07578063f2fde38b14610a43578063f7b188a514610a6b578063fce2856414610a8157610292565b8063b88d4fde146108bd578063c47e5d64146108d9578063c670354b14610901578063c87b56dd14610929578063c8a5992a14610965578063d5abeb011461098d57610292565b806390690c9a1161011257806390690c9a146107c357806395d89b41146107df578063a1e35e8114610809578063a22cb46514610831578063b2596a6714610859578063b3d6c53c1461089557610292565b8063715018a6146106d95780638456cb59146106ef578063858e83b51461070557806386481d40146107215780638c677e571461075d5780638da5cb5b1461079957610292565b806323b872dd116101fd5780635c975abb116101b65780635c975abb146105bf5780636352211e146105e95780636482b74a146106255780636e8fdbd81461064d5780636f8b44b01461067557806370a082311461069d57610292565b806323b872dd1461050557806331c07bbf146105215780633a55feda146105495780633ccfd60b1461057157806342842e0e1461058757806358381669146105a357610292565b80630d66662e1161024f5780630d66662e146103ba57806315587fc3146103fb57806315c6cd8f1461043757806318160ddd14610473578063209848011461049d57806320edeaf3146104d957610292565b806301ffc9a714610296578063055ad42e146102d257806306fdde03146102fc578063081812fc14610326578063095ea7b314610362578063099457341461037e575b5f80fd5b3480156102a1575f80fd5b506102bc60048036038101906102b79190613807565b610aa9565b6040516102c9919061384c565b60405180910390f35b3480156102dd575f80fd5b506102e6610b3a565b6040516102f391906138d8565b60405180910390f35b348015610307575f80fd5b50610310610b4c565b60405161031d919061397b565b60405180910390f35b348015610331575f80fd5b5061034c600480360381019061034791906139ce565b610bdc565b6040516103599190613a38565b60405180910390f35b61037c60048036038101906103779190613a7b565b610c56565b005b348015610389575f80fd5b506103a4600480360381019061039f9190613be5565b610d95565b6040516103b19190613c3b565b60405180910390f35b3480156103c5575f80fd5b506103e060048036038101906103db9190613c7e565b610dc2565b6040516103f296959493929190613cd7565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c9190613d36565b610f5e565b60405161042e9190613d90565b60405180910390f35b348015610442575f80fd5b5061045d60048036038101906104589190613e06565b610fa0565b60405161046a919061384c565b60405180910390f35b34801561047e575f80fd5b50610487610fc8565b6040516104949190613c3b565b60405180910390f35b3480156104a8575f80fd5b506104c360048036038101906104be9190613e63565b610fdd565b6040516104d09190613d90565b60405180910390f35b3480156104e4575f80fd5b506104ed610ffa565b6040516104fc93929190613e8e565b60405180910390f35b61051f600480360381019061051a9190613ec3565b611034565b005b34801561052c575f80fd5b5061054760048036038101906105429190613f3d565b611342565b005b348015610554575f80fd5b5061056f600480360381019061056a9190613f68565b6113f3565b005b34801561057c575f80fd5b50610585611418565b005b6105a1600480360381019061059c9190613ec3565b611557565b005b6105bd60048036038101906105b89190613f93565b611576565b005b3480156105ca575f80fd5b506105d3611bb0565b6040516105e0919061384c565b60405180910390f35b3480156105f4575f80fd5b5061060f600480360381019061060a91906139ce565b611bc6565b60405161061c9190613a38565b60405180910390f35b348015610630575f80fd5b5061064b60048036038101906106469190613ff0565b611bd7565b005b348015610658575f80fd5b50610673600480360381019061066e91906140ee565b611bed565b005b348015610680575f80fd5b5061069b600480360381019061069691906139ce565b611c3e565b005b3480156106a8575f80fd5b506106c360048036038101906106be9190613e63565b611c50565b6040516106d09190613c3b565b60405180910390f35b3480156106e4575f80fd5b506106ed611d05565b005b3480156106fa575f80fd5b50610703611d18565b005b61071f600480360381019061071a9190613f3d565b611d32565b005b34801561072c575f80fd5b50610747600480360381019061074291906139ce565b6121de565b6040516107549190613d90565b60405180910390f35b348015610768575f80fd5b50610783600480360381019061077e919061417b565b612204565b604051610790919061384c565b60405180910390f35b3480156107a4575f80fd5b506107ad612285565b6040516107ba9190613a38565b60405180910390f35b6107dd60048036038101906107d891906139ce565b6122ad565b005b3480156107ea575f80fd5b506107f3612413565b604051610800919061397b565b60405180910390f35b348015610814575f80fd5b5061082f600480360381019061082a91906142ac565b6124a3565b005b34801561083c575f80fd5b5061085760048036038101906108529190614306565b612500565b005b348015610864575f80fd5b5061087f600480360381019061087a91906139ce565b612606565b60405161088c9190613d90565b60405180910390f35b3480156108a0575f80fd5b506108bb60048036038101906108b69190614344565b612623565b005b6108d760048036038101906108d29190614420565b61269e565b005b3480156108e4575f80fd5b506108ff60048036038101906108fa91906144a0565b612710565b005b34801561090c575f80fd5b506109276004803603810190610922919061450c565b612780565b005b348015610934575f80fd5b5061094f600480360381019061094a91906139ce565b6127a6565b60405161095c919061397b565b60405180910390f35b348015610970575f80fd5b5061098b6004803603810190610986919061454a565b612995565b005b348015610998575f80fd5b506109a16129e1565b6040516109ae9190613c3b565b60405180910390f35b3480156109c2575f80fd5b506109dd60048036038101906109d89190614588565b6129e7565b005b3480156109ea575f80fd5b50610a056004803603810190610a009190613f3d565b6129f9565b005b348015610a12575f80fd5b50610a2d6004803603810190610a2891906145b3565b612abb565b604051610a3a919061384c565b60405180910390f35b348015610a4e575f80fd5b50610a696004803603810190610a649190613e63565b612b49565b005b348015610a76575f80fd5b50610a7f612bcb565b005b348015610a8c575f80fd5b50610aa76004803603810190610aa2919061450c565b612bdd565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60175f9054906101000a900460ff1681565b606060028054610b5b9061461e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b879061461e565b8015610bd25780601f10610ba957610100808354040283529160200191610bd2565b820191905f5260205f20905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b5f610be682612c03565b610c1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610c6082611bc6565b90508073ffffffffffffffffffffffffffffffffffffffff16610c81612c5d565b73ffffffffffffffffffffffffffffffffffffffff1614610ce457610cad81610ca8612c5d565b612abb565b610ce3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b818051602081018201805184825260208301602085012081835280955050505050505f915090505481565b5f805f805f805f88610e09576040518060400160405280600981526020017f57484954454c4953540000000000000000000000000000000000000000000000815250610e40565b6040518060400160405280600681526020017f5055424c494300000000000000000000000000000000000000000000000000008152505b90505f600d82604051610e539190614688565b90815260200160405180910390205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1690505f8a610ec55760135f9054906101000a900460ff16610ed5565b60105f9054906101000a900460ff165b90505f8b610ee557601554610ee9565b6012545b90505f8c610ef957601454610efd565b6011545b905060175f9054906101000a900460ff166002811115610f2057610f1f613865565b5b838383600b89604051610f339190614688565b908152602001604051809103902054889a509a509a509a509a509a5050505050509295509295509295565b600d82805160208101820180518482526020830160208501208183528095505050505050602052805f5260405f205f915091509054906101000a900460ff1681565b5f610faf848484601654612204565b15610fbd5760019050610fc1565b5f90505b9392505050565b5f610fd1612c64565b6001545f540303905090565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f805f600a54611008610fc8565b60175f9054906101000a900460ff16600281111561102957611028613865565b5b925092509250909192565b5f61103e82612c68565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110a5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806110b084612d2b565b915091506110c681876110c1612c5d565b612d4e565b611112576110db866110d6612c5d565b612abb565b611111576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611177576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111848686866001612d91565b801561118e575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061125685611232888887612d97565b7c020000000000000000000000000000000000000000000000000000000017612dbe565b60045f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036112d2575f6001850190505f60045f8381526020019081526020015f2054036112d0575f5481146112cf578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461133a8686866001612de8565b505050505050565b61134a612dee565b8060ff1660028111156113605761135f613865565b5b60175f6101000a81548160ff0219169083600281111561138357611382613865565b5b021790555060175f9054906101000a900460ff1660028111156113a9576113a8613865565b5b60ff16423373ffffffffffffffffffffffffffffffffffffffff167f7d7f6ed6d84cc6a4531c22effb48bb76d643459a9d3398dab7ddb04f6fb01ebc60405160405180910390a450565b6113fb612dee565b80601a60016101000a81548160ff02191690831515021790555050565b611420612dee565b5f4711611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906146e8565b60405180910390fd5b5f4790505f3373ffffffffffffffffffffffffffffffffffffffff164760405161148b90614733565b5f6040518083038185875af1925050503d805f81146114c5576040519150601f19603f3d011682016040523d82523d5f602084013e6114ca565b606091505b5050905080611505576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec8360405161154b9190613c3b565b60405180910390a25050565b61157183838360405180602001604052805f81525061269e565b505050565b61157e612e6c565b611586612ebb565b6001600281111561159a57611599613865565b5b60175f9054906101000a900460ff1660028111156115bb576115ba613865565b5b146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906147b7565b60405180910390fd5b5f6040518060400160405280600981526020017f57484954454c495354000000000000000000000000000000000000000000000081525090505f611643338585601654612204565b611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990614845565b60405180910390fd5b5f8560ff16116116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be906148d3565b60405180910390fd5b60135f9054906101000a900460ff1660ff168560ff16111561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590614961565b60405180910390fd5b60135f9054906101000a900460ff1660ff1685600d846040516117419190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117a191906149ac565b60ff1611156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614a76565b60405180910390fd5b600a548560ff166117f4612f05565b6117fe9190614a94565b111561183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690614b11565b60405180910390fd5b6014548560ff16600b846040516118569190614688565b90815260200160405180910390205461186f9190614a94565b11156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790614b9f565b60405180910390fd5b5f600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1660ff16111561195f578460ff166015546119159190614bbd565b90508034101561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190614c6e565b60405180910390fd5b611a44565b601360019054906101000a900460ff1660ff168560ff1611156119ed57601360019054906101000a900460ff16856119979190614c8c565b60ff166015546119a79190614bbd565b9050803410156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390614c6e565b60405180910390fd5b5b6001600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908360ff1602179055505b611a51338660ff16612f16565b8460ff16600b83604051611a659190614688565b90815260200160405180910390205f828254611a819190614a94565b9250508190555084600d83604051611a999190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff16611afc91906149ac565b92506101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d0777408683604051611b5c929190614cc0565b60405180910390a2600a54611b6f612f05565b10611ba1577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b5050611bab612f33565b505050565b5f600860149054906101000a900460ff16905090565b5f611bd082612c68565b9050919050565b611bdf612dee565b611be98282612f3d565b5050565b611bf5612dee565b611bfd612ebb565b5f5b8151811015611c3957611c2c83838381518110611c1f57611c1e614ce7565b5b6020026020010151612623565b8080600101915050611bff565b505050565b611c46612dee565b80600a8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611d0d612dee565b611d165f612f6a565b565b611d20612dee565b611d28612ebb565b611d3061302d565b565b611d3a612e6c565b611d42612ebb565b600280811115611d5557611d54613865565b5b60175f9054906101000a900460ff166002811115611d7657611d75613865565b5b14611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614d5e565b60405180910390fd5b5f6040518060400160405280600681526020017f5055424c4943000000000000000000000000000000000000000000000000000081525090505f8260ff1611611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b906148d3565b60405180910390fd5b60105f9054906101000a900460ff1660ff168260ff161115611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614961565b60405180910390fd5b60105f9054906101000a900460ff1660ff1682600d83604051611eae9190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f0e91906149ac565b60ff161115611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990614a76565b60405180910390fd5b6011548260ff16600b83604051611f699190614688565b908152602001604051809103902054611f829190614a94565b1115611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90614b9f565b60405180910390fd5b600a548260ff16611fd2612f05565b611fdc9190614a94565b111561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614b11565b60405180910390fd5b5f8260ff1660125461202f9190614bbd565b905080341015612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614c6e565b60405180910390fd5b612081338460ff16612f16565b8260ff16600b836040516120959190614688565b90815260200160405180910390205f8282546120b19190614a94565b9250508190555082600d836040516120c99190614688565b90815260200160405180910390205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff1661212c91906149ac565b92506101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740848360405161218c929190614cc0565b60405180910390a2600a5461219f612f05565b106121d1577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b50506121db612f33565b50565b5f601c5f8381526020019081526020015f205f9054906101000a900460ff169050919050565b5f80856040516020016122179190614dc1565b60405160208183030381529060405280519060200120905061227a8585808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f820116905080830192505050505050508483613090565b915050949350505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6122b5612e6c565b6122bd612ebb565b60011515601a60019054906101000a900460ff16151514612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90614e25565b60405180910390fd5b61231c81611bc6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614eb3565b60405180910390fd5b601b543410156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c590614f41565b60405180910390fd5b5f601c5f8381526020019081526020015f205f9054906101000a900460ff16905080806123fa90614f5f565b9150506124078282612f3d565b50612410612f33565b50565b6060600380546124229061461e565b80601f016020809104026020016040519081016040528092919081815260200182805461244e9061461e565b80156124995780601f1061247057610100808354040283529160200191612499565b820191905f5260205f20905b81548152906001019060200180831161247c57829003601f168201915b5050505050905090565b6124ab612dee565b5f805f90505b83518160ff1610156124fa57838160ff16815181106124d3576124d2614ce7565b5b602002602001015191506124e78284612f3d565b80806124f290614f5f565b9150506124b1565b50505050565b8060075f61250c612c5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125b5612c5d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125fa919061384c565b60405180910390a35050565b601c602052805f5260405f205f915054906101000a900460ff1681565b61262b612dee565b612633612ebb565b600a548260ff16612642612f05565b61264c9190614a94565b111561268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614fd1565b60405180910390fd5b61269a818360ff16612f16565b5050565b6126a9848484611034565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461270a576126d3848484846130a6565b612709576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612718612dee565b81601a5f6101000a81548160ff0219169083151502179055508260189081612740919061518c565b50601a5f9054906101000a900460ff161561277b578260195f8360ff1660ff1681526020019081526020015f209081612779919061518c565b505b505050565b612788612dee565b801561279a57816011819055506127a2565b816014819055505b5050565b60606127b182612c03565b6127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e7906152cb565b60405180910390fd5b5f601880546127fe9061461e565b80601f016020809104026020016040519081016040528092919081815260200182805461282a9061461e565b80156128755780601f1061284c57610100808354040283529160200191612875565b820191905f5260205f20905b81548152906001019060200180831161285857829003601f168201915b505050505090505f601c5f8581526020019081526020015f205f9054906101000a900460ff169050601a5f9054906101000a900460ff16156129525760195f8260ff1660ff1681526020019081526020015f2080546128d39061461e565b80601f01602080910402602001604051908101604052809291908181526020018280546128ff9061461e565b801561294a5780601f106129215761010080835404028352916020019161294a565b820191905f5260205f20905b81548152906001019060200180831161292d57829003601f168201915b505050505091505b60018461295f9190614a94565b9350601861296c856131f1565b60405160200161297d929190615369565b60405160208183030381529060405292505050919050565b61299d612dee565b80156129c2578160105f6101000a81548160ff021916908360ff1602179055506129dd565b8160135f6101000a81548160ff021916908360ff1602179055505b5050565b600a5481565b6129ef612dee565b8060168190555050565b612a01612dee565b600a548160ff16612a10612f05565b612a1a9190614a94565b1115612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a52906153d6565b60405180910390fd5b612a68338260ff16612f16565b3373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740825f604051612ab092919061542d565b60405180910390a250565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b612b51612dee565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb6906154c4565b60405180910390fd5b612bc881612f6a565b50565b612bd3612dee565b612bdb6132bb565b565b612be5612dee565b8015612bf75781601281905550612bff565b816015819055505b5050565b5f81612c0d612c64565b11158015612c1b57505f5482105b8015612c5657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f90565b5f8082905080612c76612c64565b11612cf4575f54811015612cf3575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612cf1575b5f8103612ce75760045f836001900393508381526020019081526020015f20549050612cc0565b8092505050612d26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612dad86868461331d565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612df6613325565b73ffffffffffffffffffffffffffffffffffffffff16612e14612285565b73ffffffffffffffffffffffffffffffffffffffff1614612e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e619061552c565b60405180910390fd5b565b600260095403612eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea890615594565b60405180910390fd5b6002600981905550565b612ec3611bb0565b15612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa906155fc565b60405180910390fd5b565b5f612f0e612c64565b5f5403905090565b612f2f828260405180602001604052805f81525061332c565b5050565b6001600981905550565b80601c5f8481526020019081526020015f205f6101000a81548160ff021916908360ff1602179055505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613035612ebb565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613079613325565b6040516130869190613a38565b60405180910390a1565b5f8261309c85846133c3565b1490509392505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130cb612c5d565b8786866040518563ffffffff1660e01b81526004016130ed949392919061566c565b6020604051808303815f875af192505050801561312857506040513d601f19601f8201168201806040525081019061312591906156ca565b60015b61319e573d805f8114613156576040519150601f19603f3d011682016040523d82523d5f602084013e61315b565b606091505b505f815103613196576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f60016131ff84613411565b0190505f8167ffffffffffffffff81111561321d5761321c613ac1565b5b6040519080825280601f01601f19166020018201604052801561324f5781602001600182028036833780820191505090505b5090505f82602001820190505b6001156132b0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816132a5576132a46156f5565b5b0494505f850361325c575b819350505050919050565b6132c3613562565b5f600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613306613325565b6040516133139190613a38565b60405180910390a1565b5f9392505050565b5f33905090565b61333683836135ab565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146133be575f805490505f83820390505b6133725f8683806001019450866130a6565b6133a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061336057815f54146133bb575f80fd5b50505b505050565b5f808290505f5b8451811015613406576133f7828683815181106133ea576133e9614ce7565b5b6020026020010151613754565b915080806001019150506133ca565b508091505092915050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061346d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613463576134626156f5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106134aa576d04ee2d6d415b85acef810000000083816134a05761349f6156f5565b5b0492506020810190505b662386f26fc1000083106134d957662386f26fc1000083816134cf576134ce6156f5565b5b0492506010810190505b6305f5e1008310613502576305f5e10083816134f8576134f76156f5565b5b0492506008810190505b612710831061352757612710838161351d5761351c6156f5565b5b0492506004810190505b6064831061354a57606483816135405761353f6156f5565b5b0492506002810190505b600a8310613559576001810190505b80915050919050565b61356a611bb0565b6135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a09061576c565b60405180910390fd5b565b5f805490505f82036135e9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135f55f848385612d91565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550613667836136585f865f612d97565b6136618561377e565b17612dbe565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146137015780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506136c8565b505f820361373b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061374f5f848385612de8565b505050565b5f81831061376b57613766828461378d565b613776565b613775838361378d565b5b905092915050565b5f6001821460e11b9050919050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e6816137b2565b81146137f0575f80fd5b50565b5f81359050613801816137dd565b92915050565b5f6020828403121561381c5761381b6137aa565b5b5f613829848285016137f3565b91505092915050565b5f8115159050919050565b61384681613832565b82525050565b5f60208201905061385f5f83018461383d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600381106138a3576138a2613865565b5b50565b5f8190506138b382613892565b919050565b5f6138c2826138a6565b9050919050565b6138d2816138b8565b82525050565b5f6020820190506138eb5f8301846138c9565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561392857808201518184015260208101905061390d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61394d826138f1565b61395781856138fb565b935061396781856020860161390b565b61397081613933565b840191505092915050565b5f6020820190508181035f8301526139938184613943565b905092915050565b5f819050919050565b6139ad8161399b565b81146139b7575f80fd5b50565b5f813590506139c8816139a4565b92915050565b5f602082840312156139e3576139e26137aa565b5b5f6139f0848285016139ba565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a22826139f9565b9050919050565b613a3281613a18565b82525050565b5f602082019050613a4b5f830184613a29565b92915050565b613a5a81613a18565b8114613a64575f80fd5b50565b5f81359050613a7581613a51565b92915050565b5f8060408385031215613a9157613a906137aa565b5b5f613a9e85828601613a67565b9250506020613aaf858286016139ba565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613af782613933565b810181811067ffffffffffffffff82111715613b1657613b15613ac1565b5b80604052505050565b5f613b286137a1565b9050613b348282613aee565b919050565b5f67ffffffffffffffff821115613b5357613b52613ac1565b5b613b5c82613933565b9050602081019050919050565b828183375f83830152505050565b5f613b89613b8484613b39565b613b1f565b905082815260208101848484011115613ba557613ba4613abd565b5b613bb0848285613b69565b509392505050565b5f82601f830112613bcc57613bcb613ab9565b5b8135613bdc848260208601613b77565b91505092915050565b5f60208284031215613bfa57613bf96137aa565b5b5f82013567ffffffffffffffff811115613c1757613c166137ae565b5b613c2384828501613bb8565b91505092915050565b613c358161399b565b82525050565b5f602082019050613c4e5f830184613c2c565b92915050565b613c5d81613832565b8114613c67575f80fd5b50565b5f81359050613c7881613c54565b92915050565b5f8060408385031215613c9457613c936137aa565b5b5f613ca185828601613c6a565b9250506020613cb285828601613a67565b9150509250929050565b5f60ff82169050919050565b613cd181613cbc565b82525050565b5f60c082019050613cea5f830189613cc8565b613cf76020830188613cc8565b613d046040830187613c2c565b613d116060830186613c2c565b613d1e6080830185613c2c565b613d2b60a0830184613cc8565b979650505050505050565b5f8060408385031215613d4c57613d4b6137aa565b5b5f83013567ffffffffffffffff811115613d6957613d686137ae565b5b613d7585828601613bb8565b9250506020613d8685828601613a67565b9150509250929050565b5f602082019050613da35f830184613cc8565b92915050565b5f80fd5b5f80fd5b5f8083601f840112613dc657613dc5613ab9565b5b8235905067ffffffffffffffff811115613de357613de2613da9565b5b602083019150836020820283011115613dff57613dfe613dad565b5b9250929050565b5f805f60408486031215613e1d57613e1c6137aa565b5b5f613e2a86828701613a67565b935050602084013567ffffffffffffffff811115613e4b57613e4a6137ae565b5b613e5786828701613db1565b92509250509250925092565b5f60208284031215613e7857613e776137aa565b5b5f613e8584828501613a67565b91505092915050565b5f606082019050613ea15f830186613c2c565b613eae6020830185613c2c565b613ebb6040830184613cc8565b949350505050565b5f805f60608486031215613eda57613ed96137aa565b5b5f613ee786828701613a67565b9350506020613ef886828701613a67565b9250506040613f09868287016139ba565b9150509250925092565b613f1c81613cbc565b8114613f26575f80fd5b50565b5f81359050613f3781613f13565b92915050565b5f60208284031215613f5257613f516137aa565b5b5f613f5f84828501613f29565b91505092915050565b5f60208284031215613f7d57613f7c6137aa565b5b5f613f8a84828501613c6a565b91505092915050565b5f805f60408486031215613faa57613fa96137aa565b5b5f613fb786828701613f29565b935050602084013567ffffffffffffffff811115613fd857613fd76137ae565b5b613fe486828701613db1565b92509250509250925092565b5f8060408385031215614006576140056137aa565b5b5f614013858286016139ba565b925050602061402485828601613f29565b9150509250929050565b5f67ffffffffffffffff82111561404857614047613ac1565b5b602082029050602081019050919050565b5f61406b6140668461402e565b613b1f565b9050808382526020820190506020840283018581111561408e5761408d613dad565b5b835b818110156140b757806140a38882613a67565b845260208401935050602081019050614090565b5050509392505050565b5f82601f8301126140d5576140d4613ab9565b5b81356140e5848260208601614059565b91505092915050565b5f8060408385031215614104576141036137aa565b5b5f61411185828601613f29565b925050602083013567ffffffffffffffff811115614132576141316137ae565b5b61413e858286016140c1565b9150509250929050565b5f819050919050565b61415a81614148565b8114614164575f80fd5b50565b5f8135905061417581614151565b92915050565b5f805f8060608587031215614193576141926137aa565b5b5f6141a087828801613a67565b945050602085013567ffffffffffffffff8111156141c1576141c06137ae565b5b6141cd87828801613db1565b935093505060406141e087828801614167565b91505092959194509250565b5f67ffffffffffffffff82111561420657614205613ac1565b5b602082029050602081019050919050565b5f614229614224846141ec565b613b1f565b9050808382526020820190506020840283018581111561424c5761424b613dad565b5b835b81811015614275578061426188826139ba565b84526020840193505060208101905061424e565b5050509392505050565b5f82601f83011261429357614292613ab9565b5b81356142a3848260208601614217565b91505092915050565b5f80604083850312156142c2576142c16137aa565b5b5f83013567ffffffffffffffff8111156142df576142de6137ae565b5b6142eb8582860161427f565b92505060206142fc85828601613f29565b9150509250929050565b5f806040838503121561431c5761431b6137aa565b5b5f61432985828601613a67565b925050602061433a85828601613c6a565b9150509250929050565b5f806040838503121561435a576143596137aa565b5b5f61436785828601613f29565b925050602061437885828601613a67565b9150509250929050565b5f67ffffffffffffffff82111561439c5761439b613ac1565b5b6143a582613933565b9050602081019050919050565b5f6143c46143bf84614382565b613b1f565b9050828152602081018484840111156143e0576143df613abd565b5b6143eb848285613b69565b509392505050565b5f82601f83011261440757614406613ab9565b5b81356144178482602086016143b2565b91505092915050565b5f805f8060808587031215614438576144376137aa565b5b5f61444587828801613a67565b945050602061445687828801613a67565b9350506040614467878288016139ba565b925050606085013567ffffffffffffffff811115614488576144876137ae565b5b614494878288016143f3565b91505092959194509250565b5f805f606084860312156144b7576144b66137aa565b5b5f84013567ffffffffffffffff8111156144d4576144d36137ae565b5b6144e086828701613bb8565b93505060206144f186828701613c6a565b925050604061450286828701613f29565b9150509250925092565b5f8060408385031215614522576145216137aa565b5b5f61452f858286016139ba565b925050602061454085828601613c6a565b9150509250929050565b5f80604083850312156145605761455f6137aa565b5b5f61456d85828601613f29565b925050602061457e85828601613c6a565b9150509250929050565b5f6020828403121561459d5761459c6137aa565b5b5f6145aa84828501614167565b91505092915050565b5f80604083850312156145c9576145c86137aa565b5b5f6145d685828601613a67565b92505060206145e785828601613a67565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061463557607f821691505b602082108103614648576146476145f1565b5b50919050565b5f81905092915050565b5f614662826138f1565b61466c818561464e565b935061467c81856020860161390b565b80840191505092915050565b5f6146938284614658565b915081905092915050565b7f4552524f523a204e6f2062616c616e636520746f2077697468647261772e00005f82015250565b5f6146d2601e836138fb565b91506146dd8261469e565b602082019050919050565b5f6020820190508181035f8301526146ff816146c6565b9050919050565b5f81905092915050565b50565b5f61471e5f83614706565b915061472982614710565b5f82019050919050565b5f61473d82614713565b9150819050919050565b7f4552524f523a2057686974656c697374204d696e74206973206e6f74206163745f8201527f6976652e00000000000000000000000000000000000000000000000000000000602082015250565b5f6147a16024836138fb565b91506147ac82614747565b604082019050919050565b5f6020820190508181035f8301526147ce81614795565b9050919050565b7f4552524f523a20596f7520617265206e6f7420616c6c6f77656420746f206d695f8201527f6e74206f6e20746869732070686173652e000000000000000000000000000000602082015250565b5f61482f6031836138fb565b915061483a826147d5565b604082019050919050565b5f6020820190508181035f83015261485c81614823565b9050919050565b7f4552524f523a204e756d626572206f6620746f6b656e732073686f756c6420625f8201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b5f6148bd6033836138fb565b91506148c882614863565b604082019050919050565b5f6020820190508181035f8301526148ea816148b1565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e747320705f8201527f6572207472616e73616374696f6e206578636565646564000000000000000000602082015250565b5f61494b6037836138fb565b9150614956826148f1565b604082019050919050565b5f6020820190508181035f8301526149788161493f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6149b682613cbc565b91506149c183613cbc565b9250828201905060ff8111156149da576149d961497f565b5b92915050565b7f4552524f523a20596f7572206d6178696d756d204e4654206d696e74207065725f8201527f2077616c6c6574206f6e207468697320706861736520686173206265656e207260208201527f6561636865642e00000000000000000000000000000000000000000000000000604082015250565b5f614a606047836138fb565b9150614a6b826149e0565b606082019050919050565b5f6020820190508181035f830152614a8d81614a54565b9050919050565b5f614a9e8261399b565b9150614aa98361399b565b9250828201905080821115614ac157614ac061497f565b5b92915050565b7f4552524f523a204e6f20746f6b656e73206c65667420746f206d696e740000005f82015250565b5f614afb601d836138fb565b9150614b0682614ac7565b602082019050919050565b5f6020820190508181035f830152614b2881614aef565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473206f5f8201527f6e207468697320706861736520686173206265656e2072656163686564000000602082015250565b5f614b89603d836138fb565b9150614b9482614b2f565b604082019050919050565b5f6020820190508181035f830152614bb681614b7d565b9050919050565b5f614bc78261399b565b9150614bd28361399b565b9250828202614be08161399b565b91508282048414831517614bf757614bf661497f565b5b5092915050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f7567682066755f8201527f6e647320746f206d696e742e0000000000000000000000000000000000000000602082015250565b5f614c58602c836138fb565b9150614c6382614bfe565b604082019050919050565b5f6020820190508181035f830152614c8581614c4c565b9050919050565b5f614c9682613cbc565b9150614ca183613cbc565b9250828203905060ff811115614cba57614cb961497f565b5b92915050565b5f604082019050614cd35f830185613cc8565b614ce06020830184613c2c565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4552524f523a204d696e74206973206e6f74206163746976652e0000000000005f82015250565b5f614d48601a836138fb565b9150614d5382614d14565b602082019050919050565b5f6020820190508181035f830152614d7581614d3c565b9050919050565b5f8160601b9050919050565b5f614d9282614d7c565b9050919050565b5f614da382614d88565b9050919050565b614dbb614db682613a18565b614d99565b82525050565b5f614dcc8284614daa565b60148201915081905092915050565b7f4552524f523a2055706772616465206973206e6f74206c6976652e00000000005f82015250565b5f614e0f601b836138fb565b9150614e1a82614ddb565b602082019050919050565b5f6020820190508181035f830152614e3c81614e03565b9050919050565b7f4552524f523a20596f7520617265206e6f7420746865206f776e6572206f66205f8201527f74686973204e4654000000000000000000000000000000000000000000000000602082015250565b5f614e9d6028836138fb565b9150614ea882614e43565b604082019050919050565b5f6020820190508181035f830152614eca81614e91565b9050919050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f7567682066755f8201527f6e647320746f20757067726164652e0000000000000000000000000000000000602082015250565b5f614f2b602f836138fb565b9150614f3682614ed1565b604082019050919050565b5f6020820190508181035f830152614f5881614f1f565b9050919050565b5f614f6982613cbc565b915060ff8203614f7c57614f7b61497f565b5b600182019050919050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e73206c6566740000005f82015250565b5f614fbb601d836138fb565b9150614fc682614f87565b602082019050919050565b5f6020820190508181035f830152614fe881614faf565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261504b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615010565b6150558683615010565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61509061508b6150868461399b565b61506d565b61399b565b9050919050565b5f819050919050565b6150a983615076565b6150bd6150b582615097565b84845461501c565b825550505050565b5f90565b6150d16150c5565b6150dc8184846150a0565b505050565b5b818110156150ff576150f45f826150c9565b6001810190506150e2565b5050565b601f8211156151445761511581614fef565b61511e84615001565b8101602085101561512d578190505b61514161513985615001565b8301826150e1565b50505b505050565b5f82821c905092915050565b5f6151645f1984600802615149565b1980831691505092915050565b5f61517c8383615155565b9150826002028217905092915050565b615195826138f1565b67ffffffffffffffff8111156151ae576151ad613ac1565b5b6151b8825461461e565b6151c3828285615103565b5f60209050601f8311600181146151f4575f84156151e2578287015190505b6151ec8582615171565b865550615253565b601f19841661520286614fef565b5f5b8281101561522957848901518255600182019150602085019450602081019050615204565b868310156152465784890151615242601f891682615155565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6152b5602f836138fb565b91506152c08261525b565b604082019050919050565b5f6020820190508181035f8301526152e2816152a9565b9050919050565b5f81546152f58161461e565b6152ff818661464e565b9450600182165f8114615319576001811461532e57615360565b60ff1983168652811515820286019350615360565b61533785614fef565b5f5b8381101561535857815481890152600182019150602081019050615339565b838801955050505b50505092915050565b5f61537482856152e9565b91506153808284614658565b91508190509392505050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e7300000000000000005f82015250565b5f6153c06018836138fb565b91506153cb8261538c565b602082019050919050565b5f6020820190508181035f8301526153ed816153b4565b9050919050565b5f819050919050565b5f61541761541261540d846153f4565b61506d565b61399b565b9050919050565b615427816153fd565b82525050565b5f6040820190506154405f830185613cc8565b61544d602083018461541e565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6154ae6026836138fb565b91506154b982615454565b604082019050919050565b5f6020820190508181035f8301526154db816154a2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6155166020836138fb565b9150615521826154e2565b602082019050919050565b5f6020820190508181035f8301526155438161550a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61557e601f836138fb565b91506155898261554a565b602082019050919050565b5f6020820190508181035f8301526155ab81615572565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f6155e66010836138fb565b91506155f1826155b2565b602082019050919050565b5f6020820190508181035f830152615613816155da565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61563e8261561a565b6156488185615624565b935061565881856020860161390b565b61566181613933565b840191505092915050565b5f60808201905061567f5f830187613a29565b61568c6020830186613a29565b6156996040830185613c2c565b81810360608301526156ab8184615634565b905095945050505050565b5f815190506156c4816137dd565b92915050565b5f602082840312156156df576156de6137aa565b5b5f6156ec848285016156b6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6157566014836138fb565b915061576182615722565b602082019050919050565b5f6020820190508181035f8301526157838161574a565b905091905056fea26469706673582212202c31938ab193a77b43476f799cea8e4e11a40bdcedd5589b6f11da755b50137d64736f6c63430008160033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.