ERC-721
NFT
Overview
Max Total Supply
350 LOC
Holders
336
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LOCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LibraryOnChain
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /// Library Onchain /// --------------- /// Imagine a library full of alpha. An alpha aggregator powered by onchain activities, research and networks. /// NFTs grants access to the private discord of Library Onchain. /// All services of Library Onchain are available for NFT holders. /// --------------- /// Website: https://libraryonchain.com/ /// Discord: https://discord.gg/libraryonchain /// Medium: https://medium.com/@Libraryonchain /// OpenSea: https://opensea.io/collection/library-onchain pragma solidity ^0.8.0; import "./base/ERC721Checkpointable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract LibraryOnChain is ERC721Checkpointable, ERC2981, Ownable { uint256 public constant MINT_PRICE = 0.5 ether; uint256 public constant MAX_SUPPLY = 350; uint256 public MINT_STAGE = 0; uint256 public nextTokenId; bytes32 immutable public merkleRoot; mapping(address => bool) public addressMinted; string public baseTokenURI = "ipfs://QmUG4zAeWV4mTEr8mTA832iKDsKKQS9xHwcyHqo4X7ESxU/"; string private _contractURIBackingField = "ipfs://QmfAHnnMQVRHqvRhwgJ6D5ujykqJ4kD3qfv2hfiDjTaExS"; constructor(bytes32 _merkleRoot, address[] memory founders, address reserved, uint128 foundersAlloc, uint128 reservedAlloc) ERC721("Library Onchain", "LOC") { merkleRoot = _merkleRoot; for(uint i = 0; i < founders.length; i++) { for(uint j = 0; j < foundersAlloc; j++) { nextTokenId++; _mint(founders[i], nextTokenId); } } for(uint j = 0; j < reservedAlloc; j++) { nextTokenId++; _mint(reserved, nextTokenId); } _setDefaultRoyalty(msg.sender, 600); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } function isWhitelisted(bytes32[] calldata merkleProof, address claimant) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(claimant)); return MerkleProof.verify(merkleProof, merkleRoot, leaf) == true; } function isAlreadyClaimed(address claimant) public view returns (bool) { return addressMinted[claimant] != false; } function whitelist_mint(bytes32[] calldata merkleProof) public payable { require(MINT_STAGE >= 1, "whitelist minting not open"); require(nextTokenId < MAX_SUPPLY, "minted out"); require(!isAlreadyClaimed(msg.sender), "already claimed"); addressMinted[msg.sender] = true; require(isWhitelisted(merkleProof, msg.sender), "invalid merkle proof"); require(msg.value >= MINT_PRICE, "insufficient value"); nextTokenId++; _mint(msg.sender, nextTokenId); } function public_mint() public payable { require(nextTokenId < MAX_SUPPLY, "minted out"); require(MINT_STAGE >= 2, "public minting not open"); require(msg.value >= MINT_PRICE, "insufficient value"); require(!isAlreadyClaimed(msg.sender), "already minted"); addressMinted[msg.sender] = true; nextTokenId++; _mint(msg.sender, nextTokenId); } function withdrawOtherTokens (address _token) external onlyOwner { require (_token != address(0), "!zero"); IERC20 token = IERC20(_token); uint256 tokenBalance = token.balanceOf(address(this)); if (tokenBalance > 0) { token.transfer(owner(), tokenBalance); } } function withdrawETH() external onlyOwner { uint256 contractBalance = address(this).balance; if (contractBalance > 0) { payable(owner()).transfer(contractBalance); } } function setRoyaltyInfo(address _receiver, uint96 _feeNumerator) external onlyOwner { _setDefaultRoyalty(_receiver, _feeNumerator); } function setMintStage(uint256 stage) external onlyOwner { MINT_STAGE = stage; } function setBaseURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function contractURI() public view returns (string memory) { return _contractURIBackingField; } function setContractURI(string memory newURI) external onlyOwner { _contractURIBackingField = newURI; } }
// SPDX-License-Identifier: BSD-3-Clause /// @title Vote checkpointing for an ERC-721 token // LICENSE // ERC721Checkpointable.sol uses and modifies part of Compound Lab's Comp.sol: // https://github.com/compound-finance/compound-protocol/blob/ae4388e780a8d596d97619d9704a931a2752c2bc/contracts/Governance/Comp.sol // // Comp.sol source code Copyright 2020 Compound Labs, Inc. licensed under the BSD-3-Clause license. // With modifications by Nounders DAO. // // Additional conditions of BSD-3-Clause can be found here: https://opensource.org/licenses/BSD-3-Clause // // MODIFICATIONS // Checkpointing logic from Comp.sol has been used with the following modifications: // - `delegates` is renamed to `_delegates` and is set to private // - `delegates` is a public function that uses the `_delegates` mapping look-up, but unlike // Comp.sol, returns the delegator's own address if there is no delegate. // This avoids the delegator needing to "delegate to self" with an additional transaction // - `_transferTokens()` is renamed `_beforeTokenTransfer()` and adapted to hook into OpenZeppelin's ERC721 hooks. pragma solidity ^0.8.6; import './ERC721Enumerable.sol'; abstract contract ERC721Checkpointable is ERC721Enumerable { /// @notice Defines decimals as per ERC-20 convention to make integrations with 3rd party governance platforms easier uint8 public constant decimals = 0; /// @notice A record of each accounts delegate mapping(address => address) private _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } /// @notice A record of votes checkpoints for each account, by index mapping(address => mapping(uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping(address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256('EIP712Domain(string name,uint256 chainId,address verifyingContract)'); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256('Delegation(address delegatee,uint256 nonce,uint256 expiry)'); /// @notice A record of states for signing / validating signatures mapping(address => uint256) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @notice The votes a delegator can delegate, which is the current balance of the delegator. * @dev Used when calling `_delegate()` */ function votesToDelegate(address delegator) public view returns (uint96) { return safe96(balanceOf(delegator), 'ERC721Checkpointable::votesToDelegate: amount exceeds 96 bits'); } /** * @notice Overrides the standard `Comp.sol` delegates mapping to return * the delegator's own address if they haven't delegated. * This avoids having to delegate to oneself. */ function delegates(address delegator) public view returns (address) { address current = _delegates[delegator]; return current == address(0) ? delegator : current; } /** * @notice Adapted from `_transferTokens()` in `Comp.sol` to update delegate votes. * @dev hooks into OpenZeppelin's `ERC721._transfer` */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); /// @notice Differs from `_transferTokens()` to use `delegates` override method to simulate auto-delegation _moveDelegates(delegates(from), delegates(to), 1); } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public { if (delegatee == address(0)) delegatee = msg.sender; return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) public { bytes32 domainSeparator = keccak256( abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this)) ); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked('\x19\x01', domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), 'ERC721Checkpointable::delegateBySig: invalid signature'); require(nonce == nonces[signatory]++, 'ERC721Checkpointable::delegateBySig: invalid nonce'); require(block.timestamp <= expiry, 'ERC721Checkpointable::delegateBySig: signature expired'); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) public view returns (uint96) { require(blockNumber < block.number, 'ERC721Checkpointable::getPriorVotes: not yet determined'); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { /// @notice differs from `_delegate()` in `Comp.sol` to use `delegates` override method to simulate auto-delegation address currentDelegate = delegates(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); uint96 amount = votesToDelegate(delegator); _moveDelegates(currentDelegate, delegatee, amount); } function _moveDelegates( address srcRep, address dstRep, uint96 amount ) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, 'ERC721Checkpointable::_moveDelegates: amount underflows'); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, 'ERC721Checkpointable::_moveDelegates: amount overflows'); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes ) internal { uint32 blockNumber = safe32( block.number, 'ERC721Checkpointable::_writeCheckpoint: block number exceeds 32 bits' ); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint256 n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96( uint96 a, uint96 b, string memory errorMessage ) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96( uint96 a, uint96 b, string memory errorMessage ) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } function getChainId() internal view returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * 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. */ 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 proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _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} * * _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 the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT /// @title ERC721 Enumerable Extension // LICENSE // ERC721.sol modifies OpenZeppelin's ERC721Enumerable.sol: // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/6618f9f18424ade44116d0221719f4c93be6a078/contracts/token/ERC721/extensions/ERC721Enumerable.sol // // ERC721Enumerable.sol source code copyright OpenZeppelin licensed under the MIT License. // With modifications by Nounders DAO. // // MODIFICATIONS: // Consumes modified `ERC721` contract. See notes in `ERC721.sol`. pragma solidity ^0.8.0; import './ERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds'); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), 'ERC721Enumerable: global index out of bounds'); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT /// @title ERC721 Token Implementation // LICENSE // ERC721.sol modifies OpenZeppelin's ERC721.sol: // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/6618f9f18424ade44116d0221719f4c93be6a078/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.6; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), 'ERC721: balance query for the zero address'); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), 'ERC721: owner query for nonexistent token'); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), '.json')) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, 'ERC721: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721: approve caller is not owner nor approved for all' ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), 'ERC721: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), 'ERC721: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved'); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved'); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer'); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), 'ERC721: operator query for nonexistent token'); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId`, transfers it to `to` * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 tokenId ) internal virtual { _safeMint(to, tokenId, ''); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer' ); } /** * @dev Mints `tokenId`, transfers it to `to`, and emits two log events - * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint( address to, uint256 tokenId ) internal virtual { require(to != address(0), 'ERC721: mint to the zero address'); require(!_exists(tokenId), 'ERC721: token already minted'); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own'); require(to != address(0), 'ERC721: transfer to the zero address'); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address[]","name":"founders","type":"address[]"},{"internalType":"address","name":"reserved","type":"address"},{"internalType":"uint128","name":"foundersAlloc","type":"uint128"},{"internalType":"uint128","name":"reservedAlloc","type":"uint128"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_STAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimant","type":"address"}],"name":"isAlreadyClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"address","name":"claimant","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"public_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stage","type":"uint256"}],"name":"setMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"votesToDelegate","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelist_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6000601155610100604052603660a08181529062004b1b60c03960149062000028908262000d84565b5060405180606001604052806035815260200162004bcb6035913960159062000052908262000d84565b503480156200006057600080fd5b5060405162004c3738038062004c37833981016040819052620000839162000e85565b6040518060400160405280600f81526020016e2634b13930b93c9027b731b430b4b760891b815250604051806040016040528060038152602001624c4f4360e81b8152508160009081620000d8919062000d84565b506001620000e7828262000d84565b50505062000104620000fe6200020d60201b60201c565b62000211565b608085905260005b84518110156200019d5760005b836001600160801b03168110156200018757601280549060006200013d8362000fb3565b9190505550620001728683815181106200015b576200015b62000fcf565b60200260200101516012546200026360201b60201c565b806200017e8162000fb3565b91505062000119565b5080620001948162000fb3565b9150506200010c565b5060005b816001600160801b0316811015620001f35760128054906000620001c58362000fb3565b9190505550620001de846012546200026360201b60201c565b80620001ea8162000fb3565b915050620001a1565b506200020233610258620003bd565b505050505062001104565b3390565b601080546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002bf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b031615620003265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002b6565b6200033460008383620004be565b6001600160a01b03821660009081526003602052604081208054600192906200035f90849062000fe5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6127106001600160601b03821611156200042d5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620002b6565b6001600160a01b038216620004855760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620002b6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b620004d6838383620004fd60201b62001edd1760201c565b620004f8620004e584620005d9565b620004f084620005d9565b60016200060d565b505050565b62000515838383620004f860201b62000c781760201c565b6001600160a01b03831662000573576200056d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000599565b816001600160a01b0316836001600160a01b0316146200059957620005998382620007d9565b6001600160a01b038216620005b357620004f88162000886565b826001600160a01b0316826001600160a01b031614620004f857620004f8828262000940565b6001600160a01b038082166000908152600a6020526040812054909116801562000604578062000606565b825b9392505050565b816001600160a01b0316836001600160a01b0316141580156200063957506000816001600160601b0316115b15620004f8576001600160a01b038316156200070a576001600160a01b0383166000908152600c602052604081205463ffffffff1690816200067d576000620006cc565b6001600160a01b0385166000908152600b6020526040812090620006a360018562000ffb565b63ffffffff16815260208101919091526040016000205464010000000090046001600160601b03165b90506000620006f6828560405180606001604052806037815260200162004c006037913962000991565b90506200070686848484620009e0565b5050505b6001600160a01b03821615620004f8576001600160a01b0382166000908152600c602052604081205463ffffffff1690816200074857600062000797565b6001600160a01b0384166000908152600b60205260408120906200076e60018562000ffb565b63ffffffff16815260208101919091526040016000205464010000000090046001600160601b03165b90506000620007c1828560405180606001604052806036815260200162004b516036913962000bd7565b9050620007d185848484620009e0565b505050505050565b60006001620007f38462000c2960201b620010f41760201c565b620007ff919062001022565b60008381526007602052604090205490915080821462000853576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906200089a9060019062001022565b60008381526009602052604081205460088054939450909284908110620008c557620008c562000fcf565b906000526020600020015490508060088381548110620008e957620008e962000fcf565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000924576200092462001038565b6001900381819060005260206000200160009055905550505050565b6000620009588362000c2960201b620010f41760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000836001600160601b0316836001600160601b031611158290620009cb5760405162461bcd60e51b8152600401620002b691906200104e565b50620009d883856200109e565b949350505050565b600062000a074360405180608001604052806044815260200162004b876044913962000cb2565b905060008463ffffffff1611801562000a6457506001600160a01b0385166000908152600b6020526040812063ffffffff83169162000a4860018862000ffb565b63ffffffff908116825260208201929092526040016000205416145b1562000ad7576001600160a01b0385166000908152600b60205260408120839162000a9160018862000ffb565b63ffffffff168152602081019190915260400160002080546001600160601b039290921664010000000002600160201b600160801b031990921691909117905562000b82565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000908152600b82528681208b8616825290915294909420925183549451909116640100000000026001600160801b031990941691161791909117905562000b51846001620010c1565b6001600160a01b0386166000908152600c60205260409020805463ffffffff191663ffffffff929092169190911790555b604080516001600160601b038086168252841660208201526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b60008062000be68486620010e1565b9050846001600160601b0316816001600160601b03161015839062000c205760405162461bcd60e51b8152600401620002b691906200104e565b50949350505050565b60006001600160a01b03821662000c965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620002b6565b506001600160a01b031660009081526003602052604090205490565b600081640100000000841062000cdd5760405162461bcd60e51b8152600401620002b691906200104e565b508290505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000d1357607f821691505b60208210810362000d3457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004f857600081815260208120601f850160051c8101602086101562000d635750805b601f850160051c820191505b81811015620007d15782815560010162000d6f565b81516001600160401b0381111562000da05762000da062000ce8565b62000db88162000db1845462000cfe565b8462000d3a565b602080601f83116001811462000df0576000841562000dd75750858301515b600019600386901b1c1916600185901b178555620007d1565b600085815260208120601f198616915b8281101562000e215788860151825594840194600190910190840162000e00565b508582101562000e405787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b038116811462000e6857600080fd5b919050565b80516001600160801b038116811462000e6857600080fd5b600080600080600060a0868803121562000e9e57600080fd5b8551602080880151919650906001600160401b038082111562000ec057600080fd5b818901915089601f83011262000ed557600080fd5b81518181111562000eea5762000eea62000ce8565b8060051b604051601f19603f8301168101818110858211171562000f125762000f1262000ce8565b60405291825284820192508381018501918c83111562000f3157600080fd5b938501935b8285101562000f5a5762000f4a8562000e50565b8452938501939285019262000f36565b80995050505050505062000f716040870162000e50565b925062000f816060870162000e6d565b915062000f916080870162000e6d565b90509295509295909350565b634e487b7160e01b600052601160045260246000fd5b60006001820162000fc85762000fc862000f9d565b5060010190565b634e487b7160e01b600052603260045260246000fd5b8082018082111562000ce25762000ce262000f9d565b63ffffffff8281168282160390808211156200101b576200101b62000f9d565b5092915050565b8181038181111562000ce25762000ce262000f9d565b634e487b7160e01b600052603160045260246000fd5b600060208083528351808285015260005b818110156200107d578581018301518582016040015282016200105f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160601b038281168282160390808211156200101b576200101b62000f9d565b63ffffffff8181168382160190808211156200101b576200101b62000f9d565b6001600160601b038181168382160190808211156200101b576200101b62000f9d565b6080516139f462001127600039600081816104a60152611daa01526139f46000f3fe6080604052600436106102c95760003560e01c806375794a3c11610175578063c3cda520116100dc578063e7a324dc11610095578063e985e9c51161006f578063e985e9c514610908578063f1127ed814610951578063f2fde38b146109c5578063fa30297e146109e557600080fd5b8063e7a324dc1461089f578063e8a3d485146108d3578063e9580e91146108e857600080fd5b8063c3cda520146107ff578063c87b56dd1461081f578063cab6b4ef1461083f578063d547cfb714610855578063debefaa61461086a578063e086e5ec1461088a57600080fd5b8063a1190a361161012e578063a1190a3614610750578063a22cb46514610770578063b4b5ea5714610790578063b88d4fde146107b0578063bf980a7a146107d0578063c002d23d146107e357600080fd5b806375794a3c14610682578063782d6fe1146106985780637ecebe00146106d05780638da5cb5b146106fd578063938e3d7b1461071b57806395d89b411461073b57600080fd5b80632f745c5911610234578063587cde1e116101ed57806366d38ba9116101c757806366d38ba9146105e55780636fcfff451461060557806370a082311461064d578063715018a61461066d57600080fd5b8063587cde1e146105855780635c19a95c146105a55780636352211e146105c557600080fd5b80632f745c59146104c8578063313ce567146104e857806332cb6b0c1461050f57806342842e0e146105255780634f6ccce71461054557806355f804b31461056557600080fd5b806318160ddd1161028657806318160ddd146103da57806320606b70146103f957806323b872dd1461042d5780632502165e1461044d5780632a55205a146104555780632eb4a7ab1461049457600080fd5b806301ffc9a7146102ce57806302fa7c47146103035780630591755b1461032557806306fdde0314610360578063081812fc14610382578063095ea7b3146103ba575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612fdb565b610a15565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e366004613014565b610a26565b005b34801561033157600080fd5b506102ee610340366004613057565b6001600160a01b031660009081526013602052604090205460ff16151590565b34801561036c57600080fd5b50610375610a3c565b6040516102fa91906130c2565b34801561038e57600080fd5b506103a261039d3660046130d5565b610ace565b6040516001600160a01b0390911681526020016102fa565b3480156103c657600080fd5b506103236103d53660046130ee565b610b68565b3480156103e657600080fd5b506008545b6040519081526020016102fa565b34801561040557600080fd5b506103eb7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561043957600080fd5b50610323610448366004613118565b610c7d565b610323610cae565b34801561046157600080fd5b50610475610470366004613154565b610e1a565b604080516001600160a01b0390931683526020830191909152016102fa565b3480156104a057600080fd5b506103eb7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104d457600080fd5b506103eb6104e33660046130ee565b610ec8565b3480156104f457600080fd5b506104fd600081565b60405160ff90911681526020016102fa565b34801561051b57600080fd5b506103eb61015e81565b34801561053157600080fd5b50610323610540366004613118565b610f5e565b34801561055157600080fd5b506103eb6105603660046130d5565b610f79565b34801561057157600080fd5b50610323610580366004613202565b61100c565b34801561059157600080fd5b506103a26105a0366004613057565b611020565b3480156105b157600080fd5b506103236105c0366004613057565b611052565b3480156105d157600080fd5b506103a26105e03660046130d5565b611070565b3480156105f157600080fd5b506103236106003660046130d5565b6110e7565b34801561061157600080fd5b50610638610620366004613057565b600c6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016102fa565b34801561065957600080fd5b506103eb610668366004613057565b6110f4565b34801561067957600080fd5b5061032361117b565b34801561068e57600080fd5b506103eb60125481565b3480156106a457600080fd5b506106b86106b33660046130ee565b61118d565b6040516001600160601b0390911681526020016102fa565b3480156106dc57600080fd5b506103eb6106eb366004613057565b600d6020526000908152604090205481565b34801561070957600080fd5b506010546001600160a01b03166103a2565b34801561072757600080fd5b50610323610736366004613202565b61142d565b34801561074757600080fd5b50610375611441565b34801561075c57600080fd5b5061032361076b366004613057565b611450565b34801561077c57600080fd5b5061032361078b366004613259565b6115a3565b34801561079c57600080fd5b506106b86107ab366004613057565b611667565b3480156107bc57600080fd5b506103236107cb366004613285565b6116e4565b6103236107de366004613346565b611716565b3480156107ef57600080fd5b506103eb6706f05b59d3b2000081565b34801561080b57600080fd5b5061032361081a366004613388565b6118d3565b34801561082b57600080fd5b5061037561083a3660046130d5565b611bd1565b34801561084b57600080fd5b506103eb60115481565b34801561086157600080fd5b50610375611cab565b34801561087657600080fd5b506102ee6108853660046133e8565b611d39565b34801561089657600080fd5b50610323611de3565b3480156108ab57600080fd5b506103eb7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b3480156108df57600080fd5b50610375611e2c565b3480156108f457600080fd5b506106b8610903366004613057565b611e3b565b34801561091457600080fd5b506102ee61092336600461343c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561095d57600080fd5b506109a161096c36600461346f565b600b60209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6040805163ffffffff90931683526001600160601b039091166020830152016102fa565b3480156109d157600080fd5b506103236109e0366004613057565b611e67565b3480156109f157600080fd5b506102ee610a00366004613057565b60136020526000908152604090205460ff1681565b6000610a2082611f95565b92915050565b610a2e611fba565b610a388282612014565b5050565b606060008054610a4b906134a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a77906134a4565b8015610ac45780601f10610a9957610100808354040283529160200191610ac4565b820191906000526020600020905b815481529060010190602001808311610aa757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b7382611070565b9050806001600160a01b0316836001600160a01b031603610be05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b43565b336001600160a01b0382161480610bfc5750610bfc8133610923565b610c6e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b43565b610c788383612111565b505050565b610c87338261217f565b610ca35760405162461bcd60e51b8152600401610b43906134de565b610c78838383612276565b61015e60125410610cee5760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d1959081bdd5d60b21b6044820152606401610b43565b60026011541015610d415760405162461bcd60e51b815260206004820152601760248201527f7075626c6963206d696e74696e67206e6f74206f70656e0000000000000000006044820152606401610b43565b6706f05b59d3b20000341015610d8e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b6044820152606401610b43565b3360009081526013602052604090205460ff1615610ddf5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610b43565b336000908152601360205260408120805460ff191660011790556012805491610e0783613545565b9190505550610e1833601254612421565b565b6000828152600f602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610e8f575060408051808201909152600e546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610eae906001600160601b03168761355e565b610eb8919061358b565b91519350909150505b9250929050565b6000610ed3836110f4565b8210610f355760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b43565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c78838383604051806020016040528060008152506116e4565b6000610f8460085490565b8210610fe75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b43565b60088281548110610ffa57610ffa61359f565b90600052602060002001549050919050565b611014611fba565b6014610a3882826135fb565b6001600160a01b038082166000908152600a60205260408120549091168015611049578061104b565b825b9392505050565b6001600160a01b0381166110635750335b61106d338261256f565b50565b6000818152600260205260408120546001600160a01b031680610a205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b43565b6110ef611fba565b601155565b60006001600160a01b03821661115f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b43565b506001600160a01b031660009081526003602052604090205490565b611183611fba565b610e1860006125ef565b60004382106112045760405162461bcd60e51b815260206004820152603760248201527f455243373231436865636b706f696e7461626c653a3a6765745072696f72566f60448201527f7465733a206e6f74207965742064657465726d696e65640000000000000000006064820152608401610b43565b6001600160a01b0383166000908152600c602052604081205463ffffffff1690819003611235576000915050610a20565b6001600160a01b0384166000908152600b60205260408120849161125a6001856136bb565b63ffffffff908116825260208201929092526040016000205416116112cd576001600160a01b0384166000908152600b602052604081209061129d6001846136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169150610a209050565b6001600160a01b0384166000908152600b6020908152604080832083805290915290205463ffffffff16831015611308576000915050610a20565b6000806113166001846136bb565b90505b8163ffffffff168163ffffffff1611156113e8576000600261133b84846136bb565b61134591906136df565b61134f90836136bb565b6001600160a01b0388166000908152600b6020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b0316918101919091529192508790036113bc57602001519450610a209350505050565b805163ffffffff168711156113d3578193506113e1565b6113de6001836136bb565b92505b5050611319565b506001600160a01b0385166000908152600b6020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b611435611fba565b6015610a3882826135fb565b606060018054610a4b906134a4565b611458611fba565b6001600160a01b0381166114965760405162461bcd60e51b8152602060048201526005602482015264217a65726f60d81b6044820152606401610b43565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115039190613702565b90508015610c7857816001600160a01b031663a9059cbb61152c6010546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611579573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159d919061371b565b50505050565b336001600160a01b038316036115fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b43565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b0381166000908152600c602052604081205463ffffffff168061169257600061104b565b6001600160a01b0383166000908152600b60205260408120906116b66001846136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169392505050565b6116ee338361217f565b61170a5760405162461bcd60e51b8152600401610b43906134de565b61159d84848484612641565b600160115410156117695760405162461bcd60e51b815260206004820152601a60248201527f77686974656c697374206d696e74696e67206e6f74206f70656e0000000000006044820152606401610b43565b61015e601254106117a95760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d1959081bdd5d60b21b6044820152606401610b43565b3360009081526013602052604090205460ff16156117fb5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610b43565b336000818152601360205260409020805460ff191660011790556118229083908390611d39565b6118655760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610b43565b6706f05b59d3b200003410156118b25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b6044820152606401610b43565b601280549060006118c283613545565b9190505550610a3833601254612421565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666118fe610a3c565b8051906020012061190c4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611a38573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611aba5760405162461bcd60e51b815260206004820152603660248201527f455243373231436865636b706f696e7461626c653a3a64656c656761746542796044820152755369673a20696e76616c6964207369676e617475726560501b6064820152608401610b43565b6001600160a01b0381166000908152600d60205260408120805491611ade83613545565b919050558914611b4b5760405162461bcd60e51b815260206004820152603260248201527f455243373231436865636b706f696e7461626c653a3a64656c656761746542796044820152715369673a20696e76616c6964206e6f6e636560701b6064820152608401610b43565b87421115611bba5760405162461bcd60e51b815260206004820152603660248201527f455243373231436865636b706f696e7461626c653a3a64656c6567617465427960448201527514da59ce881cda59db985d1d5c9948195e1c1a5c995960521b6064820152608401610b43565b611bc4818b61256f565b505050505b505050505050565b6000818152600260205260409020546060906001600160a01b0316611c505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b43565b6000611c5a612674565b90506000815111611c7a576040518060200160405280600081525061104b565b80611c8484612683565b604051602001611c95929190613738565b6040516020818303038152906040529392505050565b60148054611cb8906134a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce4906134a4565b8015611d315780601f10611d0657610100808354040283529160200191611d31565b820191906000526020600020905b815481529060010190602001808311611d1457829003601f168201915b505050505081565b6040516bffffffffffffffffffffffff19606083901b1660208201526000908190603401604051602081830303815290604052805190602001209050611dd58585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f000000000000000000000000000000000000000000000000000000000000000092508591506127849050565b151560011495945050505050565b611deb611fba565b47801561106d576010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a38573d6000803e3d6000fd5b606060158054610a4b906134a4565b6000610a20611e49836110f4565b6040518060600160405280603d815260200161394b603d913961279a565b611e6f611fba565b6001600160a01b038116611ed45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b61106d816125ef565b6001600160a01b038316611f3857611f3381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f5b565b816001600160a01b0316836001600160a01b031614611f5b57611f5b83826127c9565b6001600160a01b038216611f7257610c7881612866565b826001600160a01b0316826001600160a01b031614610c7857610c788282612915565b60006001600160e01b0319821663152a902d60e11b1480610a205750610a2082612959565b6010546001600160a01b03163314610e185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b43565b6127106001600160601b03821611156120825760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b43565b6001600160a01b0382166120d85760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b43565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061214682611070565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166121f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b600061220383611070565b9050806001600160a01b0316846001600160a01b0316148061223e5750836001600160a01b031661223384610ace565b6001600160a01b0316145b8061226e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661228982611070565b6001600160a01b0316146122f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b43565b6001600160a01b0382166123535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b61235e83838361297e565b612369600082612111565b6001600160a01b0383166000908152600360205260408120805460019290612392908490613777565b90915550506001600160a01b03821660009081526003602052604081208054600192906123c090849061378a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166124775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b43565b6000818152600260205260409020546001600160a01b0316156124dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b43565b6124e86000838361297e565b6001600160a01b038216600090815260036020526040812080546001929061251190849061378a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061257a83611020565b6001600160a01b038481166000818152600a602052604080822080546001600160a01b031916888616908117909155905194955093928516927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a460006125e284611e3b565b905061159d8284836129a1565b601080546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61264c848484612276565b61265884848484612b4d565b61159d5760405162461bcd60e51b8152600401610b439061379d565b606060148054610a4b906134a4565b6060816000036126aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126d457806126be81613545565b91506126cd9050600a8361358b565b91506126ae565b60008167ffffffffffffffff8111156126ef576126ef613176565b6040519080825280601f01601f191660200182016040528015612719576020820181803683370190505b5090505b841561226e5761272e600183613777565b915061273b600a866137ef565b61274690603061378a565b60f81b81838151811061275b5761275b61359f565b60200101906001600160f81b031916908160001a90535061277d600a8661358b565b945061271d565b6000826127918584612c4e565b14949350505050565b600081600160601b84106127c15760405162461bcd60e51b8152600401610b4391906130c2565b509192915050565b600060016127d6846110f4565b6127e09190613777565b600083815260076020526040902054909150808214612833576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061287890600190613777565b600083815260096020526040812054600880549394509092849081106128a0576128a061359f565b9060005260206000200154905080600883815481106128c1576128c161359f565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128f9576128f9613803565b6001900381819060005260206000200160009055905550505050565b6000612920836110f4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b0319821663780e9d6360e01b1480610a205750610a2082612c9b565b612989838383611edd565b610c7861299584611020565b61299e84611020565b60015b816001600160a01b0316836001600160a01b0316141580156129cc57506000816001600160601b0316115b15610c78576001600160a01b03831615612a91576001600160a01b0383166000908152600c602052604081205463ffffffff169081612a0c576000612a58565b6001600160a01b0385166000908152600b6020526040812090612a306001856136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b90506000612a7f828560405180606001604052806037815260200161398860379139612ceb565b9050612a8d86848484612d2d565b5050505b6001600160a01b03821615610c78576001600160a01b0382166000908152600c602052604081205463ffffffff169081612acc576000612b18565b6001600160a01b0384166000908152600b6020526040812090612af06001856136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b90506000612b3f82856040518060600160405280603681526020016138d160369139612f25565b9050611bc985848484612d2d565b60006001600160a01b0384163b15612c4357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b91903390899088908890600401613819565b6020604051808303816000875af1925050508015612bcc575060408051601f3d908101601f19168201909252612bc991810190613856565b60015b612c29573d808015612bfa576040519150601f19603f3d011682016040523d82523d6000602084013e612bff565b606091505b508051600003612c215760405162461bcd60e51b8152600401610b439061379d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061226e565b506001949350505050565b600081815b8451811015612c9357612c7f82868381518110612c7257612c7261359f565b6020026020010151612f72565b915080612c8b81613545565b915050612c53565b509392505050565b60006001600160e01b031982166380ac58cd60e01b1480612ccc57506001600160e01b03198216635b5e139f60e01b145b80610a2057506301ffc9a760e01b6001600160e01b0319831614610a20565b6000836001600160601b0316836001600160601b031611158290612d225760405162461bcd60e51b8152600401610b4391906130c2565b5061226e8385613873565b6000612d514360405180608001604052806044815260200161390760449139612f9e565b905060008463ffffffff16118015612dab57506001600160a01b0385166000908152600b6020526040812063ffffffff831691612d8f6001886136bb565b63ffffffff908116825260208201929092526040016000205416145b15612e1f576001600160a01b0385166000908152600b602052604081208391612dd56001886136bb565b63ffffffff168152602081019190915260400160002080546001600160601b0392909216600160201b026fffffffffffffffffffffffff0000000019909216919091179055612ed0565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000908152600b82528681208b8616825290915294909420925183549451909116600160201b026fffffffffffffffffffffffffffffffff19909416911617919091179055612e9f846001613893565b6001600160a01b0386166000908152600c60205260409020805463ffffffff191663ffffffff929092169190911790555b604080516001600160601b038086168252841660208201526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600080612f3284866138b0565b9050846001600160601b0316816001600160601b031610158390612f695760405162461bcd60e51b8152600401610b4391906130c2565b50949350505050565b6000818310612f8e57600082815260208490526040902061104b565b5060009182526020526040902090565b600081600160201b84106127c15760405162461bcd60e51b8152600401610b4391906130c2565b6001600160e01b03198116811461106d57600080fd5b600060208284031215612fed57600080fd5b813561104b81612fc5565b80356001600160a01b038116811461300f57600080fd5b919050565b6000806040838503121561302757600080fd5b61303083612ff8565b915060208301356001600160601b038116811461304c57600080fd5b809150509250929050565b60006020828403121561306957600080fd5b61104b82612ff8565b60005b8381101561308d578181015183820152602001613075565b50506000910152565b600081518084526130ae816020860160208601613072565b601f01601f19169290920160200192915050565b60208152600061104b6020830184613096565b6000602082840312156130e757600080fd5b5035919050565b6000806040838503121561310157600080fd5b61310a83612ff8565b946020939093013593505050565b60008060006060848603121561312d57600080fd5b61313684612ff8565b925061314460208501612ff8565b9150604084013590509250925092565b6000806040838503121561316757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156131a7576131a7613176565b604051601f8501601f19908116603f011681019082821181831017156131cf576131cf613176565b816040528093508581528686860111156131e857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561321457600080fd5b813567ffffffffffffffff81111561322b57600080fd5b8201601f8101841361323c57600080fd5b61226e8482356020840161318c565b801515811461106d57600080fd5b6000806040838503121561326c57600080fd5b61327583612ff8565b9150602083013561304c8161324b565b6000806000806080858703121561329b57600080fd5b6132a485612ff8565b93506132b260208601612ff8565b925060408501359150606085013567ffffffffffffffff8111156132d557600080fd5b8501601f810187136132e657600080fd5b6132f58782356020840161318c565b91505092959194509250565b60008083601f84011261331357600080fd5b50813567ffffffffffffffff81111561332b57600080fd5b6020830191508360208260051b8501011115610ec157600080fd5b6000806020838503121561335957600080fd5b823567ffffffffffffffff81111561337057600080fd5b61337c85828601613301565b90969095509350505050565b60008060008060008060c087890312156133a157600080fd5b6133aa87612ff8565b95506020870135945060408701359350606087013560ff811681146133ce57600080fd5b9598949750929560808101359460a0909101359350915050565b6000806000604084860312156133fd57600080fd5b833567ffffffffffffffff81111561341457600080fd5b61342086828701613301565b9094509250613433905060208501612ff8565b90509250925092565b6000806040838503121561344f57600080fd5b61345883612ff8565b915061346660208401612ff8565b90509250929050565b6000806040838503121561348257600080fd5b61348b83612ff8565b9150602083013563ffffffff8116811461304c57600080fd5b600181811c908216806134b857607f821691505b6020821081036134d857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016135575761355761352f565b5060010190565b8082028115828204841417610a2057610a2061352f565b634e487b7160e01b600052601260045260246000fd5b60008261359a5761359a613575565b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610c7857600081815260208120601f850160051c810160208610156135dc5750805b601f850160051c820191505b81811015611bc9578281556001016135e8565b815167ffffffffffffffff81111561361557613615613176565b6136298161362384546134a4565b846135b5565b602080601f83116001811461365e57600084156136465750858301515b600019600386901b1c1916600185901b178555611bc9565b600085815260208120601f198616915b8281101561368d5788860151825594840194600190910190840161366e565b50858210156136ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b63ffffffff8281168282160390808211156136d8576136d861352f565b5092915050565b600063ffffffff808416806136f6576136f6613575565b92169190910492915050565b60006020828403121561371457600080fd5b5051919050565b60006020828403121561372d57600080fd5b815161104b8161324b565b6000835161374a818460208801613072565b83519083019061375e818360208801613072565b64173539b7b760d91b9101908152600501949350505050565b81810381811115610a2057610a2061352f565b80820180821115610a2057610a2061352f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826137fe576137fe613575565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061384c90830184613096565b9695505050505050565b60006020828403121561386857600080fd5b815161104b81612fc5565b6001600160601b038281168282160390808211156136d8576136d861352f565b63ffffffff8181168382160190808211156136d8576136d861352f565b6001600160601b038181168382160190808211156136d8576136d861352f56fe455243373231436865636b706f696e7461626c653a3a5f6d6f766544656c6567617465733a20616d6f756e74206f766572666c6f7773455243373231436865636b706f696e7461626c653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473455243373231436865636b706f696e7461626c653a3a766f746573546f44656c65676174653a20616d6f756e7420657863656564732039362062697473455243373231436865636b706f696e7461626c653a3a5f6d6f766544656c6567617465733a20616d6f756e7420756e646572666c6f7773a264697066735822122047491bfee7a1996aaa4ab894449aac84004463432b7effa9ab4bfb8b490aaf7764736f6c63430008110033697066733a2f2f516d5547347a41655756346d544572386d5441383332694b44734b4b515339784877637948716f345837455378552f455243373231436865636b706f696e7461626c653a3a5f6d6f766544656c6567617465733a20616d6f756e74206f766572666c6f7773455243373231436865636b706f696e7461626c653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473697066733a2f2f516d6641486e6e4d515652487176526877674a364435756a796b714a346b443371667632686669446a5461457853455243373231436865636b706f696e7461626c653a3a5f6d6f766544656c6567617465733a20616d6f756e7420756e646572666c6f7773154ae2998a5173aaa2913173c5fe107f8b03d80859842744057dd7730f261b0300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000d2669ed83ff39cf9c5ae57768d7338d425c12b7000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000cb635f56f97b1ee4e8f98e2673308712414f1ad70000000000000000000000006abf1b04337e37fd4bc4e700c674f020f9651bf1000000000000000000000000fd1b2f4399094c11e682e609013d61faf304729e
Deployed Bytecode
0x6080604052600436106102c95760003560e01c806375794a3c11610175578063c3cda520116100dc578063e7a324dc11610095578063e985e9c51161006f578063e985e9c514610908578063f1127ed814610951578063f2fde38b146109c5578063fa30297e146109e557600080fd5b8063e7a324dc1461089f578063e8a3d485146108d3578063e9580e91146108e857600080fd5b8063c3cda520146107ff578063c87b56dd1461081f578063cab6b4ef1461083f578063d547cfb714610855578063debefaa61461086a578063e086e5ec1461088a57600080fd5b8063a1190a361161012e578063a1190a3614610750578063a22cb46514610770578063b4b5ea5714610790578063b88d4fde146107b0578063bf980a7a146107d0578063c002d23d146107e357600080fd5b806375794a3c14610682578063782d6fe1146106985780637ecebe00146106d05780638da5cb5b146106fd578063938e3d7b1461071b57806395d89b411461073b57600080fd5b80632f745c5911610234578063587cde1e116101ed57806366d38ba9116101c757806366d38ba9146105e55780636fcfff451461060557806370a082311461064d578063715018a61461066d57600080fd5b8063587cde1e146105855780635c19a95c146105a55780636352211e146105c557600080fd5b80632f745c59146104c8578063313ce567146104e857806332cb6b0c1461050f57806342842e0e146105255780634f6ccce71461054557806355f804b31461056557600080fd5b806318160ddd1161028657806318160ddd146103da57806320606b70146103f957806323b872dd1461042d5780632502165e1461044d5780632a55205a146104555780632eb4a7ab1461049457600080fd5b806301ffc9a7146102ce57806302fa7c47146103035780630591755b1461032557806306fdde0314610360578063081812fc14610382578063095ea7b3146103ba575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612fdb565b610a15565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e366004613014565b610a26565b005b34801561033157600080fd5b506102ee610340366004613057565b6001600160a01b031660009081526013602052604090205460ff16151590565b34801561036c57600080fd5b50610375610a3c565b6040516102fa91906130c2565b34801561038e57600080fd5b506103a261039d3660046130d5565b610ace565b6040516001600160a01b0390911681526020016102fa565b3480156103c657600080fd5b506103236103d53660046130ee565b610b68565b3480156103e657600080fd5b506008545b6040519081526020016102fa565b34801561040557600080fd5b506103eb7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561043957600080fd5b50610323610448366004613118565b610c7d565b610323610cae565b34801561046157600080fd5b50610475610470366004613154565b610e1a565b604080516001600160a01b0390931683526020830191909152016102fa565b3480156104a057600080fd5b506103eb7f154ae2998a5173aaa2913173c5fe107f8b03d80859842744057dd7730f261b0381565b3480156104d457600080fd5b506103eb6104e33660046130ee565b610ec8565b3480156104f457600080fd5b506104fd600081565b60405160ff90911681526020016102fa565b34801561051b57600080fd5b506103eb61015e81565b34801561053157600080fd5b50610323610540366004613118565b610f5e565b34801561055157600080fd5b506103eb6105603660046130d5565b610f79565b34801561057157600080fd5b50610323610580366004613202565b61100c565b34801561059157600080fd5b506103a26105a0366004613057565b611020565b3480156105b157600080fd5b506103236105c0366004613057565b611052565b3480156105d157600080fd5b506103a26105e03660046130d5565b611070565b3480156105f157600080fd5b506103236106003660046130d5565b6110e7565b34801561061157600080fd5b50610638610620366004613057565b600c6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016102fa565b34801561065957600080fd5b506103eb610668366004613057565b6110f4565b34801561067957600080fd5b5061032361117b565b34801561068e57600080fd5b506103eb60125481565b3480156106a457600080fd5b506106b86106b33660046130ee565b61118d565b6040516001600160601b0390911681526020016102fa565b3480156106dc57600080fd5b506103eb6106eb366004613057565b600d6020526000908152604090205481565b34801561070957600080fd5b506010546001600160a01b03166103a2565b34801561072757600080fd5b50610323610736366004613202565b61142d565b34801561074757600080fd5b50610375611441565b34801561075c57600080fd5b5061032361076b366004613057565b611450565b34801561077c57600080fd5b5061032361078b366004613259565b6115a3565b34801561079c57600080fd5b506106b86107ab366004613057565b611667565b3480156107bc57600080fd5b506103236107cb366004613285565b6116e4565b6103236107de366004613346565b611716565b3480156107ef57600080fd5b506103eb6706f05b59d3b2000081565b34801561080b57600080fd5b5061032361081a366004613388565b6118d3565b34801561082b57600080fd5b5061037561083a3660046130d5565b611bd1565b34801561084b57600080fd5b506103eb60115481565b34801561086157600080fd5b50610375611cab565b34801561087657600080fd5b506102ee6108853660046133e8565b611d39565b34801561089657600080fd5b50610323611de3565b3480156108ab57600080fd5b506103eb7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b3480156108df57600080fd5b50610375611e2c565b3480156108f457600080fd5b506106b8610903366004613057565b611e3b565b34801561091457600080fd5b506102ee61092336600461343c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561095d57600080fd5b506109a161096c36600461346f565b600b60209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6040805163ffffffff90931683526001600160601b039091166020830152016102fa565b3480156109d157600080fd5b506103236109e0366004613057565b611e67565b3480156109f157600080fd5b506102ee610a00366004613057565b60136020526000908152604090205460ff1681565b6000610a2082611f95565b92915050565b610a2e611fba565b610a388282612014565b5050565b606060008054610a4b906134a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a77906134a4565b8015610ac45780601f10610a9957610100808354040283529160200191610ac4565b820191906000526020600020905b815481529060010190602001808311610aa757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b7382611070565b9050806001600160a01b0316836001600160a01b031603610be05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b43565b336001600160a01b0382161480610bfc5750610bfc8133610923565b610c6e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b43565b610c788383612111565b505050565b610c87338261217f565b610ca35760405162461bcd60e51b8152600401610b43906134de565b610c78838383612276565b61015e60125410610cee5760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d1959081bdd5d60b21b6044820152606401610b43565b60026011541015610d415760405162461bcd60e51b815260206004820152601760248201527f7075626c6963206d696e74696e67206e6f74206f70656e0000000000000000006044820152606401610b43565b6706f05b59d3b20000341015610d8e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b6044820152606401610b43565b3360009081526013602052604090205460ff1615610ddf5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610b43565b336000908152601360205260408120805460ff191660011790556012805491610e0783613545565b9190505550610e1833601254612421565b565b6000828152600f602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610e8f575060408051808201909152600e546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610eae906001600160601b03168761355e565b610eb8919061358b565b91519350909150505b9250929050565b6000610ed3836110f4565b8210610f355760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b43565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c78838383604051806020016040528060008152506116e4565b6000610f8460085490565b8210610fe75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b43565b60088281548110610ffa57610ffa61359f565b90600052602060002001549050919050565b611014611fba565b6014610a3882826135fb565b6001600160a01b038082166000908152600a60205260408120549091168015611049578061104b565b825b9392505050565b6001600160a01b0381166110635750335b61106d338261256f565b50565b6000818152600260205260408120546001600160a01b031680610a205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b43565b6110ef611fba565b601155565b60006001600160a01b03821661115f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b43565b506001600160a01b031660009081526003602052604090205490565b611183611fba565b610e1860006125ef565b60004382106112045760405162461bcd60e51b815260206004820152603760248201527f455243373231436865636b706f696e7461626c653a3a6765745072696f72566f60448201527f7465733a206e6f74207965742064657465726d696e65640000000000000000006064820152608401610b43565b6001600160a01b0383166000908152600c602052604081205463ffffffff1690819003611235576000915050610a20565b6001600160a01b0384166000908152600b60205260408120849161125a6001856136bb565b63ffffffff908116825260208201929092526040016000205416116112cd576001600160a01b0384166000908152600b602052604081209061129d6001846136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169150610a209050565b6001600160a01b0384166000908152600b6020908152604080832083805290915290205463ffffffff16831015611308576000915050610a20565b6000806113166001846136bb565b90505b8163ffffffff168163ffffffff1611156113e8576000600261133b84846136bb565b61134591906136df565b61134f90836136bb565b6001600160a01b0388166000908152600b6020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b0316918101919091529192508790036113bc57602001519450610a209350505050565b805163ffffffff168711156113d3578193506113e1565b6113de6001836136bb565b92505b5050611319565b506001600160a01b0385166000908152600b6020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b611435611fba565b6015610a3882826135fb565b606060018054610a4b906134a4565b611458611fba565b6001600160a01b0381166114965760405162461bcd60e51b8152602060048201526005602482015264217a65726f60d81b6044820152606401610b43565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115039190613702565b90508015610c7857816001600160a01b031663a9059cbb61152c6010546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611579573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159d919061371b565b50505050565b336001600160a01b038316036115fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b43565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b0381166000908152600c602052604081205463ffffffff168061169257600061104b565b6001600160a01b0383166000908152600b60205260408120906116b66001846136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169392505050565b6116ee338361217f565b61170a5760405162461bcd60e51b8152600401610b43906134de565b61159d84848484612641565b600160115410156117695760405162461bcd60e51b815260206004820152601a60248201527f77686974656c697374206d696e74696e67206e6f74206f70656e0000000000006044820152606401610b43565b61015e601254106117a95760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d1959081bdd5d60b21b6044820152606401610b43565b3360009081526013602052604090205460ff16156117fb5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610b43565b336000818152601360205260409020805460ff191660011790556118229083908390611d39565b6118655760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610b43565b6706f05b59d3b200003410156118b25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b6044820152606401610b43565b601280549060006118c283613545565b9190505550610a3833601254612421565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666118fe610a3c565b8051906020012061190c4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611a38573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611aba5760405162461bcd60e51b815260206004820152603660248201527f455243373231436865636b706f696e7461626c653a3a64656c656761746542796044820152755369673a20696e76616c6964207369676e617475726560501b6064820152608401610b43565b6001600160a01b0381166000908152600d60205260408120805491611ade83613545565b919050558914611b4b5760405162461bcd60e51b815260206004820152603260248201527f455243373231436865636b706f696e7461626c653a3a64656c656761746542796044820152715369673a20696e76616c6964206e6f6e636560701b6064820152608401610b43565b87421115611bba5760405162461bcd60e51b815260206004820152603660248201527f455243373231436865636b706f696e7461626c653a3a64656c6567617465427960448201527514da59ce881cda59db985d1d5c9948195e1c1a5c995960521b6064820152608401610b43565b611bc4818b61256f565b505050505b505050505050565b6000818152600260205260409020546060906001600160a01b0316611c505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b43565b6000611c5a612674565b90506000815111611c7a576040518060200160405280600081525061104b565b80611c8484612683565b604051602001611c95929190613738565b6040516020818303038152906040529392505050565b60148054611cb8906134a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce4906134a4565b8015611d315780601f10611d0657610100808354040283529160200191611d31565b820191906000526020600020905b815481529060010190602001808311611d1457829003601f168201915b505050505081565b6040516bffffffffffffffffffffffff19606083901b1660208201526000908190603401604051602081830303815290604052805190602001209050611dd58585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f154ae2998a5173aaa2913173c5fe107f8b03d80859842744057dd7730f261b0392508591506127849050565b151560011495945050505050565b611deb611fba565b47801561106d576010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a38573d6000803e3d6000fd5b606060158054610a4b906134a4565b6000610a20611e49836110f4565b6040518060600160405280603d815260200161394b603d913961279a565b611e6f611fba565b6001600160a01b038116611ed45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b61106d816125ef565b6001600160a01b038316611f3857611f3381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f5b565b816001600160a01b0316836001600160a01b031614611f5b57611f5b83826127c9565b6001600160a01b038216611f7257610c7881612866565b826001600160a01b0316826001600160a01b031614610c7857610c788282612915565b60006001600160e01b0319821663152a902d60e11b1480610a205750610a2082612959565b6010546001600160a01b03163314610e185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b43565b6127106001600160601b03821611156120825760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b43565b6001600160a01b0382166120d85760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b43565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061214682611070565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166121f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b600061220383611070565b9050806001600160a01b0316846001600160a01b0316148061223e5750836001600160a01b031661223384610ace565b6001600160a01b0316145b8061226e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661228982611070565b6001600160a01b0316146122f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b43565b6001600160a01b0382166123535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b61235e83838361297e565b612369600082612111565b6001600160a01b0383166000908152600360205260408120805460019290612392908490613777565b90915550506001600160a01b03821660009081526003602052604081208054600192906123c090849061378a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166124775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b43565b6000818152600260205260409020546001600160a01b0316156124dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b43565b6124e86000838361297e565b6001600160a01b038216600090815260036020526040812080546001929061251190849061378a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061257a83611020565b6001600160a01b038481166000818152600a602052604080822080546001600160a01b031916888616908117909155905194955093928516927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a460006125e284611e3b565b905061159d8284836129a1565b601080546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61264c848484612276565b61265884848484612b4d565b61159d5760405162461bcd60e51b8152600401610b439061379d565b606060148054610a4b906134a4565b6060816000036126aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126d457806126be81613545565b91506126cd9050600a8361358b565b91506126ae565b60008167ffffffffffffffff8111156126ef576126ef613176565b6040519080825280601f01601f191660200182016040528015612719576020820181803683370190505b5090505b841561226e5761272e600183613777565b915061273b600a866137ef565b61274690603061378a565b60f81b81838151811061275b5761275b61359f565b60200101906001600160f81b031916908160001a90535061277d600a8661358b565b945061271d565b6000826127918584612c4e565b14949350505050565b600081600160601b84106127c15760405162461bcd60e51b8152600401610b4391906130c2565b509192915050565b600060016127d6846110f4565b6127e09190613777565b600083815260076020526040902054909150808214612833576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061287890600190613777565b600083815260096020526040812054600880549394509092849081106128a0576128a061359f565b9060005260206000200154905080600883815481106128c1576128c161359f565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128f9576128f9613803565b6001900381819060005260206000200160009055905550505050565b6000612920836110f4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b0319821663780e9d6360e01b1480610a205750610a2082612c9b565b612989838383611edd565b610c7861299584611020565b61299e84611020565b60015b816001600160a01b0316836001600160a01b0316141580156129cc57506000816001600160601b0316115b15610c78576001600160a01b03831615612a91576001600160a01b0383166000908152600c602052604081205463ffffffff169081612a0c576000612a58565b6001600160a01b0385166000908152600b6020526040812090612a306001856136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b90506000612a7f828560405180606001604052806037815260200161398860379139612ceb565b9050612a8d86848484612d2d565b5050505b6001600160a01b03821615610c78576001600160a01b0382166000908152600c602052604081205463ffffffff169081612acc576000612b18565b6001600160a01b0384166000908152600b6020526040812090612af06001856136bb565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b90506000612b3f82856040518060600160405280603681526020016138d160369139612f25565b9050611bc985848484612d2d565b60006001600160a01b0384163b15612c4357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b91903390899088908890600401613819565b6020604051808303816000875af1925050508015612bcc575060408051601f3d908101601f19168201909252612bc991810190613856565b60015b612c29573d808015612bfa576040519150601f19603f3d011682016040523d82523d6000602084013e612bff565b606091505b508051600003612c215760405162461bcd60e51b8152600401610b439061379d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061226e565b506001949350505050565b600081815b8451811015612c9357612c7f82868381518110612c7257612c7261359f565b6020026020010151612f72565b915080612c8b81613545565b915050612c53565b509392505050565b60006001600160e01b031982166380ac58cd60e01b1480612ccc57506001600160e01b03198216635b5e139f60e01b145b80610a2057506301ffc9a760e01b6001600160e01b0319831614610a20565b6000836001600160601b0316836001600160601b031611158290612d225760405162461bcd60e51b8152600401610b4391906130c2565b5061226e8385613873565b6000612d514360405180608001604052806044815260200161390760449139612f9e565b905060008463ffffffff16118015612dab57506001600160a01b0385166000908152600b6020526040812063ffffffff831691612d8f6001886136bb565b63ffffffff908116825260208201929092526040016000205416145b15612e1f576001600160a01b0385166000908152600b602052604081208391612dd56001886136bb565b63ffffffff168152602081019190915260400160002080546001600160601b0392909216600160201b026fffffffffffffffffffffffff0000000019909216919091179055612ed0565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000908152600b82528681208b8616825290915294909420925183549451909116600160201b026fffffffffffffffffffffffffffffffff19909416911617919091179055612e9f846001613893565b6001600160a01b0386166000908152600c60205260409020805463ffffffff191663ffffffff929092169190911790555b604080516001600160601b038086168252841660208201526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600080612f3284866138b0565b9050846001600160601b0316816001600160601b031610158390612f695760405162461bcd60e51b8152600401610b4391906130c2565b50949350505050565b6000818310612f8e57600082815260208490526040902061104b565b5060009182526020526040902090565b600081600160201b84106127c15760405162461bcd60e51b8152600401610b4391906130c2565b6001600160e01b03198116811461106d57600080fd5b600060208284031215612fed57600080fd5b813561104b81612fc5565b80356001600160a01b038116811461300f57600080fd5b919050565b6000806040838503121561302757600080fd5b61303083612ff8565b915060208301356001600160601b038116811461304c57600080fd5b809150509250929050565b60006020828403121561306957600080fd5b61104b82612ff8565b60005b8381101561308d578181015183820152602001613075565b50506000910152565b600081518084526130ae816020860160208601613072565b601f01601f19169290920160200192915050565b60208152600061104b6020830184613096565b6000602082840312156130e757600080fd5b5035919050565b6000806040838503121561310157600080fd5b61310a83612ff8565b946020939093013593505050565b60008060006060848603121561312d57600080fd5b61313684612ff8565b925061314460208501612ff8565b9150604084013590509250925092565b6000806040838503121561316757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156131a7576131a7613176565b604051601f8501601f19908116603f011681019082821181831017156131cf576131cf613176565b816040528093508581528686860111156131e857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561321457600080fd5b813567ffffffffffffffff81111561322b57600080fd5b8201601f8101841361323c57600080fd5b61226e8482356020840161318c565b801515811461106d57600080fd5b6000806040838503121561326c57600080fd5b61327583612ff8565b9150602083013561304c8161324b565b6000806000806080858703121561329b57600080fd5b6132a485612ff8565b93506132b260208601612ff8565b925060408501359150606085013567ffffffffffffffff8111156132d557600080fd5b8501601f810187136132e657600080fd5b6132f58782356020840161318c565b91505092959194509250565b60008083601f84011261331357600080fd5b50813567ffffffffffffffff81111561332b57600080fd5b6020830191508360208260051b8501011115610ec157600080fd5b6000806020838503121561335957600080fd5b823567ffffffffffffffff81111561337057600080fd5b61337c85828601613301565b90969095509350505050565b60008060008060008060c087890312156133a157600080fd5b6133aa87612ff8565b95506020870135945060408701359350606087013560ff811681146133ce57600080fd5b9598949750929560808101359460a0909101359350915050565b6000806000604084860312156133fd57600080fd5b833567ffffffffffffffff81111561341457600080fd5b61342086828701613301565b9094509250613433905060208501612ff8565b90509250925092565b6000806040838503121561344f57600080fd5b61345883612ff8565b915061346660208401612ff8565b90509250929050565b6000806040838503121561348257600080fd5b61348b83612ff8565b9150602083013563ffffffff8116811461304c57600080fd5b600181811c908216806134b857607f821691505b6020821081036134d857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016135575761355761352f565b5060010190565b8082028115828204841417610a2057610a2061352f565b634e487b7160e01b600052601260045260246000fd5b60008261359a5761359a613575565b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610c7857600081815260208120601f850160051c810160208610156135dc5750805b601f850160051c820191505b81811015611bc9578281556001016135e8565b815167ffffffffffffffff81111561361557613615613176565b6136298161362384546134a4565b846135b5565b602080601f83116001811461365e57600084156136465750858301515b600019600386901b1c1916600185901b178555611bc9565b600085815260208120601f198616915b8281101561368d5788860151825594840194600190910190840161366e565b50858210156136ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b63ffffffff8281168282160390808211156136d8576136d861352f565b5092915050565b600063ffffffff808416806136f6576136f6613575565b92169190910492915050565b60006020828403121561371457600080fd5b5051919050565b60006020828403121561372d57600080fd5b815161104b8161324b565b6000835161374a818460208801613072565b83519083019061375e818360208801613072565b64173539b7b760d91b9101908152600501949350505050565b81810381811115610a2057610a2061352f565b80820180821115610a2057610a2061352f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826137fe576137fe613575565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061384c90830184613096565b9695505050505050565b60006020828403121561386857600080fd5b815161104b81612fc5565b6001600160601b038281168282160390808211156136d8576136d861352f565b63ffffffff8181168382160190808211156136d8576136d861352f565b6001600160601b038181168382160190808211156136d8576136d861352f56fe455243373231436865636b706f696e7461626c653a3a5f6d6f766544656c6567617465733a20616d6f756e74206f766572666c6f7773455243373231436865636b706f696e7461626c653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473455243373231436865636b706f696e7461626c653a3a766f746573546f44656c65676174653a20616d6f756e7420657863656564732039362062697473455243373231436865636b706f696e7461626c653a3a5f6d6f766544656c6567617465733a20616d6f756e7420756e646572666c6f7773a264697066735822122047491bfee7a1996aaa4ab894449aac84004463432b7effa9ab4bfb8b490aaf7764736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
154ae2998a5173aaa2913173c5fe107f8b03d80859842744057dd7730f261b0300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000d2669ed83ff39cf9c5ae57768d7338d425c12b7000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000cb635f56f97b1ee4e8f98e2673308712414f1ad70000000000000000000000006abf1b04337e37fd4bc4e700c674f020f9651bf1000000000000000000000000fd1b2f4399094c11e682e609013d61faf304729e
-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0x154ae2998a5173aaa2913173c5fe107f8b03d80859842744057dd7730f261b03
Arg [1] : founders (address[]): 0xcB635f56f97B1eE4e8F98E2673308712414f1ad7,0x6aBF1b04337e37FD4bC4E700c674f020f9651bf1,0xFD1b2f4399094C11E682e609013D61FAF304729E
Arg [2] : reserved (address): 0x0d2669eD83fF39cf9C5ae57768d7338D425C12B7
Arg [3] : foundersAlloc (uint128): 15
Arg [4] : reservedAlloc (uint128): 30
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 154ae2998a5173aaa2913173c5fe107f8b03d80859842744057dd7730f261b03
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000d2669ed83ff39cf9c5ae57768d7338d425c12b7
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 000000000000000000000000cb635f56f97b1ee4e8f98e2673308712414f1ad7
Arg [7] : 0000000000000000000000006abf1b04337e37fd4bc4e700c674f020f9651bf1
Arg [8] : 000000000000000000000000fd1b2f4399094c11e682e609013d61faf304729e
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.