ERC-721
Overview
Max Total Supply
100 CCGG
Holders
82
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CCGGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CultureCartelGenesis
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-08 */ /** *Submitted for verification at Etherscan.io on 2022-07-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees 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 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/CultureCartelGenesis.sol pragma solidity 0.8.14; contract CultureCartelGenesis is ERC721A, Ownable { enum SaleConfig { PAUSED, PRESALE, PUBLIC } using Strings for uint256; string private uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; bool public revealed = false; /*/////////////////////////////////////////////////////////////// SET SALE PAUSED //////////////////////////////////////////////////////////////*/ SaleConfig public saleConfig = SaleConfig.PAUSED; /*/////////////////////////////////////////////////////////////// PROJECT INFO //////////////////////////////////////////////////////////////*/ uint256 private constant TOTAL_SUPPLY = 100; uint256 private PRESALECOST = 0.15 ether; uint256 private PUBLICCOST = 0.15 ether; uint256 private MAX_MINT_LIMIT_PUBLIC = 3; uint256 private MAX_MINT_LIMIT_PRESALE = 1; uint256 private MAX_WALLET_LIMIT = 3; /*/////////////////////////////////////////////////////////////// TRACKING //////////////////////////////////////////////////////////////*/ bytes32 private merkleRoot; constructor () ERC721A ("Culture Cartel Genesis 1 to 100", "CCGG") {} function _startTokenId() internal override view virtual returns (uint256) { return 1; } /*/////////////////////////////////////////////////////////////// MerkleRoots & Sale Functions //////////////////////////////////////////////////////////////*/ function setSaleConfig(SaleConfig _status) external onlyOwner { saleConfig = _status; } function setMerkleRoots(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } /*/////////////////////////////////////////////////////////////// Modifiers And Check Functions //////////////////////////////////////////////////////////////*/ function isPresaleActive() public view returns(bool) { if(saleConfig == SaleConfig.PRESALE) return true; return false; } function isSaleActive() public view returns(bool) { if(saleConfig == SaleConfig.PUBLIC) return true; return false; } function cost() public view returns(uint256) { if(isPresaleActive()) return PRESALECOST; return PUBLICCOST; } function maxSupply() public pure returns(uint256) { return TOTAL_SUPPLY; } function maxMintAmountPerTx() public view returns(uint256) { if(isPresaleActive()) { return MAX_MINT_LIMIT_PRESALE; } return MAX_MINT_LIMIT_PUBLIC; } function maxWalletLimit() public view returns(uint256) { return MAX_WALLET_LIMIT; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier mintCompliance(uint256 _mintAmount) { require(saleConfig != SaleConfig.PAUSED, "The contract is paused!"); require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx(), "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply(), "Max supply exceeded!"); _; } modifier selfMintCompliance(uint256 _mintAmount) { require(_mintAmount > 0, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply(), "Max reserve supply exceeded!"); _; } /*/////////////////////////////////////////////////////////////// MINT FUNCTIONS //////////////////////////////////////////////////////////////*/ function whitelistMint(uint256 _amount, bytes32[] memory _proof) external payable callerIsUser mintCompliance(_amount) { require(isPresaleActive(), "Sale is not active yet"); require(merkleRoot != '', "Merkle Root not set"); require(msg.value >= cost() * _amount, "Insufficient funds!"); require(MerkleProof.verify(_proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "You are not a whitelist member."); require(balanceOf(msg.sender) + _amount <= maxWalletLimit(), "Max mint amount per wallet reached"); _mint(msg.sender, _amount); } function mint(uint256 _amount) public payable callerIsUser mintCompliance(_amount) { require(isSaleActive(), "Sale is not Active" ); require(msg.value >= cost() * _amount, "Insufficient funds!"); require(balanceOf(msg.sender) + _amount <= maxWalletLimit(), "Max mint amount per wallet reached"); _mint(msg.sender, _amount); } function mintForAddress(uint256 _amount, address _receiver) public mintCompliance(_amount) onlyOwner { _mint(_receiver, _amount); } function mintForSelf(uint256 _amount) public selfMintCompliance(_amount) onlyOwner { _mint(msg.sender, _amount); } /*/////////////////////////////////////////////////////////////// METADATA URI //////////////////////////////////////////////////////////////*/ function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } /*/////////////////////////////////////////////////////////////// Update Functions //////////////////////////////////////////////////////////////*/ function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPublicCost(uint256 _cost) public onlyOwner { PUBLICCOST = _cost; } function setPresaleCost(uint256 _cost) public onlyOwner { PRESALECOST = _cost; } function setPresaleMaxLimit(uint256 _state) public onlyOwner { MAX_MINT_LIMIT_PRESALE = _state; } function setPublicSaleMaxLimit(uint256 _state) public onlyOwner { MAX_MINT_LIMIT_PUBLIC = _state; } function setWalletMaxLimit(uint256 _state) public onlyOwner { MAX_WALLET_LIMIT = _state; } /*/////////////////////////////////////////////////////////////// TRACKING NUMBER MINTED //////////////////////////////////////////////////////////////*/ function numberMinted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function getOwnershipData(uint256 _tokenId) external view returns (TokenOwnership memory) { return _ownershipOf(_tokenId); } /*/////////////////////////////////////////////////////////////// WITHDRAW FUNDS //////////////////////////////////////////////////////////////*/ function withdrawFunds() external onlyOwner { require(address(this).balance > 0, "Balance is 0"); payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"enum CultureCartelGenesis.SaleConfig","name":"","type":"uint8"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setPresaleMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setPublicSaleMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum CultureCartelGenesis.SaleConfig","name":"_status","type":"uint8"}],"name":"setSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setWalletMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b9160099162000166565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a9162000166565b50600c805461ffff19169055670214e8348c4f0000600d819055600e556003600f81905560016010556011553480156200008357600080fd5b50604080518082018252601f81527f43756c747572652043617274656c2047656e65736973203120746f20313030006020808301918252835180850190945260048452634343474760e01b908401528151919291620000e59160029162000166565b508051620000fb90600390602084019062000166565b50506001600055506200010e3362000114565b62000248565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000174906200020c565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b600181811c908216806200022157607f821691505b6020821081036200024257634e487b7160e01b600052602260045260246000fd5b50919050565b61272480620002586000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063a22cb465116100c1578063d5abeb011161007a578063d5abeb011461073e578063dc33e68114610752578063e0a8085314610772578063e985e9c514610792578063efbd73f4146107db578063f2fde38b146107fb57600080fd5b8063a22cb46514610696578063a45ba8e7146106b6578063b88d4fde146106cb578063c49b3d54146106eb578063c87b56dd1461070b578063d2cab0561461072b57600080fd5b80638fdcf942116101135780638fdcf942146105b657806390aa0b0f146105d65780639231ab2a1461060257806394354fd01461065957806395d89b411461066e578063a0712d681461068357600080fd5b806370a0823114610523578063715018a6146105435780637ec4a65914610558578063811d2437146105785780638da5cb5b1461059857600080fd5b80632d0f14a5116101e857806351830227116101ac57806351830227146104955780635503a0e8146104af578063564566a8146104c457806360d938dc146104d95780636352211e146104ee57806366a88d961461050e57600080fd5b80632d0f14a5146103f557806340af91ec1461041557806342842e0e1461043557806348564594146104555780634fdd43cb1461047557600080fd5b806316ba10e01161023a57806316ba10e01461034b57806318160ddd1461036b57806323b872dd1461038057806324600fc3146103a057806325b568a3146103b55780632931ec16146103d557600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806313faede614610328575b600080fd5b34801561028357600080fd5b50610297610292366004611f5e565b61081b565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161086d565b6040516102a39190611fd3565b3480156102da57600080fd5b506102ee6102e9366004611fe6565b6108ff565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061032661032136600461201b565b610943565b005b34801561033457600080fd5b5061033d610a15565b6040519081526020016102a3565b34801561035757600080fd5b506103266103663660046120e4565b610a32565b34801561037757600080fd5b5061033d610a7c565b34801561038c57600080fd5b5061032661039b36600461212d565b610a8a565b3480156103ac57600080fd5b50610326610a9a565b3480156103c157600080fd5b506103266103d0366004611fe6565b610b3f565b3480156103e157600080fd5b506103266103f0366004611fe6565b610b6e565b34801561040157600080fd5b50610326610410366004611fe6565b610b9d565b34801561042157600080fd5b50610326610430366004612169565b610bcc565b34801561044157600080fd5b5061032661045036600461212d565b610c1f565b34801561046157600080fd5b50610326610470366004611fe6565b610c3a565b34801561048157600080fd5b506103266104903660046120e4565b610c69565b3480156104a157600080fd5b50600c546102979060ff1681565b3480156104bb57600080fd5b506102c1610ca6565b3480156104d057600080fd5b50610297610d34565b3480156104e557600080fd5b50610297610d66565b3480156104fa57600080fd5b506102ee610509366004611fe6565b610d6f565b34801561051a57600080fd5b5060115461033d565b34801561052f57600080fd5b5061033d61053e36600461218a565b610d7a565b34801561054f57600080fd5b50610326610dc9565b34801561056457600080fd5b506103266105733660046120e4565b610dff565b34801561058457600080fd5b50610326610593366004611fe6565b610e3c565b3480156105a457600080fd5b506008546001600160a01b03166102ee565b3480156105c257600080fd5b506103266105d1366004611fe6565b610e6b565b3480156105e257600080fd5b50600c546105f590610100900460ff1681565b6040516102a391906121bb565b34801561060e57600080fd5b5061062261061d366004611fe6565b610e9a565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff1690820152918101511515908201526060016102a3565b34801561066557600080fd5b5061033d610ec0565b34801561067a57600080fd5b506102c1610edd565b610326610691366004611fe6565b610eec565b3480156106a257600080fd5b506103266106b13660046121f3565b6110bd565b3480156106c257600080fd5b506102c1611152565b3480156106d757600080fd5b506103266106e6366004612226565b61115f565b3480156106f757600080fd5b50610326610706366004611fe6565b6111a9565b34801561071757600080fd5b506102c1610726366004611fe6565b611257565b6103266107393660046122a2565b6113c6565b34801561074a57600080fd5b50606461033d565b34801561075e57600080fd5b5061033d61076d36600461218a565b611671565b34801561077e57600080fd5b5061032661078d366004612354565b61169c565b34801561079e57600080fd5b506102976107ad36600461236f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107e757600080fd5b506103266107f6366004612399565b6116d9565b34801561080757600080fd5b5061032661081636600461218a565b6117af565b60006301ffc9a760e01b6001600160e01b03198316148061084c57506380ac58cd60e01b6001600160e01b03198316145b806108675750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087c906123bc565b80601f01602080910402602001604051908101604052809291908181526020018280546108a8906123bc565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611847565b610927576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094e8261187c565b9050806001600160a01b0316836001600160a01b0316036109825760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109b95761099c81336107ad565b6109b9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a1f610d66565b15610a2b5750600d5490565b50600e5490565b6008546001600160a01b03163314610a655760405162461bcd60e51b8152600401610a5c906123f6565b60405180910390fd5b8051610a7890600a906020840190611eaf565b5050565b600154600054036000190190565b610a958383836118eb565b505050565b6008546001600160a01b03163314610ac45760405162461bcd60e51b8152600401610a5c906123f6565b60004711610b035760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610a5c565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b3c573d6000803e3d6000fd5b50565b6008546001600160a01b03163314610b695760405162461bcd60e51b8152600401610a5c906123f6565b600f55565b6008546001600160a01b03163314610b985760405162461bcd60e51b8152600401610a5c906123f6565b601255565b6008546001600160a01b03163314610bc75760405162461bcd60e51b8152600401610a5c906123f6565b601055565b6008546001600160a01b03163314610bf65760405162461bcd60e51b8152600401610a5c906123f6565b600c805482919061ff001916610100836002811115610c1757610c176121a5565b021790555050565b610a958383836040518060200160405280600081525061115f565b6008546001600160a01b03163314610c645760405162461bcd60e51b8152600401610a5c906123f6565b601155565b6008546001600160a01b03163314610c935760405162461bcd60e51b8152600401610a5c906123f6565b8051610a7890600b906020840190611eaf565b600a8054610cb3906123bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdf906123bc565b8015610d2c5780601f10610d0157610100808354040283529160200191610d2c565b820191906000526020600020905b815481529060010190602001808311610d0f57829003601f168201915b505050505081565b600060025b600c54610100900460ff166002811115610d5557610d556121a5565b03610d605750600190565b50600090565b60006001610d39565b60006108678261187c565b60006001600160a01b038216610da3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df35760405162461bcd60e51b8152600401610a5c906123f6565b610dfd6000611a92565b565b6008546001600160a01b03163314610e295760405162461bcd60e51b8152600401610a5c906123f6565b8051610a78906009906020840190611eaf565b6008546001600160a01b03163314610e665760405162461bcd60e51b8152600401610a5c906123f6565b600e55565b6008546001600160a01b03163314610e955760405162461bcd60e51b8152600401610a5c906123f6565b600d55565b604080516060810182526000808252602082018190529181019190915261086782611ae4565b6000610eca610d66565b15610ed6575060105490565b50600f5490565b60606003805461087c906123bc565b323314610f3b5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5c565b806000600c54610100900460ff166002811115610f5a57610f5a6121a5565b03610f775760405162461bcd60e51b8152600401610a5c9061242b565b600081118015610f8e5750610f8a610ec0565b8111155b610faa5760405162461bcd60e51b8152600401610a5c90612462565b606481610fb5610a7c565b610fbf91906124a6565b1115610fdd5760405162461bcd60e51b8152600401610a5c906124be565b610fe5610d34565b6110265760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610a5c565b8161102f610a15565b61103991906124ec565b34101561107e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a5c565b6011548261108b33610d7a565b61109591906124a6565b11156110b35760405162461bcd60e51b8152600401610a5c9061250b565b610a783383611b48565b336001600160a01b038316036110e65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610cb3906123bc565b61116a8484846118eb565b6001600160a01b0383163b156111a35761118684848484611c29565b6111a3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b80600081116111ca5760405162461bcd60e51b8152600401610a5c90612462565b6064816111d5610a7c565b6111df91906124a6565b111561122d5760405162461bcd60e51b815260206004820152601c60248201527f4d6178207265736572766520737570706c7920657863656564656421000000006044820152606401610a5c565b6008546001600160a01b031633146110b35760405162461bcd60e51b8152600401610a5c906123f6565b606061126282611847565b6112c65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a5c565b600c5460ff16151560000361136757600b80546112e2906123bc565b80601f016020809104026020016040519081016040528092919081815260200182805461130e906123bc565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b50505050509050919050565b6000611371611d15565b9050600081511161139157604051806020016040528060008152506113bf565b8061139b84611d24565b600a6040516020016113af9392919061254d565b6040516020818303038152906040525b9392505050565b3233146114155760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5c565b816000600c54610100900460ff166002811115611434576114346121a5565b036114515760405162461bcd60e51b8152600401610a5c9061242b565b6000811180156114685750611464610ec0565b8111155b6114845760405162461bcd60e51b8152600401610a5c90612462565b60648161148f610a7c565b61149991906124a6565b11156114b75760405162461bcd60e51b8152600401610a5c906124be565b6114bf610d66565b6115045760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610a5c565b60125460000361154c5760405162461bcd60e51b815260206004820152601360248201527213595c9adb1948149bdbdd081b9bdd081cd95d606a1b6044820152606401610a5c565b82611555610a15565b61155f91906124ec565b3410156115a45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a5c565b6012546040516bffffffffffffffffffffffff193360601b1660208201526115e691849160340160405160208183030381529060405280519060200120611e25565b6116325760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420612077686974656c697374206d656d6265722e006044820152606401610a5c565b6011548361163f33610d7a565b61164991906124a6565b11156116675760405162461bcd60e51b8152600401610a5c9061250b565b610a953384611b48565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610867565b6008546001600160a01b031633146116c65760405162461bcd60e51b8152600401610a5c906123f6565b600c805460ff1916911515919091179055565b816000600c54610100900460ff1660028111156116f8576116f86121a5565b036117155760405162461bcd60e51b8152600401610a5c9061242b565b60008111801561172c5750611728610ec0565b8111155b6117485760405162461bcd60e51b8152600401610a5c90612462565b606481611753610a7c565b61175d91906124a6565b111561177b5760405162461bcd60e51b8152600401610a5c906124be565b6008546001600160a01b031633146117a55760405162461bcd60e51b8152600401610a5c906123f6565b610a958284611b48565b6008546001600160a01b031633146117d95760405162461bcd60e51b8152600401610a5c906123f6565b6001600160a01b03811661183e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5c565b610b3c81611a92565b60008160011115801561185b575060005482105b8015610867575050600090815260046020526040902054600160e01b161590565b600081806001116118d2576000548110156118d25760008181526004602052604081205490600160e01b821690036118d0575b806000036113bf5750600019016000818152600460205260409020546118af565b505b604051636f96cda160e11b815260040160405180910390fd5b60006118f68261187c565b9050836001600160a01b0316816001600160a01b0316146119295760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611947575061194785336107ad565b80611962575033611957846108ff565b6001600160a01b0316145b90508061198257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119a957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611a4a57600183016000818152600460205260408120549003611a48576000548114611a485760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152610867611b0d8361187c565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b6000546001600160a01b038316611b7157604051622e076360e81b815260040160405180910390fd5b81600003611b925760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611bdd5750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c5e903390899088908890600401612610565b6020604051808303816000875af1925050508015611c99575060408051601f3d908101601f19168201909252611c969181019061264d565b60015b611cf7573d808015611cc7576040519150601f19603f3d011682016040523d82523d6000602084013e611ccc565b606091505b508051600003611cef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461087c906123bc565b606081600003611d4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d755780611d5f8161266a565b9150611d6e9050600a83612699565b9150611d4f565b60008167ffffffffffffffff811115611d9057611d90612045565b6040519080825280601f01601f191660200182016040528015611dba576020820181803683370190505b5090505b8415611d0d57611dcf6001836126ad565b9150611ddc600a866126c4565b611de79060306124a6565b60f81b818381518110611dfc57611dfc6126d8565b60200101906001600160f81b031916908160001a905350611e1e600a86612699565b9450611dbe565b600082611e328584611e3b565b14949350505050565b600081815b8451811015611ea7576000858281518110611e5d57611e5d6126d8565b60200260200101519050808311611e835760008381526020829052604090209250611e94565b600081815260208490526040902092505b5080611e9f8161266a565b915050611e40565b509392505050565b828054611ebb906123bc565b90600052602060002090601f016020900481019282611edd5760008555611f23565b82601f10611ef657805160ff1916838001178555611f23565b82800160010185558215611f23579182015b82811115611f23578251825591602001919060010190611f08565b50611f2f929150611f33565b5090565b5b80821115611f2f5760008155600101611f34565b6001600160e01b031981168114610b3c57600080fd5b600060208284031215611f7057600080fd5b81356113bf81611f48565b60005b83811015611f96578181015183820152602001611f7e565b838111156111a35750506000910152565b60008151808452611fbf816020860160208601611f7b565b601f01601f19169290920160200192915050565b6020815260006113bf6020830184611fa7565b600060208284031215611ff857600080fd5b5035919050565b80356001600160a01b038116811461201657600080fd5b919050565b6000806040838503121561202e57600080fd5b61203783611fff565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561208457612084612045565b604052919050565b600067ffffffffffffffff8311156120a6576120a6612045565b6120b9601f8401601f191660200161205b565b90508281528383830111156120cd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120f657600080fd5b813567ffffffffffffffff81111561210d57600080fd5b8201601f8101841361211e57600080fd5b611d0d8482356020840161208c565b60008060006060848603121561214257600080fd5b61214b84611fff565b925061215960208501611fff565b9150604084013590509250925092565b60006020828403121561217b57600080fd5b8135600381106113bf57600080fd5b60006020828403121561219c57600080fd5b6113bf82611fff565b634e487b7160e01b600052602160045260246000fd5b60208101600383106121dd57634e487b7160e01b600052602160045260246000fd5b91905290565b8035801515811461201657600080fd5b6000806040838503121561220657600080fd5b61220f83611fff565b915061221d602084016121e3565b90509250929050565b6000806000806080858703121561223c57600080fd5b61224585611fff565b935061225360208601611fff565b925060408501359150606085013567ffffffffffffffff81111561227657600080fd5b8501601f8101871361228757600080fd5b6122968782356020840161208c565b91505092959194509250565b600080604083850312156122b557600080fd5b8235915060208084013567ffffffffffffffff808211156122d557600080fd5b818601915086601f8301126122e957600080fd5b8135818111156122fb576122fb612045565b8060051b915061230c84830161205b565b818152918301840191848101908984111561232657600080fd5b938501935b838510156123445784358252938501939085019061232b565b8096505050505050509250929050565b60006020828403121561236657600080fd5b6113bf826121e3565b6000806040838503121561238257600080fd5b61238b83611fff565b915061221d60208401611fff565b600080604083850312156123ac57600080fd5b8235915061221d60208401611fff565b600181811c908216806123d057607f821691505b6020821081036123f057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124b9576124b9612490565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600081600019048311821515161561250657612506612490565b500290565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b6000845160206125608285838a01611f7b565b8551918401916125738184848a01611f7b565b8554920191600090600181811c908083168061259057607f831692505b85831081036125ad57634e487b7160e01b85526022600452602485fd5b8080156125c157600181146125d2576125ff565b60ff198516885283880195506125ff565b60008b81526020902060005b858110156125f75781548a8201529084019088016125de565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264390830184611fa7565b9695505050505050565b60006020828403121561265f57600080fd5b81516113bf81611f48565b60006001820161267c5761267c612490565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826126a8576126a8612683565b500490565b6000828210156126bf576126bf612490565b500390565b6000826126d3576126d3612683565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d87946b3e28d577bcddbe7351d677b96e291a7e7715314a929477af79d22799964736f6c634300080e0033
Deployed Bytecode
0x6080604052600436106102725760003560e01c806370a082311161014f578063a22cb465116100c1578063d5abeb011161007a578063d5abeb011461073e578063dc33e68114610752578063e0a8085314610772578063e985e9c514610792578063efbd73f4146107db578063f2fde38b146107fb57600080fd5b8063a22cb46514610696578063a45ba8e7146106b6578063b88d4fde146106cb578063c49b3d54146106eb578063c87b56dd1461070b578063d2cab0561461072b57600080fd5b80638fdcf942116101135780638fdcf942146105b657806390aa0b0f146105d65780639231ab2a1461060257806394354fd01461065957806395d89b411461066e578063a0712d681461068357600080fd5b806370a0823114610523578063715018a6146105435780637ec4a65914610558578063811d2437146105785780638da5cb5b1461059857600080fd5b80632d0f14a5116101e857806351830227116101ac57806351830227146104955780635503a0e8146104af578063564566a8146104c457806360d938dc146104d95780636352211e146104ee57806366a88d961461050e57600080fd5b80632d0f14a5146103f557806340af91ec1461041557806342842e0e1461043557806348564594146104555780634fdd43cb1461047557600080fd5b806316ba10e01161023a57806316ba10e01461034b57806318160ddd1461036b57806323b872dd1461038057806324600fc3146103a057806325b568a3146103b55780632931ec16146103d557600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806313faede614610328575b600080fd5b34801561028357600080fd5b50610297610292366004611f5e565b61081b565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161086d565b6040516102a39190611fd3565b3480156102da57600080fd5b506102ee6102e9366004611fe6565b6108ff565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061032661032136600461201b565b610943565b005b34801561033457600080fd5b5061033d610a15565b6040519081526020016102a3565b34801561035757600080fd5b506103266103663660046120e4565b610a32565b34801561037757600080fd5b5061033d610a7c565b34801561038c57600080fd5b5061032661039b36600461212d565b610a8a565b3480156103ac57600080fd5b50610326610a9a565b3480156103c157600080fd5b506103266103d0366004611fe6565b610b3f565b3480156103e157600080fd5b506103266103f0366004611fe6565b610b6e565b34801561040157600080fd5b50610326610410366004611fe6565b610b9d565b34801561042157600080fd5b50610326610430366004612169565b610bcc565b34801561044157600080fd5b5061032661045036600461212d565b610c1f565b34801561046157600080fd5b50610326610470366004611fe6565b610c3a565b34801561048157600080fd5b506103266104903660046120e4565b610c69565b3480156104a157600080fd5b50600c546102979060ff1681565b3480156104bb57600080fd5b506102c1610ca6565b3480156104d057600080fd5b50610297610d34565b3480156104e557600080fd5b50610297610d66565b3480156104fa57600080fd5b506102ee610509366004611fe6565b610d6f565b34801561051a57600080fd5b5060115461033d565b34801561052f57600080fd5b5061033d61053e36600461218a565b610d7a565b34801561054f57600080fd5b50610326610dc9565b34801561056457600080fd5b506103266105733660046120e4565b610dff565b34801561058457600080fd5b50610326610593366004611fe6565b610e3c565b3480156105a457600080fd5b506008546001600160a01b03166102ee565b3480156105c257600080fd5b506103266105d1366004611fe6565b610e6b565b3480156105e257600080fd5b50600c546105f590610100900460ff1681565b6040516102a391906121bb565b34801561060e57600080fd5b5061062261061d366004611fe6565b610e9a565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff1690820152918101511515908201526060016102a3565b34801561066557600080fd5b5061033d610ec0565b34801561067a57600080fd5b506102c1610edd565b610326610691366004611fe6565b610eec565b3480156106a257600080fd5b506103266106b13660046121f3565b6110bd565b3480156106c257600080fd5b506102c1611152565b3480156106d757600080fd5b506103266106e6366004612226565b61115f565b3480156106f757600080fd5b50610326610706366004611fe6565b6111a9565b34801561071757600080fd5b506102c1610726366004611fe6565b611257565b6103266107393660046122a2565b6113c6565b34801561074a57600080fd5b50606461033d565b34801561075e57600080fd5b5061033d61076d36600461218a565b611671565b34801561077e57600080fd5b5061032661078d366004612354565b61169c565b34801561079e57600080fd5b506102976107ad36600461236f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107e757600080fd5b506103266107f6366004612399565b6116d9565b34801561080757600080fd5b5061032661081636600461218a565b6117af565b60006301ffc9a760e01b6001600160e01b03198316148061084c57506380ac58cd60e01b6001600160e01b03198316145b806108675750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087c906123bc565b80601f01602080910402602001604051908101604052809291908181526020018280546108a8906123bc565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611847565b610927576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094e8261187c565b9050806001600160a01b0316836001600160a01b0316036109825760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109b95761099c81336107ad565b6109b9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a1f610d66565b15610a2b5750600d5490565b50600e5490565b6008546001600160a01b03163314610a655760405162461bcd60e51b8152600401610a5c906123f6565b60405180910390fd5b8051610a7890600a906020840190611eaf565b5050565b600154600054036000190190565b610a958383836118eb565b505050565b6008546001600160a01b03163314610ac45760405162461bcd60e51b8152600401610a5c906123f6565b60004711610b035760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610a5c565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b3c573d6000803e3d6000fd5b50565b6008546001600160a01b03163314610b695760405162461bcd60e51b8152600401610a5c906123f6565b600f55565b6008546001600160a01b03163314610b985760405162461bcd60e51b8152600401610a5c906123f6565b601255565b6008546001600160a01b03163314610bc75760405162461bcd60e51b8152600401610a5c906123f6565b601055565b6008546001600160a01b03163314610bf65760405162461bcd60e51b8152600401610a5c906123f6565b600c805482919061ff001916610100836002811115610c1757610c176121a5565b021790555050565b610a958383836040518060200160405280600081525061115f565b6008546001600160a01b03163314610c645760405162461bcd60e51b8152600401610a5c906123f6565b601155565b6008546001600160a01b03163314610c935760405162461bcd60e51b8152600401610a5c906123f6565b8051610a7890600b906020840190611eaf565b600a8054610cb3906123bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdf906123bc565b8015610d2c5780601f10610d0157610100808354040283529160200191610d2c565b820191906000526020600020905b815481529060010190602001808311610d0f57829003601f168201915b505050505081565b600060025b600c54610100900460ff166002811115610d5557610d556121a5565b03610d605750600190565b50600090565b60006001610d39565b60006108678261187c565b60006001600160a01b038216610da3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df35760405162461bcd60e51b8152600401610a5c906123f6565b610dfd6000611a92565b565b6008546001600160a01b03163314610e295760405162461bcd60e51b8152600401610a5c906123f6565b8051610a78906009906020840190611eaf565b6008546001600160a01b03163314610e665760405162461bcd60e51b8152600401610a5c906123f6565b600e55565b6008546001600160a01b03163314610e955760405162461bcd60e51b8152600401610a5c906123f6565b600d55565b604080516060810182526000808252602082018190529181019190915261086782611ae4565b6000610eca610d66565b15610ed6575060105490565b50600f5490565b60606003805461087c906123bc565b323314610f3b5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5c565b806000600c54610100900460ff166002811115610f5a57610f5a6121a5565b03610f775760405162461bcd60e51b8152600401610a5c9061242b565b600081118015610f8e5750610f8a610ec0565b8111155b610faa5760405162461bcd60e51b8152600401610a5c90612462565b606481610fb5610a7c565b610fbf91906124a6565b1115610fdd5760405162461bcd60e51b8152600401610a5c906124be565b610fe5610d34565b6110265760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610a5c565b8161102f610a15565b61103991906124ec565b34101561107e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a5c565b6011548261108b33610d7a565b61109591906124a6565b11156110b35760405162461bcd60e51b8152600401610a5c9061250b565b610a783383611b48565b336001600160a01b038316036110e65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610cb3906123bc565b61116a8484846118eb565b6001600160a01b0383163b156111a35761118684848484611c29565b6111a3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b80600081116111ca5760405162461bcd60e51b8152600401610a5c90612462565b6064816111d5610a7c565b6111df91906124a6565b111561122d5760405162461bcd60e51b815260206004820152601c60248201527f4d6178207265736572766520737570706c7920657863656564656421000000006044820152606401610a5c565b6008546001600160a01b031633146110b35760405162461bcd60e51b8152600401610a5c906123f6565b606061126282611847565b6112c65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a5c565b600c5460ff16151560000361136757600b80546112e2906123bc565b80601f016020809104026020016040519081016040528092919081815260200182805461130e906123bc565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b50505050509050919050565b6000611371611d15565b9050600081511161139157604051806020016040528060008152506113bf565b8061139b84611d24565b600a6040516020016113af9392919061254d565b6040516020818303038152906040525b9392505050565b3233146114155760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5c565b816000600c54610100900460ff166002811115611434576114346121a5565b036114515760405162461bcd60e51b8152600401610a5c9061242b565b6000811180156114685750611464610ec0565b8111155b6114845760405162461bcd60e51b8152600401610a5c90612462565b60648161148f610a7c565b61149991906124a6565b11156114b75760405162461bcd60e51b8152600401610a5c906124be565b6114bf610d66565b6115045760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610a5c565b60125460000361154c5760405162461bcd60e51b815260206004820152601360248201527213595c9adb1948149bdbdd081b9bdd081cd95d606a1b6044820152606401610a5c565b82611555610a15565b61155f91906124ec565b3410156115a45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a5c565b6012546040516bffffffffffffffffffffffff193360601b1660208201526115e691849160340160405160208183030381529060405280519060200120611e25565b6116325760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420612077686974656c697374206d656d6265722e006044820152606401610a5c565b6011548361163f33610d7a565b61164991906124a6565b11156116675760405162461bcd60e51b8152600401610a5c9061250b565b610a953384611b48565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610867565b6008546001600160a01b031633146116c65760405162461bcd60e51b8152600401610a5c906123f6565b600c805460ff1916911515919091179055565b816000600c54610100900460ff1660028111156116f8576116f86121a5565b036117155760405162461bcd60e51b8152600401610a5c9061242b565b60008111801561172c5750611728610ec0565b8111155b6117485760405162461bcd60e51b8152600401610a5c90612462565b606481611753610a7c565b61175d91906124a6565b111561177b5760405162461bcd60e51b8152600401610a5c906124be565b6008546001600160a01b031633146117a55760405162461bcd60e51b8152600401610a5c906123f6565b610a958284611b48565b6008546001600160a01b031633146117d95760405162461bcd60e51b8152600401610a5c906123f6565b6001600160a01b03811661183e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5c565b610b3c81611a92565b60008160011115801561185b575060005482105b8015610867575050600090815260046020526040902054600160e01b161590565b600081806001116118d2576000548110156118d25760008181526004602052604081205490600160e01b821690036118d0575b806000036113bf5750600019016000818152600460205260409020546118af565b505b604051636f96cda160e11b815260040160405180910390fd5b60006118f68261187c565b9050836001600160a01b0316816001600160a01b0316146119295760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611947575061194785336107ad565b80611962575033611957846108ff565b6001600160a01b0316145b90508061198257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119a957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611a4a57600183016000818152600460205260408120549003611a48576000548114611a485760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152610867611b0d8361187c565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b6000546001600160a01b038316611b7157604051622e076360e81b815260040160405180910390fd5b81600003611b925760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611bdd5750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c5e903390899088908890600401612610565b6020604051808303816000875af1925050508015611c99575060408051601f3d908101601f19168201909252611c969181019061264d565b60015b611cf7573d808015611cc7576040519150601f19603f3d011682016040523d82523d6000602084013e611ccc565b606091505b508051600003611cef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461087c906123bc565b606081600003611d4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d755780611d5f8161266a565b9150611d6e9050600a83612699565b9150611d4f565b60008167ffffffffffffffff811115611d9057611d90612045565b6040519080825280601f01601f191660200182016040528015611dba576020820181803683370190505b5090505b8415611d0d57611dcf6001836126ad565b9150611ddc600a866126c4565b611de79060306124a6565b60f81b818381518110611dfc57611dfc6126d8565b60200101906001600160f81b031916908160001a905350611e1e600a86612699565b9450611dbe565b600082611e328584611e3b565b14949350505050565b600081815b8451811015611ea7576000858281518110611e5d57611e5d6126d8565b60200260200101519050808311611e835760008381526020829052604090209250611e94565b600081815260208490526040902092505b5080611e9f8161266a565b915050611e40565b509392505050565b828054611ebb906123bc565b90600052602060002090601f016020900481019282611edd5760008555611f23565b82601f10611ef657805160ff1916838001178555611f23565b82800160010185558215611f23579182015b82811115611f23578251825591602001919060010190611f08565b50611f2f929150611f33565b5090565b5b80821115611f2f5760008155600101611f34565b6001600160e01b031981168114610b3c57600080fd5b600060208284031215611f7057600080fd5b81356113bf81611f48565b60005b83811015611f96578181015183820152602001611f7e565b838111156111a35750506000910152565b60008151808452611fbf816020860160208601611f7b565b601f01601f19169290920160200192915050565b6020815260006113bf6020830184611fa7565b600060208284031215611ff857600080fd5b5035919050565b80356001600160a01b038116811461201657600080fd5b919050565b6000806040838503121561202e57600080fd5b61203783611fff565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561208457612084612045565b604052919050565b600067ffffffffffffffff8311156120a6576120a6612045565b6120b9601f8401601f191660200161205b565b90508281528383830111156120cd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120f657600080fd5b813567ffffffffffffffff81111561210d57600080fd5b8201601f8101841361211e57600080fd5b611d0d8482356020840161208c565b60008060006060848603121561214257600080fd5b61214b84611fff565b925061215960208501611fff565b9150604084013590509250925092565b60006020828403121561217b57600080fd5b8135600381106113bf57600080fd5b60006020828403121561219c57600080fd5b6113bf82611fff565b634e487b7160e01b600052602160045260246000fd5b60208101600383106121dd57634e487b7160e01b600052602160045260246000fd5b91905290565b8035801515811461201657600080fd5b6000806040838503121561220657600080fd5b61220f83611fff565b915061221d602084016121e3565b90509250929050565b6000806000806080858703121561223c57600080fd5b61224585611fff565b935061225360208601611fff565b925060408501359150606085013567ffffffffffffffff81111561227657600080fd5b8501601f8101871361228757600080fd5b6122968782356020840161208c565b91505092959194509250565b600080604083850312156122b557600080fd5b8235915060208084013567ffffffffffffffff808211156122d557600080fd5b818601915086601f8301126122e957600080fd5b8135818111156122fb576122fb612045565b8060051b915061230c84830161205b565b818152918301840191848101908984111561232657600080fd5b938501935b838510156123445784358252938501939085019061232b565b8096505050505050509250929050565b60006020828403121561236657600080fd5b6113bf826121e3565b6000806040838503121561238257600080fd5b61238b83611fff565b915061221d60208401611fff565b600080604083850312156123ac57600080fd5b8235915061221d60208401611fff565b600181811c908216806123d057607f821691505b6020821081036123f057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124b9576124b9612490565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600081600019048311821515161561250657612506612490565b500290565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b6000845160206125608285838a01611f7b565b8551918401916125738184848a01611f7b565b8554920191600090600181811c908083168061259057607f831692505b85831081036125ad57634e487b7160e01b85526022600452602485fd5b8080156125c157600181146125d2576125ff565b60ff198516885283880195506125ff565b60008b81526020902060005b858110156125f75781548a8201529084019088016125de565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264390830184611fa7565b9695505050505050565b60006020828403121561265f57600080fd5b81516113bf81611f48565b60006001820161267c5761267c612490565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826126a8576126a8612683565b500490565b6000828210156126bf576126bf612490565b500390565b6000826126d3576126d3612683565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d87946b3e28d577bcddbe7351d677b96e291a7e7715314a929477af79d22799964736f6c634300080e0033
Deployed Bytecode Sourcemap
46757:7625:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21409:615;;;;;;;;;;-1:-1:-1;21409:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21409:615:0;;;;;;;;26422:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28490:204::-;;;;;;;;;;-1:-1:-1;28490:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28490:204:0;1528:203:1;27950:474:0;;;;;;;;;;-1:-1:-1;27950:474:0;;;;;:::i;:::-;;:::i;:::-;;49013:128;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;49013:128:0;2173:177:1;52908:106:0;;;;;;;;;;-1:-1:-1;52908:106:0;;;;;:::i;:::-;;:::i;20463:315::-;;;;;;;;;;;;;:::i;29376:170::-;;;;;;;;;;-1:-1:-1;29376:170:0;;;;;:::i;:::-;;:::i;54207:172::-;;;;;;;;;;;;;:::i;53341:113::-;;;;;;;;;;-1:-1:-1;53341:113:0;;;;;:::i;:::-;;:::i;48428:101::-;;;;;;;;;;-1:-1:-1;48428:101:0;;;;;:::i;:::-;;:::i;53224:109::-;;;;;;;;;;-1:-1:-1;53224:109:0;;;;;:::i;:::-;;:::i;48325:97::-;;;;;;;;;;-1:-1:-1;48325:97:0;;;;;:::i;:::-;;:::i;29617:185::-;;;;;;;;;;-1:-1:-1;29617:185:0;;;;;:::i;:::-;;:::i;53462:104::-;;;;;;;;;;-1:-1:-1;53462:104:0;;;;;:::i;:::-;;:::i;52648:138::-;;;;;;;;;;-1:-1:-1;52648:138:0;;;;;:::i;:::-;;:::i;47017:28::-;;;;;;;;;;-1:-1:-1;47017:28:0;;;;;;;;46943:33;;;;;;;;;;;;;:::i;48872:135::-;;;;;;;;;;;;;:::i;48727:139::-;;;;;;;;;;;;;:::i;26211:144::-;;;;;;;;;;-1:-1:-1;26211:144:0;;;;;:::i;:::-;;:::i;49429:91::-;;;;;;;;;;-1:-1:-1;49498:16:0;;49429:91;;22088:224;;;;;;;;;;-1:-1:-1;22088:224:0;;;;;:::i;:::-;;:::i;7519:103::-;;;;;;;;;;;;;:::i;52794:106::-;;;;;;;;;;-1:-1:-1;52794:106:0;;;;;:::i;:::-;;:::i;53022:92::-;;;;;;;;;;-1:-1:-1;53022:92:0;;;;;:::i;:::-;;:::i;6868:87::-;;;;;;;;;;-1:-1:-1;6941:6:0;;-1:-1:-1;;;;;6941:6:0;6868:87;;53122:94;;;;;;;;;;-1:-1:-1;53122:94:0;;;;;:::i;:::-;;:::i;47234:48::-;;;;;;;;;;-1:-1:-1;47234:48:0;;;;;;;;;;;;;;;;;;:::i;53882:132::-;;;;;;;;;;-1:-1:-1;53882:132:0;;;;;:::i;:::-;;:::i;:::-;;;;5330:13:1;;-1:-1:-1;;;;;5326:39:1;5308:58;;5426:4;5414:17;;;5408:24;5434:18;5404:49;5382:20;;;5375:79;5512:17;;;5506:24;5499:32;5492:40;5470:20;;;5463:70;5296:2;5281:18;53882:132:0;5100:439:1;49237:186:0;;;;;;;;;;;;;:::i;26591:104::-;;;;;;;;;;;;;:::i;50934:348::-;;;;;;:::i;:::-;;:::i;28766:308::-;;;;;;;;;;-1:-1:-1;28766:308:0;;;;;:::i;:::-;;:::i;46981:31::-;;;;;;;;;;;;;:::i;29873:396::-;;;;;;;;;;-1:-1:-1;29873:396:0;;;;;:::i;:::-;;:::i;51433:122::-;;;;;;;;;;-1:-1:-1;51433:122:0;;;;;:::i;:::-;;:::i;51871:494::-;;;;;;;;;;-1:-1:-1;51871:494:0;;;;;:::i;:::-;;:::i;50353:575::-;;;;;;:::i;:::-;;:::i;49147:84::-;;;;;;;;;;-1:-1:-1;47508:3:0;49147:84;;53765:109;;;;;;;;;;-1:-1:-1;53765:109:0;;;;;:::i;:::-;;:::i;52553:87::-;;;;;;;;;;-1:-1:-1;52553:87:0;;;;;:::i;:::-;;:::i;29145:164::-;;;;;;;;;;-1:-1:-1;29145:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29266:25:0;;;29242:4;29266:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29145:164;51288:139;;;;;;;;;;-1:-1:-1;51288:139:0;;;;;:::i;:::-;;:::i;7777:201::-;;;;;;;;;;-1:-1:-1;7777:201:0;;;;;:::i;:::-;;:::i;21409:615::-;21494:4;-1:-1:-1;;;;;;;;;21794:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21871:25:0;;;21794:102;:179;;;-1:-1:-1;;;;;;;;;;21948:25:0;;;21794:179;21774:199;21409:615;-1:-1:-1;;21409:615:0:o;26422:100::-;26476:13;26509:5;26502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26422:100;:::o;28490:204::-;28558:7;28583:16;28591:7;28583;:16::i;:::-;28578:64;;28608:34;;-1:-1:-1;;;28608:34:0;;;;;;;;;;;28578:64;-1:-1:-1;28662:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28662:24:0;;28490:204::o;27950:474::-;28023:13;28055:27;28074:7;28055:18;:27::i;:::-;28023:61;;28105:5;-1:-1:-1;;;;;28099:11:0;:2;-1:-1:-1;;;;;28099:11:0;;28095:48;;28119:24;;-1:-1:-1;;;28119:24:0;;;;;;;;;;;28095:48;44593:10;-1:-1:-1;;;;;28160:28:0;;;28156:175;;28208:44;28225:5;44593:10;29145:164;:::i;28208:44::-;28203:128;;28280:35;;-1:-1:-1;;;28280:35:0;;;;;;;;;;;28203:128;28343:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28343:29:0;-1:-1:-1;;;;;28343:29:0;;;;;;;;;28388:28;;28343:24;;28388:28;;;;;;;28012:412;27950:474;;:::o;49013:128::-;49049:7;49070:17;:15;:17::i;:::-;49067:40;;;-1:-1:-1;49096:11:0;;;49013:128::o;49067:40::-;-1:-1:-1;49125:10:0;;;49013:128::o;52908:106::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;;;;;;;;;52984:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52908:106:::0;:::o;20463:315::-;48116:1;20729:12;20516:7;20713:13;:28;-1:-1:-1;;20713:46:0;;20463:315::o;29376:170::-;29510:28;29520:4;29526:2;29530:7;29510:9;:28::i;:::-;29376:170;;;:::o;54207:172::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;54294:1:::1;54270:21;:25;54262:50;;;::::0;-1:-1:-1;;;54262:50:0;;9316:2:1;54262:50:0::1;::::0;::::1;9298:21:1::0;9355:2;9335:18;;;9328:30;-1:-1:-1;;;9374:18:1;;;9367:42;9426:18;;54262:50:0::1;9114:336:1::0;54262:50:0::1;6941:6:::0;;54323:48:::1;::::0;-1:-1:-1;;;;;6941:6:0;;;;54349:21:::1;54323:48:::0;::::1;;;::::0;::::1;::::0;;;54349:21;6941:6;54323:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54207:172::o:0;53341:113::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;53416:21:::1;:30:::0;53341:113::o;48428:101::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;48499:10:::1;:24:::0;48428:101::o;53224:109::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;53294:22:::1;:31:::0;53224:109::o;48325:97::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;48396:10:::1;:20:::0;;48409:7;;48396:10;-1:-1:-1;;48396:20:0::1;;48409:7:::0;48396:20:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;48325:97:::0;:::o;29617:185::-;29755:39;29772:4;29778:2;29782:7;29755:39;;;;;;;;;;;;:16;:39::i;53462:104::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;53533:16:::1;:25:::0;53462:104::o;52648:138::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;52740:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;46943:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48872:135::-;48916:4;48948:17;48934:31;:10;;;;;;;:31;;;;;;;;:::i;:::-;;48931:47;;-1:-1:-1;48974:4:0;;48872:135::o;48931:47::-;-1:-1:-1;48996:5:0;;48872:135::o;48727:139::-;48774:4;48806:18;48792:32;;26211:144;26275:7;26318:27;26337:7;26318:18;:27::i;22088:224::-;22152:7;-1:-1:-1;;;;;22176:19:0;;22172:60;;22204:28;;-1:-1:-1;;;22204:28:0;;;;;;;;;;;22172:60;-1:-1:-1;;;;;;22250:25:0;;;;;:18;:25;;;;;;17427:13;22250:54;;22088:224::o;7519:103::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;7584:30:::1;7611:1;7584:18;:30::i;:::-;7519:103::o:0;52794:106::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;52870:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;53022:92::-:0;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;53088:10:::1;:18:::0;53022:92::o;53122:94::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;53189:11:::1;:19:::0;53122:94::o;53882:132::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;53986:22:0;53999:8;53986:12;:22::i;49237:186::-;49287:7;49308:17;:15;:17::i;:::-;49305:74;;;-1:-1:-1;49347:22:0;;;49237:186::o;49305:74::-;-1:-1:-1;49396:21:0;;;49237:186::o;26591:104::-;26647:13;26680:7;26673:14;;;;;:::i;50934:348::-;49565:9;49578:10;49565:23;49557:66;;;;-1:-1:-1;;;49557:66:0;;9657:2:1;49557:66:0;;;9639:21:1;9696:2;9676:18;;;9669:30;9735:32;9715:18;;;9708:60;9785:18;;49557:66:0;9455:354:1;49557:66:0;51008:7;49717:17:::1;49703:10;::::0;::::1;::::0;::::1;;;:31;::::0;::::1;;;;;;:::i;:::-;::::0;49695:67:::1;;;;-1:-1:-1::0;;;49695:67:0::1;;;;;;;:::i;:::-;49791:1;49777:11;:15;:54;;;;;49811:20;:18;:20::i;:::-;49796:11;:35;;49777:54;49769:87;;;;-1:-1:-1::0;;;49769:87:0::1;;;;;;;:::i;:::-;47508:3:::0;49887:11:::1;49871:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;49863:75;;;;-1:-1:-1::0;;;49863:75:0::1;;;;;;;:::i;:::-;51032:14:::2;:12;:14::i;:::-;51024:46;;;::::0;-1:-1:-1;;;51024:46:0;;11331:2:1;51024:46:0::2;::::0;::::2;11313:21:1::0;11370:2;11350:18;;;11343:30;-1:-1:-1;;;11389:18:1;;;11382:48;11447:18;;51024:46:0::2;11129:342:1::0;51024:46:0::2;51107:7;51098:6;:4;:6::i;:::-;:16;;;;:::i;:::-;51085:9;:29;;51077:61;;;::::0;-1:-1:-1;;;51077:61:0;;11851:2:1;51077:61:0::2;::::0;::::2;11833:21:1::0;11890:2;11870:18;;;11863:30;-1:-1:-1;;;11909:18:1;;;11902:49;11968:18;;51077:61:0::2;11649:343:1::0;51077:61:0::2;49498:16:::0;;51177:7:::2;51153:21;51163:10;51153:9;:21::i;:::-;:31;;;;:::i;:::-;:51;;51145:98;;;;-1:-1:-1::0;;;51145:98:0::2;;;;;;;:::i;:::-;51250:26;51256:10;51268:7;51250:5;:26::i;28766:308::-:0;44593:10;-1:-1:-1;;;;;28865:31:0;;;28861:61;;28905:17;;-1:-1:-1;;;28905:17:0;;;;;;;;;;;28861:61;44593:10;28935:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28935:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28935:60:0;;;;;;;;;;29011:55;;540:41:1;;;28935:49:0;;44593:10;29011:55;;513:18:1;29011:55:0;;;;;;;28766:308;;:::o;46981:31::-;;;;;;;:::i;29873:396::-;30040:28;30050:4;30056:2;30060:7;30040:9;:28::i;:::-;-1:-1:-1;;;;;30083:14:0;;;:19;30079:183;;30122:56;30153:4;30159:2;30163:7;30172:5;30122:30;:56::i;:::-;30117:145;;30206:40;;-1:-1:-1;;;30206:40:0;;;;;;;;;;;30117:145;29873:396;;;;:::o;51433:122::-;51497:7;50036:1;50022:11;:15;50014:48;;;;-1:-1:-1;;;50014:48:0;;;;;;;:::i;:::-;47508:3;50093:11;50077:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;50069:83;;;;-1:-1:-1;;;50069:83:0;;12602:2:1;50069:83:0;;;12584:21:1;12641:2;12621:18;;;12614:30;12680;12660:18;;;12653:58;12728:18;;50069:83:0;12400:352:1;50069:83:0;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23:::1;7080:68;;;;-1:-1:-1::0;;;7080:68:0::1;;;;;;;:::i;51871:494::-:0;51970:13;52011:17;52019:8;52011:7;:17::i;:::-;51995:98;;;;-1:-1:-1;;;51995:98:0;;12959:2:1;51995:98:0;;;12941:21:1;12998:2;12978:18;;;12971:30;13037:34;13017:18;;;13010:62;-1:-1:-1;;;13088:18:1;;;13081:45;13143:19;;51995:98:0;12757:411:1;51995:98:0;52106:8;;;;:17;;:8;:17;52102:64;;52141:17;52134:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51871:494;;;:::o;52102:64::-;52174:28;52205:10;:8;:10::i;:::-;52174:41;;52260:1;52235:14;52229:28;:32;:130;;;;;;;;;;;;;;;;;52297:14;52313:19;:8;:17;:19::i;:::-;52334:9;52280:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52229:130;52222:137;51871:494;-1:-1:-1;;;51871:494:0:o;50353:575::-;49565:9;49578:10;49565:23;49557:66;;;;-1:-1:-1;;;49557:66:0;;9657:2:1;49557:66:0;;;9639:21:1;9696:2;9676:18;;;9669:30;9735:32;9715:18;;;9708:60;9785:18;;49557:66:0;9455:354:1;49557:66:0;50463:7;49717:17:::1;49703:10;::::0;::::1;::::0;::::1;;;:31;::::0;::::1;;;;;;:::i;:::-;::::0;49695:67:::1;;;;-1:-1:-1::0;;;49695:67:0::1;;;;;;;:::i;:::-;49791:1;49777:11;:15;:54;;;;;49811:20;:18;:20::i;:::-;49796:11;:35;;49777:54;49769:87;;;;-1:-1:-1::0;;;49769:87:0::1;;;;;;;:::i;:::-;47508:3:::0;49887:11:::1;49871:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;49863:75;;;;-1:-1:-1::0;;;49863:75:0::1;;;;;;;:::i;:::-;50487:17:::2;:15;:17::i;:::-;50479:52;;;::::0;-1:-1:-1;;;50479:52:0;;15033:2:1;50479:52:0::2;::::0;::::2;15015:21:1::0;15072:2;15052:18;;;15045:30;-1:-1:-1;;;15091:18:1;;;15084:52;15153:18;;50479:52:0::2;14831:346:1::0;50479:52:0::2;50546:10;;:16;::::0;50538:48:::2;;;::::0;-1:-1:-1;;;50538:48:0;;15384:2:1;50538:48:0::2;::::0;::::2;15366:21:1::0;15423:2;15403:18;;;15396:30;-1:-1:-1;;;15442:18:1;;;15435:49;15501:18;;50538:48:0::2;15182:343:1::0;50538:48:0::2;50623:7;50614:6;:4;:6::i;:::-;:16;;;;:::i;:::-;50601:9;:29;;50593:61;;;::::0;-1:-1:-1;;;50593:61:0;;11851:2:1;50593:61:0::2;::::0;::::2;11833:21:1::0;11890:2;11870:18;;;11863:30;-1:-1:-1;;;11909:18:1;;;11902:49;11968:18;;50593:61:0::2;11649:343:1::0;50593:61:0::2;50696:10;::::0;50718:28:::2;::::0;-1:-1:-1;;50735:10:0::2;15679:2:1::0;15675:15;15671:53;50718:28:0::2;::::0;::::2;15659:66:1::0;50669:79:0::2;::::0;50688:6;;15741:12:1;;50718:28:0::2;;;;;;;;;;;;50708:39;;;;;;50669:18;:79::i;:::-;50661:123;;;::::0;-1:-1:-1;;;50661:123:0;;15966:2:1;50661:123:0::2;::::0;::::2;15948:21:1::0;16005:2;15985:18;;;15978:30;16044:33;16024:18;;;16017:61;16095:18;;50661:123:0::2;15764:355:1::0;50661:123:0::2;49498:16:::0;;50823:7:::2;50799:21;50809:10;50799:9;:21::i;:::-;:31;;;;:::i;:::-;:51;;50791:98;;;;-1:-1:-1::0;;;50791:98:0::2;;;;;;;:::i;:::-;50896:26;50902:10;50914:7;50896:5;:26::i;53765:109::-:0;-1:-1:-1;;;;;22483:25:0;;53824:7;22483:25;;;:18;:25;;17564:2;22483:25;;;;17427:13;22483:49;;22482:80;53847:21;22394:176;52553:87;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;52615:8:::1;:17:::0;;-1:-1:-1;;52615:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52553:87::o;51288:139::-;51370:7;49717:17;49703:10;;;;;;;:31;;;;;;;;:::i;:::-;;49695:67;;;;-1:-1:-1;;;49695:67:0;;;;;;;:::i;:::-;49791:1;49777:11;:15;:54;;;;;49811:20;:18;:20::i;:::-;49796:11;:35;;49777:54;49769:87;;;;-1:-1:-1;;;49769:87:0;;;;;;;:::i;:::-;47508:3;49887:11;49871:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;49863:75;;;;-1:-1:-1;;;49863:75:0;;;;;;;:::i;:::-;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23:::1;7080:68;;;;-1:-1:-1::0;;;7080:68:0::1;;;;;;;:::i;:::-;51396:25:::2;51402:9;51413:7;51396:5;:25::i;7777:201::-:0;6941:6;;-1:-1:-1;;;;;6941:6:0;44593:10;7088:23;7080:68;;;;-1:-1:-1;;;7080:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7866:22:0;::::1;7858:73;;;::::0;-1:-1:-1;;;7858:73:0;;16326:2:1;7858:73:0::1;::::0;::::1;16308:21:1::0;16365:2;16345:18;;;16338:30;16404:34;16384:18;;;16377:62;-1:-1:-1;;;16455:18:1;;;16448:36;16501:19;;7858:73:0::1;16124:402:1::0;7858:73:0::1;7942:28;7961:8;7942:18;:28::i;30524:273::-:0;30581:4;30637:7;48116:1;30618:26;;:66;;;;;30671:13;;30661:7;:23;30618:66;:152;;;;-1:-1:-1;;30722:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30722:43:0;:48;;30524:273::o;23726:1129::-;23793:7;23828;;48116:1;23877:23;23873:915;;23930:13;;23923:4;:20;23919:869;;;23968:14;23985:23;;;:17;:23;;;;;;;-1:-1:-1;;;24074:23:0;;:28;;24070:699;;24593:113;24600:6;24610:1;24600:11;24593:113;;-1:-1:-1;;;24671:6:0;24653:25;;;;:17;:25;;;;;;24593:113;;24070:699;23945:843;23919:869;24816:31;;-1:-1:-1;;;24816:31:0;;;;;;;;;;;35763:2515;35878:27;35908;35927:7;35908:18;:27::i;:::-;35878:57;;35993:4;-1:-1:-1;;;;;35952:45:0;35968:19;-1:-1:-1;;;;;35952:45:0;;35948:86;;36006:28;;-1:-1:-1;;;36006:28:0;;;;;;;;;;;35948:86;36047:22;44593:10;-1:-1:-1;;;;;36073:27:0;;;;:87;;-1:-1:-1;36117:43:0;36134:4;44593:10;29145:164;:::i;36117:43::-;36073:147;;;-1:-1:-1;44593:10:0;36177:20;36189:7;36177:11;:20::i;:::-;-1:-1:-1;;;;;36177:43:0;;36073:147;36047:174;;36239:17;36234:66;;36265:35;;-1:-1:-1;;;36265:35:0;;;;;;;;;;;36234:66;-1:-1:-1;;;;;36315:16:0;;36311:52;;36340:23;;-1:-1:-1;;;36340:23:0;;;;;;;;;;;36311:52;36492:24;;;;:15;:24;;;;;;;;36485:31;;-1:-1:-1;;;;;;36485:31:0;;;-1:-1:-1;;;;;36884:24:0;;;;;:18;:24;;;;;36882:26;;-1:-1:-1;;36882:26:0;;;36953:22;;;;;;;36951:24;;-1:-1:-1;36951:24:0;;;37246:26;;;:17;:26;;;;;-1:-1:-1;;;37334:15:0;18081:3;37334:41;37292:84;;:128;;37246:174;;;37540:46;;:51;;37536:626;;37644:1;37634:11;;37612:19;37767:30;;;:17;:30;;;;;;:35;;37763:384;;37905:13;;37890:11;:28;37886:242;;38052:30;;;;:17;:30;;;;;:52;;;37886:242;37593:569;37536:626;38209:7;38205:2;-1:-1:-1;;;;;38190:27:0;38199:4;-1:-1:-1;;;;;38190:27:0;;;;;;;;;;;35867:2411;;35763:2515;;;:::o;8138:191::-;8231:6;;;-1:-1:-1;;;;;8248:17:0;;;-1:-1:-1;;;;;;8248:17:0;;;;;;;8281:40;;8231:6;;;8248:17;8231:6;;8281:40;;8212:16;;8281:40;8201:128;8138:191;:::o;25991:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26094:47:0;26113:27;26132:7;26113:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;25059:41:0;;;;18081:3;25145:32;;;25111:67;;-1:-1:-1;;;25111:67:0;-1:-1:-1;;;25208:23:0;;;:28;;-1:-1:-1;;;25189:47:0;-1:-1:-1;24949:295:0;33853:1656;33918:20;33941:13;-1:-1:-1;;;;;33969:16:0;;33965:48;;33994:19;;-1:-1:-1;;;33994:19:0;;;;;;;;;;;33965:48;34028:8;34040:1;34028:13;34024:44;;34050:18;;-1:-1:-1;;;34050:18:0;;;;;;;;;;;34024:44;-1:-1:-1;;;;;34617:22:0;;;;;;:18;:22;;;;17564:2;34617:22;;;:70;;34655:31;34643:44;;34617:70;;;34930:31;;;:17;:31;;;;;35023:15;18081:3;35023:41;34981:84;;-1:-1:-1;35101:13:0;;18344:3;35086:56;34981:162;34930:213;;:31;35224:23;;;35264:111;35291:40;;35316:14;;;;;-1:-1:-1;;;;;35291:40:0;;;35308:1;;35291:40;;35308:1;;35291:40;35370:3;35355:12;:18;35264:111;;-1:-1:-1;35391:13:0;:28;29376:170;;;:::o;41975:716::-;42159:88;;-1:-1:-1;;;42159:88:0;;42138:4;;-1:-1:-1;;;;;42159:45:0;;;;;:88;;44593:10;;42226:4;;42232:7;;42241:5;;42159:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42159:88:0;;;;;;;;-1:-1:-1;;42159:88:0;;;;;;;;;;;;:::i;:::-;;;42155:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42442:6;:13;42459:1;42442:18;42438:235;;42488:40;;-1:-1:-1;;;42488:40:0;;;;;;;;;;;42438:235;42631:6;42625:13;42616:6;42612:2;42608:15;42601:38;42155:529;-1:-1:-1;;;;;;42318:64:0;-1:-1:-1;;;42318:64:0;;-1:-1:-1;42155:529:0;41975:716;;;;;;:::o;51750:112::-;51815:13;51847:9;51840:16;;;;;:::i;469:723::-;525:13;746:5;755:1;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;3448:190;3573:4;3626;3597:25;3610:5;3617:4;3597:12;:25::i;:::-;:33;;3448:190;-1:-1:-1;;;;3448:190:0:o;3999:675::-;4082:7;4125:4;4082:7;4140:497;4164:5;:12;4160:1;:16;4140:497;;;4198:20;4221:5;4227:1;4221:8;;;;;;;;:::i;:::-;;;;;;;4198:31;;4264:12;4248;:28;4244:382;;4750:13;4800:15;;;4836:4;4829:15;;;4883:4;4867:21;;4376:57;;4244:382;;;4750:13;4800:15;;;4836:4;4829:15;;;4883:4;4867:21;;4553:57;;4244:382;-1:-1:-1;4178:3:0;;;;:::i;:::-;;;;4140:497;;;-1:-1:-1;4654:12:0;3999:675;-1:-1:-1;;;3999:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;2866:18;2858:6;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;3390:18;3382:6;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:328::-;3712:6;3720;3728;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3820:29;3839:9;3820:29;:::i;:::-;3810:39;;3868:38;3902:2;3891:9;3887:18;3868:38;:::i;:::-;3858:48;;3953:2;3942:9;3938:18;3925:32;3915:42;;3635:328;;;;;:::o;4153:271::-;4227:6;4280:2;4268:9;4259:7;4255:23;4251:32;4248:52;;;4296:1;4293;4286:12;4248:52;4335:9;4322:23;4374:1;4367:5;4364:12;4354:40;;4390:1;4387;4380:12;4429:186;4488:6;4541:2;4529:9;4520:7;4516:23;4512:32;4509:52;;;4557:1;4554;4547:12;4509:52;4580:29;4599:9;4580:29;:::i;4620:127::-;4681:10;4676:3;4672:20;4669:1;4662:31;4712:4;4709:1;4702:15;4736:4;4733:1;4726:15;4752:343;4899:2;4884:18;;4932:1;4921:13;;4911:144;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4911:144;5064:25;;;4752:343;:::o;5544:160::-;5609:20;;5665:13;;5658:21;5648:32;;5638:60;;5694:1;5691;5684:12;5709:254;5774:6;5782;5835:2;5823:9;5814:7;5810:23;5806:32;5803:52;;;5851:1;5848;5841:12;5803:52;5874:29;5893:9;5874:29;:::i;:::-;5864:39;;5922:35;5953:2;5942:9;5938:18;5922:35;:::i;:::-;5912:45;;5709:254;;;;;:::o;5968:667::-;6063:6;6071;6079;6087;6140:3;6128:9;6119:7;6115:23;6111:33;6108:53;;;6157:1;6154;6147:12;6108:53;6180:29;6199:9;6180:29;:::i;:::-;6170:39;;6228:38;6262:2;6251:9;6247:18;6228:38;:::i;:::-;6218:48;;6313:2;6302:9;6298:18;6285:32;6275:42;;6368:2;6357:9;6353:18;6340:32;6395:18;6387:6;6384:30;6381:50;;;6427:1;6424;6417:12;6381:50;6450:22;;6503:4;6495:13;;6491:27;-1:-1:-1;6481:55:1;;6532:1;6529;6522:12;6481:55;6555:74;6621:7;6616:2;6603:16;6598:2;6594;6590:11;6555:74;:::i;:::-;6545:84;;;5968:667;;;;;;;:::o;6640:1014::-;6733:6;6741;6794:2;6782:9;6773:7;6769:23;6765:32;6762:52;;;6810:1;6807;6800:12;6762:52;6846:9;6833:23;6823:33;;6875:2;6928;6917:9;6913:18;6900:32;6951:18;6992:2;6984:6;6981:14;6978:34;;;7008:1;7005;6998:12;6978:34;7046:6;7035:9;7031:22;7021:32;;7091:7;7084:4;7080:2;7076:13;7072:27;7062:55;;7113:1;7110;7103:12;7062:55;7149:2;7136:16;7171:2;7167;7164:10;7161:36;;;7177:18;;:::i;:::-;7223:2;7220:1;7216:10;7206:20;;7246:28;7270:2;7266;7262:11;7246:28;:::i;:::-;7308:15;;;7378:11;;;7374:20;;;7339:12;;;;7406:19;;;7403:39;;;7438:1;7435;7428:12;7403:39;7462:11;;;;7482:142;7498:6;7493:3;7490:15;7482:142;;;7564:17;;7552:30;;7515:12;;;;7602;;;;7482:142;;;7643:5;7633:15;;;;;;;;6640:1014;;;;;:::o;7659:180::-;7715:6;7768:2;7756:9;7747:7;7743:23;7739:32;7736:52;;;7784:1;7781;7774:12;7736:52;7807:26;7823:9;7807:26;:::i;7844:260::-;7912:6;7920;7973:2;7961:9;7952:7;7948:23;7944:32;7941:52;;;7989:1;7986;7979:12;7941:52;8012:29;8031:9;8012:29;:::i;:::-;8002:39;;8060:38;8094:2;8083:9;8079:18;8060:38;:::i;8109:254::-;8177:6;8185;8238:2;8226:9;8217:7;8213:23;8209:32;8206:52;;;8254:1;8251;8244:12;8206:52;8290:9;8277:23;8267:33;;8319:38;8353:2;8342:9;8338:18;8319:38;:::i;8368:380::-;8447:1;8443:12;;;;8490;;;8511:61;;8565:4;8557:6;8553:17;8543:27;;8511:61;8618:2;8610:6;8607:14;8587:18;8584:38;8581:161;;8664:10;8659:3;8655:20;8652:1;8645:31;8699:4;8696:1;8689:15;8727:4;8724:1;8717:15;8581:161;;8368:380;;;:::o;8753:356::-;8955:2;8937:21;;;8974:18;;;8967:30;9033:34;9028:2;9013:18;;9006:62;9100:2;9085:18;;8753:356::o;9814:347::-;10016:2;9998:21;;;10055:2;10035:18;;;10028:30;10094:25;10089:2;10074:18;;10067:53;10152:2;10137:18;;9814:347::o;10166:344::-;10368:2;10350:21;;;10407:2;10387:18;;;10380:30;-1:-1:-1;;;10441:2:1;10426:18;;10419:50;10501:2;10486:18;;10166:344::o;10515:127::-;10576:10;10571:3;10567:20;10564:1;10557:31;10607:4;10604:1;10597:15;10631:4;10628:1;10621:15;10647:128;10687:3;10718:1;10714:6;10711:1;10708:13;10705:39;;;10724:18;;:::i;:::-;-1:-1:-1;10760:9:1;;10647:128::o;10780:344::-;10982:2;10964:21;;;11021:2;11001:18;;;10994:30;-1:-1:-1;;;11055:2:1;11040:18;;11033:50;11115:2;11100:18;;10780:344::o;11476:168::-;11516:7;11582:1;11578;11574:6;11570:14;11567:1;11564:21;11559:1;11552:9;11545:17;11541:45;11538:71;;;11589:18;;:::i;:::-;-1:-1:-1;11629:9:1;;11476:168::o;11997:398::-;12199:2;12181:21;;;12238:2;12218:18;;;12211:30;12277:34;12272:2;12257:18;;12250:62;-1:-1:-1;;;12343:2:1;12328:18;;12321:32;12385:3;12370:19;;11997:398::o;13299:1527::-;13523:3;13561:6;13555:13;13587:4;13600:51;13644:6;13639:3;13634:2;13626:6;13622:15;13600:51;:::i;:::-;13714:13;;13673:16;;;;13736:55;13714:13;13673:16;13758:15;;;13736:55;:::i;:::-;13880:13;;13813:20;;;13853:1;;13940;13962:18;;;;14015;;;;14042:93;;14120:4;14110:8;14106:19;14094:31;;14042:93;14183:2;14173:8;14170:16;14150:18;14147:40;14144:167;;-1:-1:-1;;;14210:33:1;;14266:4;14263:1;14256:15;14296:4;14217:3;14284:17;14144:167;14327:18;14354:110;;;;14478:1;14473:328;;;;14320:481;;14354:110;-1:-1:-1;;14389:24:1;;14375:39;;14434:20;;;;-1:-1:-1;14354:110:1;;14473:328;13246:1;13239:14;;;13283:4;13270:18;;14568:1;14582:169;14596:8;14593:1;14590:15;14582:169;;;14678:14;;14663:13;;;14656:37;14721:16;;;;14613:10;;14582:169;;;14586:3;;14782:8;14775:5;14771:20;14764:27;;14320:481;-1:-1:-1;14817:3:1;;13299:1527;-1:-1:-1;;;;;;;;;;;13299:1527:1:o;16531:489::-;-1:-1:-1;;;;;16800:15:1;;;16782:34;;16852:15;;16847:2;16832:18;;16825:43;16899:2;16884:18;;16877:34;;;16947:3;16942:2;16927:18;;16920:31;;;16725:4;;16968:46;;16994:19;;16986:6;16968:46;:::i;:::-;16960:54;16531:489;-1:-1:-1;;;;;;16531:489:1:o;17025:249::-;17094:6;17147:2;17135:9;17126:7;17122:23;17118:32;17115:52;;;17163:1;17160;17153:12;17115:52;17195:9;17189:16;17214:30;17238:5;17214:30;:::i;17279:135::-;17318:3;17339:17;;;17336:43;;17359:18;;:::i;:::-;-1:-1:-1;17406:1:1;17395:13;;17279:135::o;17419:127::-;17480:10;17475:3;17471:20;17468:1;17461:31;17511:4;17508:1;17501:15;17535:4;17532:1;17525:15;17551:120;17591:1;17617;17607:35;;17622:18;;:::i;:::-;-1:-1:-1;17656:9:1;;17551:120::o;17676:125::-;17716:4;17744:1;17741;17738:8;17735:34;;;17749:18;;:::i;:::-;-1:-1:-1;17786:9:1;;17676:125::o;17806:112::-;17838:1;17864;17854:35;;17869:18;;:::i;:::-;-1:-1:-1;17903:9:1;;17806:112::o;17923:127::-;17984:10;17979:3;17975:20;17972:1;17965:31;18015:4;18012:1;18005:15;18039:4;18036:1;18029:15
Swarm Source
ipfs://d87946b3e28d577bcddbe7351d677b96e291a7e7715314a929477af79d227999
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.