ERC-721
Overview
Max Total Supply
3,200 AMSC
Holders
1,280
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
22 AMSCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ARABMETA
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-10 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts v4.4.1 (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. */ 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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // 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/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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/arabmeta2.sol pragma solidity ^0.8.7; contract ARABMETA is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; //Counters Counters.Counter internal _airdrops; string public baseURI; string public notRevealedUri; bytes32 private whitelistRoot; //Inventory uint16 public maxMintAmountPerTransaction = 20; uint16 public maxMintAmountPerWalletWL = 10; uint256 public maxSupply = 5555; //Prices uint256 public cost = 0.4 ether; uint256 public whitelistCost = 0.1 ether; //Utility bool public paused = true; bool public revealed = false; bool public whiteListingSale = true; struct MintTracker{ bool _ISEXIST; uint256 _AMOUNT; } modifier onlyEOA() { require(msg.sender == tx.origin, "Must use EOA"); _; } //mapping mapping(address => bool) private whitelistedMints; mapping(address => MintTracker) public WHITELISTTRACKER; constructor(string memory _notRevealedUrl) ERC721("ARAB META", "AMSC") { notRevealedUri = _notRevealedUrl; } function setWhitelistingRoot(bytes32 _root) public onlyOwner { whitelistRoot = _root; } // Verify that a given leaf is in the tree. function _verify(bytes32 _leafNode, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, whitelistRoot, _leafNode); } // Generate the leaf node (just the hash of tokenID concatenated with the account address) function _leaf(address account) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account)); } //whitelist mint function mintWhitelist(uint256 mintAmount,bytes32[] calldata proof) public payable onlyEOA(){ uint256 supply = totalSupply(); require(supply + mintAmount <= maxSupply, "Exceeds Max Supply"); if (msg.sender != owner()) { require(!paused); require(whiteListingSale, "Whitelisting not enabled"); require(_verify(_leaf(msg.sender), proof), "Invalid proof"); require(msg.value >= whitelistCost * mintAmount, "Insufficent funds"); if(WHITELISTTRACKER[msg.sender]._ISEXIST){ require((WHITELISTTRACKER[msg.sender]._AMOUNT + mintAmount) <= maxMintAmountPerWalletWL, "Sorry you cant mint any more"); } else{ require(mintAmount <= maxMintAmountPerWalletWL, "Sorry you cant mint more"); } } for (uint256 i = 1; i <= mintAmount; i++) { _safeMint(msg.sender, supply + i); WHITELISTTRACKER[msg.sender]._AMOUNT+=1; } WHITELISTTRACKER[msg.sender]._ISEXIST = true; } // public function mint(uint256 _mintAmount) public payable onlyEOA(){ uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "Exceeds Max Supply"); if (msg.sender != owner()) { require(!paused); require(!whiteListingSale, "You cant mint on Presale"); require(_mintAmount > 0, "Mint amount should be greater than 0"); require(_mintAmount <= maxMintAmountPerTransaction, "Sorry you cant mint more than this amount at once"); require(msg.value >= cost * _mintAmount, "Insufficent funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function gift(address _to, uint256 _mintAmount) public onlyOwner { uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "Exceeds Max Supply"); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); _airdrops.increment(); } } function totalAirdrops() public view returns (uint256) { return _airdrops.current(); } function airdrop(address[] memory _airdropAddresses) public onlyOwner { uint256 supply = totalSupply(); require(supply + _airdropAddresses.length <= maxSupply, "Exceeds Max Supply"); for (uint256 i = 0; i < _airdropAddresses.length; i++) { address to = _airdropAddresses[i]; _safeMint(to, supply + i+1); _airdrops.increment(); } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function getTotalMints() public view returns (uint256) { return totalSupply() - _airdrops.current(); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return notRevealedUri; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(),".json")) : ""; } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function toggleReveal() public onlyOwner { revealed = !revealed; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setWhitelistingCost(uint256 _newCost) public onlyOwner { whitelistCost = _newCost; } function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner { maxMintAmountPerTransaction = _amount; } function setMaxMintAmountPerWalletWL(uint16 _amount) public onlyOwner { maxMintAmountPerWalletWL = _amount; } function setMaxSupply(uint256 _supply) public onlyOwner { maxSupply = _supply; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function togglePause() public onlyOwner { paused = !paused; } function toggleWhiteSale() public onlyOwner { whiteListingSale = !whiteListingSale; } function StartPublicSale() public onlyOwner { whiteListingSale = false; paused = false; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_notRevealedUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"StartPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WHITELISTTRACKER","outputs":[{"internalType":"bool","name":"_ISEXIST","type":"bool"},{"internalType":"uint256","name":"_AMOUNT","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"getTotalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWalletWL","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWalletWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAirdrops","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListingSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600f805463ffffffff1916620a00141790556115b360105567058d15e17628000060115567016345785d8a00006012556013805462ffffff1916620100011790553480156200005257600080fd5b50604051620033553803806200335583398101604081905262000075916200020e565b604080518082018252600981526841524142204d45544160b81b602080830191825283518085019094526004845263414d534360e01b908401528151919291620000c29160009162000168565b508051620000d890600190602084019062000168565b505050620000f5620000ef6200011260201b60201c565b62000116565b80516200010a90600d90602084019062000168565b50506200033d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017690620002ea565b90600052602060002090601f0160209004810192826200019a5760008555620001e5565b82601f10620001b557805160ff1916838001178555620001e5565b82800160010185558215620001e5579182015b82811115620001e5578251825591602001919060010190620001c8565b50620001f3929150620001f7565b5090565b5b80821115620001f35760008155600101620001f8565b600060208083850312156200022257600080fd5b82516001600160401b03808211156200023a57600080fd5b818501915085601f8301126200024f57600080fd5b81518181111562000264576200026462000327565b604051601f8201601f19908116603f011681019083821181831017156200028f576200028f62000327565b816040528281528886848701011115620002a857600080fd5b600093505b82841015620002cc5784840186015181850187015292850192620002ad565b82841115620002de5760008684830101525b98975050505050505050565b600181811c90821680620002ff57607f821691505b602082108114156200032157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613008806200034d6000396000f3fe6080604052600436106102c95760003560e01c8063729ad39e11610175578063cbce4c97116100dc578063e97800cb11610095578063ee8912121161006f578063ee89121214610840578063f2c4ce1e14610860578063f2fde38b14610880578063f4ac75b4146108a057600080fd5b8063e97800cb146107c2578063e985e9c5146107e2578063ed8161791461082b57600080fd5b8063cbce4c9714610721578063d5abeb0114610741578063dfc33dd114610757578063e5a88cdb14610777578063e6f0ce0614610797578063e7b99ec7146107ac57600080fd5b8063a0712d681161012e578063a0712d681461067e578063a22cb46514610691578063b88d4fde146106b1578063bbb89744146106d1578063c4ae3168146106ec578063c87b56dd1461070157600080fd5b8063729ad39e146105c25780638da5cb5b146105e2578063917ea7b51461060057806395d89b4114610634578063971a1ca2146106495780639807bc2f1461065e57600080fd5b8063438b6300116102345780635c975abb116101ed5780636ec0dfe5116101c75780636ec0dfe5146105585780636f8b44b01461056d57806370a082311461058d578063715018a6146105ad57600080fd5b80635c975abb146105095780636352211e146105235780636c0360eb1461054357600080fd5b8063438b63001461044857806344a0d68a146104755780634f6ccce71461049557806351830227146104b557806355f804b3146104d45780635b8ad429146104f457600080fd5b806313faede61161028657806313faede6146103a757806318160ddd146103cb57806323b872dd146103e05780632f745c59146104005780633ccfd60b1461042057806342842e0e1461042857600080fd5b806301ffc9a7146102ce578063061431a81461030357806306fdde0314610318578063081812fc1461033a578063081c8c4414610372578063095ea7b314610387575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612afc565b6108f1565b60405190151581526020015b60405180910390f35b610316610311366004612ba3565b61091c565b005b34801561032457600080fd5b5061032d610c82565b6040516102fa9190612d0e565b34801561034657600080fd5b5061035a610355366004612ae3565b610d14565b6040516001600160a01b0390911681526020016102fa565b34801561037e57600080fd5b5061032d610da9565b34801561039357600080fd5b506103166103a2366004612a05565b610e37565b3480156103b357600080fd5b506103bd60115481565b6040519081526020016102fa565b3480156103d757600080fd5b506008546103bd565b3480156103ec57600080fd5b506103166103fb366004612911565b610f4d565b34801561040c57600080fd5b506103bd61041b366004612a05565b610f7e565b610316611014565b34801561043457600080fd5b50610316610443366004612911565b6110b2565b34801561045457600080fd5b506104686104633660046128c3565b6110cd565b6040516102fa9190612cca565b34801561048157600080fd5b50610316610490366004612ae3565b61116f565b3480156104a157600080fd5b506103bd6104b0366004612ae3565b61119e565b3480156104c157600080fd5b506013546102ee90610100900460ff1681565b3480156104e057600080fd5b506103166104ef366004612b36565b611231565b34801561050057600080fd5b50610316611272565b34801561051557600080fd5b506013546102ee9060ff1681565b34801561052f57600080fd5b5061035a61053e366004612ae3565b6112b9565b34801561054f57600080fd5b5061032d611330565b34801561056457600080fd5b506103bd61133d565b34801561057957600080fd5b50610316610588366004612ae3565b61135a565b34801561059957600080fd5b506103bd6105a83660046128c3565b611389565b3480156105b957600080fd5b50610316611410565b3480156105ce57600080fd5b506103166105dd366004612a2f565b611446565b3480156105ee57600080fd5b50600a546001600160a01b031661035a565b34801561060c57600080fd5b50600f546106219062010000900461ffff1681565b60405161ffff90911681526020016102fa565b34801561064057600080fd5b5061032d611511565b34801561065557600080fd5b506103bd611520565b34801561066a57600080fd5b50610316610679366004612b7f565b61152b565b61031661068c366004612ae3565b611575565b34801561069d57600080fd5b506103166106ac3660046129c9565b6117ae565b3480156106bd57600080fd5b506103166106cc36600461294d565b6117b9565b3480156106dd57600080fd5b50600f546106219061ffff1681565b3480156106f857600080fd5b506103166117f1565b34801561070d57600080fd5b5061032d61071c366004612ae3565b61182f565b34801561072d57600080fd5b5061031661073c366004612a05565b6119b0565b34801561074d57600080fd5b506103bd60105481565b34801561076357600080fd5b50610316610772366004612ae3565b611a4b565b34801561078357600080fd5b506013546102ee9062010000900460ff1681565b3480156107a357600080fd5b50610316611a7a565b3480156107b857600080fd5b506103bd60125481565b3480156107ce57600080fd5b506103166107dd366004612b7f565b611ab2565b3480156107ee57600080fd5b506102ee6107fd3660046128de565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083757600080fd5b50610316611af4565b34801561084c57600080fd5b5061031661085b366004612ae3565b611b3d565b34801561086c57600080fd5b5061031661087b366004612b36565b611b6c565b34801561088c57600080fd5b5061031661089b3660046128c3565b611ba9565b3480156108ac57600080fd5b506108da6108bb3660046128c3565b6015602052600090815260409020805460019091015460ff9091169082565b6040805192151583526020830191909152016102fa565b60006001600160e01b0319821663780e9d6360e01b1480610916575061091682611c41565b92915050565b33321461095f5760405162461bcd60e51b815260206004820152600c60248201526b4d7573742075736520454f4160a01b60448201526064015b60405180910390fd5b600061096a60085490565b60105490915061097a8583612e56565b11156109985760405162461bcd60e51b815260040161095690612d21565b600a546001600160a01b03163314610c075760135460ff16156109ba57600080fd5b60135462010000900460ff16610a125760405162461bcd60e51b815260206004820152601860248201527f57686974656c697374696e67206e6f7420656e61626c656400000000000000006044820152606401610956565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610a8690848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611c9192505050565b610ac25760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610956565b83601254610ad09190612e82565b341015610b135760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742066756e647360781b6044820152606401610956565b3360009081526015602052604090205460ff1615610bab57600f54336000908152601560205260409020600101546201000090910461ffff1690610b58908690612e56565b1115610ba65760405162461bcd60e51b815260206004820152601c60248201527f536f72727920796f752063616e74206d696e7420616e79206d6f7265000000006044820152606401610956565b610c07565b600f5462010000900461ffff16841115610c075760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610956565b60015b848111610c6157610c2433610c1f8385612e56565b611ca0565b3360009081526015602052604081206001908101805491929091610c49908490612e56565b90915550819050610c5981612f1f565b915050610c0a565b5050336000908152601560205260409020805460ff19166001179055505050565b606060008054610c9190612ee4565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbd90612ee4565b8015610d0a5780601f10610cdf57610100808354040283529160200191610d0a565b820191906000526020600020905b815481529060010190602001808311610ced57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610956565b506000908152600460205260409020546001600160a01b031690565b600d8054610db690612ee4565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290612ee4565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b6000610e42826112b9565b9050806001600160a01b0316836001600160a01b03161415610eb05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610956565b336001600160a01b0382161480610ecc5750610ecc81336107fd565b610f3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610956565b610f488383611cba565b505050565b610f573382611d28565b610f735760405162461bcd60e51b815260040161095690612dd4565b610f48838383611e1f565b6000610f8983611389565b8210610feb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610956565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461103e5760405162461bcd60e51b815260040161095690612d9f565b6000611052600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461109c576040519150601f19603f3d011682016040523d82523d6000602084013e6110a1565b606091505b50509050806110af57600080fd5b50565b610f48838383604051806020016040528060008152506117b9565b606060006110da83611389565b905060008167ffffffffffffffff8111156110f7576110f7612fa6565b604051908082528060200260200182016040528015611120578160200160208202803683370190505b50905060005b82811015611167576111388582610f7e565b82828151811061114a5761114a612f90565b60209081029190910101528061115f81612f1f565b915050611126565b509392505050565b600a546001600160a01b031633146111995760405162461bcd60e51b815260040161095690612d9f565b601155565b60006111a960085490565b821061120c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610956565b6008828154811061121f5761121f612f90565b90600052602060002001549050919050565b600a546001600160a01b0316331461125b5760405162461bcd60e51b815260040161095690612d9f565b805161126e90600c9060208401906127bb565b5050565b600a546001600160a01b0316331461129c5760405162461bcd60e51b815260040161095690612d9f565b6013805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806109165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610956565b600c8054610db690612ee4565b6000611348600b5490565b6008546113559190612ea1565b905090565b600a546001600160a01b031633146113845760405162461bcd60e51b815260040161095690612d9f565b601055565b60006001600160a01b0382166113f45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610956565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461143a5760405162461bcd60e51b815260040161095690612d9f565b6114446000611fca565b565b600a546001600160a01b031633146114705760405162461bcd60e51b815260040161095690612d9f565b600061147b60085490565b905060105482518261148d9190612e56565b11156114ab5760405162461bcd60e51b815260040161095690612d21565b60005b8251811015610f485760008382815181106114cb576114cb612f90565b602002602001015190506114f08183856114e59190612e56565b610c1f906001612e56565b6114fe600b80546001019055565b508061150981612f1f565b9150506114ae565b606060018054610c9190612ee4565b6000611355600b5490565b600a546001600160a01b031633146115555760405162461bcd60e51b815260040161095690612d9f565b600f805461ffff909216620100000263ffff000019909216919091179055565b3332146115b35760405162461bcd60e51b815260206004820152600c60248201526b4d7573742075736520454f4160a01b6044820152606401610956565b60006115be60085490565b6010549091506115ce8383612e56565b11156115ec5760405162461bcd60e51b815260040161095690612d21565b600a546001600160a01b031633146117845760135460ff161561160e57600080fd5b60135462010000900460ff16156116675760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c6500000000000000006044820152606401610956565b600082116116c35760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610956565b600f5461ffff168211156117335760405162461bcd60e51b815260206004820152603160248201527f536f72727920796f752063616e74206d696e74206d6f7265207468616e207468604482015270697320616d6f756e74206174206f6e636560781b6064820152608401610956565b816011546117419190612e82565b3410156117845760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742066756e647360781b6044820152606401610956565b60015b828111610f485761179c33610c1f8385612e56565b806117a681612f1f565b915050611787565b61126e33838361201c565b6117c33383611d28565b6117df5760405162461bcd60e51b815260040161095690612dd4565b6117eb848484846120eb565b50505050565b600a546001600160a01b0316331461181b5760405162461bcd60e51b815260040161095690612d9f565b6013805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166118ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610956565b601354610100900460ff1661194f57600d80546118ca90612ee4565b80601f01602080910402602001604051908101604052809291908181526020018280546118f690612ee4565b80156119435780601f1061191857610100808354040283529160200191611943565b820191906000526020600020905b81548152906001019060200180831161192657829003601f168201915b50505050509050919050565b600061195961211e565b9050600081511161197957604051806020016040528060008152506119a4565b806119838461212d565b604051602001611994929190612c4e565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146119da5760405162461bcd60e51b815260040161095690612d9f565b60006119e560085490565b6010549091506119f58383612e56565b1115611a135760405162461bcd60e51b815260040161095690612d21565b60015b8281116117eb57611a2b84610c1f8385612e56565b611a39600b80546001019055565b80611a4381612f1f565b915050611a16565b600a546001600160a01b03163314611a755760405162461bcd60e51b815260040161095690612d9f565b601255565b600a546001600160a01b03163314611aa45760405162461bcd60e51b815260040161095690612d9f565b6013805462ff00ff19169055565b600a546001600160a01b03163314611adc5760405162461bcd60e51b815260040161095690612d9f565b600f805461ffff191661ffff92909216919091179055565b600a546001600160a01b03163314611b1e5760405162461bcd60e51b815260040161095690612d9f565b6013805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b03163314611b675760405162461bcd60e51b815260040161095690612d9f565b600e55565b600a546001600160a01b03163314611b965760405162461bcd60e51b815260040161095690612d9f565b805161126e90600d9060208401906127bb565b600a546001600160a01b03163314611bd35760405162461bcd60e51b815260040161095690612d9f565b6001600160a01b038116611c385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610956565b6110af81611fca565b60006001600160e01b031982166380ac58cd60e01b1480611c7257506001600160e01b03198216635b5e139f60e01b145b8061091657506301ffc9a760e01b6001600160e01b0319831614610916565b60006119a482600e548561222b565b61126e828260405180602001604052806000815250612241565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cef826112b9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611da15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610956565b6000611dac836112b9565b9050806001600160a01b0316846001600160a01b03161480611de75750836001600160a01b0316611ddc84610d14565b6001600160a01b0316145b80611e1757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e32826112b9565b6001600160a01b031614611e9a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610956565b6001600160a01b038216611efc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610956565b611f07838383612274565b611f12600082611cba565b6001600160a01b0383166000908152600360205260408120805460019290611f3b908490612ea1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f69908490612e56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561207e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610956565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120f6848484611e1f565b6121028484848461232c565b6117eb5760405162461bcd60e51b815260040161095690612d4d565b6060600c8054610c9190612ee4565b6060816121515750506040805180820190915260018152600360fc1b602082015290565b8160005b811561217b578061216581612f1f565b91506121749050600a83612e6e565b9150612155565b60008167ffffffffffffffff81111561219657612196612fa6565b6040519080825280601f01601f1916602001820160405280156121c0576020820181803683370190505b5090505b8415611e17576121d5600183612ea1565b91506121e2600a86612f3a565b6121ed906030612e56565b60f81b81838151811061220257612202612f90565b60200101906001600160f81b031916908160001a905350612224600a86612e6e565b94506121c4565b6000826122388584612439565b14949350505050565b61224b83836124dd565b612258600084848461232c565b610f485760405162461bcd60e51b815260040161095690612d4d565b6001600160a01b0383166122cf576122ca81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122f2565b816001600160a01b0316836001600160a01b0316146122f2576122f2838261262b565b6001600160a01b03821661230957610f48816126c8565b826001600160a01b0316826001600160a01b031614610f4857610f488282612777565b60006001600160a01b0384163b1561242e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612370903390899088908890600401612c8d565b602060405180830381600087803b15801561238a57600080fd5b505af19250505080156123ba575060408051601f3d908101601f191682019092526123b791810190612b19565b60015b612414573d8080156123e8576040519150601f19603f3d011682016040523d82523d6000602084013e6123ed565b606091505b50805161240c5760405162461bcd60e51b815260040161095690612d4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e17565b506001949350505050565b600081815b845181101561116757600085828151811061245b5761245b612f90565b6020026020010151905080831161249d5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506124ca565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806124d581612f1f565b91505061243e565b6001600160a01b0382166125335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610956565b6000818152600260205260409020546001600160a01b0316156125985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610956565b6125a460008383612274565b6001600160a01b03821660009081526003602052604081208054600192906125cd908490612e56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161263884611389565b6126429190612ea1565b600083815260076020526040902054909150808214612695576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126da90600190612ea1565b6000838152600960205260408120546008805493945090928490811061270257612702612f90565b90600052602060002001549050806008838154811061272357612723612f90565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061275b5761275b612f7a565b6001900381819060005260206000200160009055905550505050565b600061278283611389565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127c790612ee4565b90600052602060002090601f0160209004810192826127e9576000855561282f565b82601f1061280257805160ff191683800117855561282f565b8280016001018555821561282f579182015b8281111561282f578251825591602001919060010190612814565b5061283b92915061283f565b5090565b5b8082111561283b5760008155600101612840565b600067ffffffffffffffff83111561286e5761286e612fa6565b612881601f8401601f1916602001612e25565b905082815283838301111561289557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119ab57600080fd5b6000602082840312156128d557600080fd5b6119a4826128ac565b600080604083850312156128f157600080fd5b6128fa836128ac565b9150612908602084016128ac565b90509250929050565b60008060006060848603121561292657600080fd5b61292f846128ac565b925061293d602085016128ac565b9150604084013590509250925092565b6000806000806080858703121561296357600080fd5b61296c856128ac565b935061297a602086016128ac565b925060408501359150606085013567ffffffffffffffff81111561299d57600080fd5b8501601f810187136129ae57600080fd5b6129bd87823560208401612854565b91505092959194509250565b600080604083850312156129dc57600080fd5b6129e5836128ac565b9150602083013580151581146129fa57600080fd5b809150509250929050565b60008060408385031215612a1857600080fd5b612a21836128ac565b946020939093013593505050565b60006020808385031215612a4257600080fd5b823567ffffffffffffffff80821115612a5a57600080fd5b818501915085601f830112612a6e57600080fd5b813581811115612a8057612a80612fa6565b8060051b9150612a91848301612e25565b8181528481019084860184860187018a1015612aac57600080fd5b600095505b83861015612ad657612ac2816128ac565b835260019590950194918601918601612ab1565b5098975050505050505050565b600060208284031215612af557600080fd5b5035919050565b600060208284031215612b0e57600080fd5b81356119a481612fbc565b600060208284031215612b2b57600080fd5b81516119a481612fbc565b600060208284031215612b4857600080fd5b813567ffffffffffffffff811115612b5f57600080fd5b8201601f81018413612b7057600080fd5b611e1784823560208401612854565b600060208284031215612b9157600080fd5b813561ffff811681146119a457600080fd5b600080600060408486031215612bb857600080fd5b83359250602084013567ffffffffffffffff80821115612bd757600080fd5b818601915086601f830112612beb57600080fd5b813581811115612bfa57600080fd5b8760208260051b8501011115612c0f57600080fd5b6020830194508093505050509250925092565b60008151808452612c3a816020860160208601612eb8565b601f01601f19169290920160200192915050565b60008351612c60818460208801612eb8565b835190830190612c74818360208801612eb8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cc090830184612c22565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d0257835183529284019291840191600101612ce6565b50909695505050505050565b6020815260006119a46020830184612c22565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e4e57612e4e612fa6565b604052919050565b60008219821115612e6957612e69612f4e565b500190565b600082612e7d57612e7d612f64565b500490565b6000816000190483118215151615612e9c57612e9c612f4e565b500290565b600082821015612eb357612eb3612f4e565b500390565b60005b83811015612ed3578181015183820152602001612ebb565b838111156117eb5750506000910152565b600181811c90821680612ef857607f821691505b60208210811415612f1957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f3357612f33612f4e565b5060010190565b600082612f4957612f49612f64565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110af57600080fdfea26469706673582212200193cd727a2ba7878c5952d2dd80dd8435b9bec00a3398a7e3f1653ed163a02464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102c95760003560e01c8063729ad39e11610175578063cbce4c97116100dc578063e97800cb11610095578063ee8912121161006f578063ee89121214610840578063f2c4ce1e14610860578063f2fde38b14610880578063f4ac75b4146108a057600080fd5b8063e97800cb146107c2578063e985e9c5146107e2578063ed8161791461082b57600080fd5b8063cbce4c9714610721578063d5abeb0114610741578063dfc33dd114610757578063e5a88cdb14610777578063e6f0ce0614610797578063e7b99ec7146107ac57600080fd5b8063a0712d681161012e578063a0712d681461067e578063a22cb46514610691578063b88d4fde146106b1578063bbb89744146106d1578063c4ae3168146106ec578063c87b56dd1461070157600080fd5b8063729ad39e146105c25780638da5cb5b146105e2578063917ea7b51461060057806395d89b4114610634578063971a1ca2146106495780639807bc2f1461065e57600080fd5b8063438b6300116102345780635c975abb116101ed5780636ec0dfe5116101c75780636ec0dfe5146105585780636f8b44b01461056d57806370a082311461058d578063715018a6146105ad57600080fd5b80635c975abb146105095780636352211e146105235780636c0360eb1461054357600080fd5b8063438b63001461044857806344a0d68a146104755780634f6ccce71461049557806351830227146104b557806355f804b3146104d45780635b8ad429146104f457600080fd5b806313faede61161028657806313faede6146103a757806318160ddd146103cb57806323b872dd146103e05780632f745c59146104005780633ccfd60b1461042057806342842e0e1461042857600080fd5b806301ffc9a7146102ce578063061431a81461030357806306fdde0314610318578063081812fc1461033a578063081c8c4414610372578063095ea7b314610387575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612afc565b6108f1565b60405190151581526020015b60405180910390f35b610316610311366004612ba3565b61091c565b005b34801561032457600080fd5b5061032d610c82565b6040516102fa9190612d0e565b34801561034657600080fd5b5061035a610355366004612ae3565b610d14565b6040516001600160a01b0390911681526020016102fa565b34801561037e57600080fd5b5061032d610da9565b34801561039357600080fd5b506103166103a2366004612a05565b610e37565b3480156103b357600080fd5b506103bd60115481565b6040519081526020016102fa565b3480156103d757600080fd5b506008546103bd565b3480156103ec57600080fd5b506103166103fb366004612911565b610f4d565b34801561040c57600080fd5b506103bd61041b366004612a05565b610f7e565b610316611014565b34801561043457600080fd5b50610316610443366004612911565b6110b2565b34801561045457600080fd5b506104686104633660046128c3565b6110cd565b6040516102fa9190612cca565b34801561048157600080fd5b50610316610490366004612ae3565b61116f565b3480156104a157600080fd5b506103bd6104b0366004612ae3565b61119e565b3480156104c157600080fd5b506013546102ee90610100900460ff1681565b3480156104e057600080fd5b506103166104ef366004612b36565b611231565b34801561050057600080fd5b50610316611272565b34801561051557600080fd5b506013546102ee9060ff1681565b34801561052f57600080fd5b5061035a61053e366004612ae3565b6112b9565b34801561054f57600080fd5b5061032d611330565b34801561056457600080fd5b506103bd61133d565b34801561057957600080fd5b50610316610588366004612ae3565b61135a565b34801561059957600080fd5b506103bd6105a83660046128c3565b611389565b3480156105b957600080fd5b50610316611410565b3480156105ce57600080fd5b506103166105dd366004612a2f565b611446565b3480156105ee57600080fd5b50600a546001600160a01b031661035a565b34801561060c57600080fd5b50600f546106219062010000900461ffff1681565b60405161ffff90911681526020016102fa565b34801561064057600080fd5b5061032d611511565b34801561065557600080fd5b506103bd611520565b34801561066a57600080fd5b50610316610679366004612b7f565b61152b565b61031661068c366004612ae3565b611575565b34801561069d57600080fd5b506103166106ac3660046129c9565b6117ae565b3480156106bd57600080fd5b506103166106cc36600461294d565b6117b9565b3480156106dd57600080fd5b50600f546106219061ffff1681565b3480156106f857600080fd5b506103166117f1565b34801561070d57600080fd5b5061032d61071c366004612ae3565b61182f565b34801561072d57600080fd5b5061031661073c366004612a05565b6119b0565b34801561074d57600080fd5b506103bd60105481565b34801561076357600080fd5b50610316610772366004612ae3565b611a4b565b34801561078357600080fd5b506013546102ee9062010000900460ff1681565b3480156107a357600080fd5b50610316611a7a565b3480156107b857600080fd5b506103bd60125481565b3480156107ce57600080fd5b506103166107dd366004612b7f565b611ab2565b3480156107ee57600080fd5b506102ee6107fd3660046128de565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083757600080fd5b50610316611af4565b34801561084c57600080fd5b5061031661085b366004612ae3565b611b3d565b34801561086c57600080fd5b5061031661087b366004612b36565b611b6c565b34801561088c57600080fd5b5061031661089b3660046128c3565b611ba9565b3480156108ac57600080fd5b506108da6108bb3660046128c3565b6015602052600090815260409020805460019091015460ff9091169082565b6040805192151583526020830191909152016102fa565b60006001600160e01b0319821663780e9d6360e01b1480610916575061091682611c41565b92915050565b33321461095f5760405162461bcd60e51b815260206004820152600c60248201526b4d7573742075736520454f4160a01b60448201526064015b60405180910390fd5b600061096a60085490565b60105490915061097a8583612e56565b11156109985760405162461bcd60e51b815260040161095690612d21565b600a546001600160a01b03163314610c075760135460ff16156109ba57600080fd5b60135462010000900460ff16610a125760405162461bcd60e51b815260206004820152601860248201527f57686974656c697374696e67206e6f7420656e61626c656400000000000000006044820152606401610956565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610a8690848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611c9192505050565b610ac25760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610956565b83601254610ad09190612e82565b341015610b135760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742066756e647360781b6044820152606401610956565b3360009081526015602052604090205460ff1615610bab57600f54336000908152601560205260409020600101546201000090910461ffff1690610b58908690612e56565b1115610ba65760405162461bcd60e51b815260206004820152601c60248201527f536f72727920796f752063616e74206d696e7420616e79206d6f7265000000006044820152606401610956565b610c07565b600f5462010000900461ffff16841115610c075760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610956565b60015b848111610c6157610c2433610c1f8385612e56565b611ca0565b3360009081526015602052604081206001908101805491929091610c49908490612e56565b90915550819050610c5981612f1f565b915050610c0a565b5050336000908152601560205260409020805460ff19166001179055505050565b606060008054610c9190612ee4565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbd90612ee4565b8015610d0a5780601f10610cdf57610100808354040283529160200191610d0a565b820191906000526020600020905b815481529060010190602001808311610ced57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610956565b506000908152600460205260409020546001600160a01b031690565b600d8054610db690612ee4565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290612ee4565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b6000610e42826112b9565b9050806001600160a01b0316836001600160a01b03161415610eb05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610956565b336001600160a01b0382161480610ecc5750610ecc81336107fd565b610f3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610956565b610f488383611cba565b505050565b610f573382611d28565b610f735760405162461bcd60e51b815260040161095690612dd4565b610f48838383611e1f565b6000610f8983611389565b8210610feb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610956565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461103e5760405162461bcd60e51b815260040161095690612d9f565b6000611052600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461109c576040519150601f19603f3d011682016040523d82523d6000602084013e6110a1565b606091505b50509050806110af57600080fd5b50565b610f48838383604051806020016040528060008152506117b9565b606060006110da83611389565b905060008167ffffffffffffffff8111156110f7576110f7612fa6565b604051908082528060200260200182016040528015611120578160200160208202803683370190505b50905060005b82811015611167576111388582610f7e565b82828151811061114a5761114a612f90565b60209081029190910101528061115f81612f1f565b915050611126565b509392505050565b600a546001600160a01b031633146111995760405162461bcd60e51b815260040161095690612d9f565b601155565b60006111a960085490565b821061120c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610956565b6008828154811061121f5761121f612f90565b90600052602060002001549050919050565b600a546001600160a01b0316331461125b5760405162461bcd60e51b815260040161095690612d9f565b805161126e90600c9060208401906127bb565b5050565b600a546001600160a01b0316331461129c5760405162461bcd60e51b815260040161095690612d9f565b6013805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806109165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610956565b600c8054610db690612ee4565b6000611348600b5490565b6008546113559190612ea1565b905090565b600a546001600160a01b031633146113845760405162461bcd60e51b815260040161095690612d9f565b601055565b60006001600160a01b0382166113f45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610956565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461143a5760405162461bcd60e51b815260040161095690612d9f565b6114446000611fca565b565b600a546001600160a01b031633146114705760405162461bcd60e51b815260040161095690612d9f565b600061147b60085490565b905060105482518261148d9190612e56565b11156114ab5760405162461bcd60e51b815260040161095690612d21565b60005b8251811015610f485760008382815181106114cb576114cb612f90565b602002602001015190506114f08183856114e59190612e56565b610c1f906001612e56565b6114fe600b80546001019055565b508061150981612f1f565b9150506114ae565b606060018054610c9190612ee4565b6000611355600b5490565b600a546001600160a01b031633146115555760405162461bcd60e51b815260040161095690612d9f565b600f805461ffff909216620100000263ffff000019909216919091179055565b3332146115b35760405162461bcd60e51b815260206004820152600c60248201526b4d7573742075736520454f4160a01b6044820152606401610956565b60006115be60085490565b6010549091506115ce8383612e56565b11156115ec5760405162461bcd60e51b815260040161095690612d21565b600a546001600160a01b031633146117845760135460ff161561160e57600080fd5b60135462010000900460ff16156116675760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c6500000000000000006044820152606401610956565b600082116116c35760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610956565b600f5461ffff168211156117335760405162461bcd60e51b815260206004820152603160248201527f536f72727920796f752063616e74206d696e74206d6f7265207468616e207468604482015270697320616d6f756e74206174206f6e636560781b6064820152608401610956565b816011546117419190612e82565b3410156117845760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742066756e647360781b6044820152606401610956565b60015b828111610f485761179c33610c1f8385612e56565b806117a681612f1f565b915050611787565b61126e33838361201c565b6117c33383611d28565b6117df5760405162461bcd60e51b815260040161095690612dd4565b6117eb848484846120eb565b50505050565b600a546001600160a01b0316331461181b5760405162461bcd60e51b815260040161095690612d9f565b6013805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166118ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610956565b601354610100900460ff1661194f57600d80546118ca90612ee4565b80601f01602080910402602001604051908101604052809291908181526020018280546118f690612ee4565b80156119435780601f1061191857610100808354040283529160200191611943565b820191906000526020600020905b81548152906001019060200180831161192657829003601f168201915b50505050509050919050565b600061195961211e565b9050600081511161197957604051806020016040528060008152506119a4565b806119838461212d565b604051602001611994929190612c4e565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146119da5760405162461bcd60e51b815260040161095690612d9f565b60006119e560085490565b6010549091506119f58383612e56565b1115611a135760405162461bcd60e51b815260040161095690612d21565b60015b8281116117eb57611a2b84610c1f8385612e56565b611a39600b80546001019055565b80611a4381612f1f565b915050611a16565b600a546001600160a01b03163314611a755760405162461bcd60e51b815260040161095690612d9f565b601255565b600a546001600160a01b03163314611aa45760405162461bcd60e51b815260040161095690612d9f565b6013805462ff00ff19169055565b600a546001600160a01b03163314611adc5760405162461bcd60e51b815260040161095690612d9f565b600f805461ffff191661ffff92909216919091179055565b600a546001600160a01b03163314611b1e5760405162461bcd60e51b815260040161095690612d9f565b6013805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b03163314611b675760405162461bcd60e51b815260040161095690612d9f565b600e55565b600a546001600160a01b03163314611b965760405162461bcd60e51b815260040161095690612d9f565b805161126e90600d9060208401906127bb565b600a546001600160a01b03163314611bd35760405162461bcd60e51b815260040161095690612d9f565b6001600160a01b038116611c385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610956565b6110af81611fca565b60006001600160e01b031982166380ac58cd60e01b1480611c7257506001600160e01b03198216635b5e139f60e01b145b8061091657506301ffc9a760e01b6001600160e01b0319831614610916565b60006119a482600e548561222b565b61126e828260405180602001604052806000815250612241565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cef826112b9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611da15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610956565b6000611dac836112b9565b9050806001600160a01b0316846001600160a01b03161480611de75750836001600160a01b0316611ddc84610d14565b6001600160a01b0316145b80611e1757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e32826112b9565b6001600160a01b031614611e9a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610956565b6001600160a01b038216611efc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610956565b611f07838383612274565b611f12600082611cba565b6001600160a01b0383166000908152600360205260408120805460019290611f3b908490612ea1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f69908490612e56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561207e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610956565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120f6848484611e1f565b6121028484848461232c565b6117eb5760405162461bcd60e51b815260040161095690612d4d565b6060600c8054610c9190612ee4565b6060816121515750506040805180820190915260018152600360fc1b602082015290565b8160005b811561217b578061216581612f1f565b91506121749050600a83612e6e565b9150612155565b60008167ffffffffffffffff81111561219657612196612fa6565b6040519080825280601f01601f1916602001820160405280156121c0576020820181803683370190505b5090505b8415611e17576121d5600183612ea1565b91506121e2600a86612f3a565b6121ed906030612e56565b60f81b81838151811061220257612202612f90565b60200101906001600160f81b031916908160001a905350612224600a86612e6e565b94506121c4565b6000826122388584612439565b14949350505050565b61224b83836124dd565b612258600084848461232c565b610f485760405162461bcd60e51b815260040161095690612d4d565b6001600160a01b0383166122cf576122ca81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122f2565b816001600160a01b0316836001600160a01b0316146122f2576122f2838261262b565b6001600160a01b03821661230957610f48816126c8565b826001600160a01b0316826001600160a01b031614610f4857610f488282612777565b60006001600160a01b0384163b1561242e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612370903390899088908890600401612c8d565b602060405180830381600087803b15801561238a57600080fd5b505af19250505080156123ba575060408051601f3d908101601f191682019092526123b791810190612b19565b60015b612414573d8080156123e8576040519150601f19603f3d011682016040523d82523d6000602084013e6123ed565b606091505b50805161240c5760405162461bcd60e51b815260040161095690612d4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e17565b506001949350505050565b600081815b845181101561116757600085828151811061245b5761245b612f90565b6020026020010151905080831161249d5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506124ca565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806124d581612f1f565b91505061243e565b6001600160a01b0382166125335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610956565b6000818152600260205260409020546001600160a01b0316156125985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610956565b6125a460008383612274565b6001600160a01b03821660009081526003602052604081208054600192906125cd908490612e56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161263884611389565b6126429190612ea1565b600083815260076020526040902054909150808214612695576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126da90600190612ea1565b6000838152600960205260408120546008805493945090928490811061270257612702612f90565b90600052602060002001549050806008838154811061272357612723612f90565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061275b5761275b612f7a565b6001900381819060005260206000200160009055905550505050565b600061278283611389565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127c790612ee4565b90600052602060002090601f0160209004810192826127e9576000855561282f565b82601f1061280257805160ff191683800117855561282f565b8280016001018555821561282f579182015b8281111561282f578251825591602001919060010190612814565b5061283b92915061283f565b5090565b5b8082111561283b5760008155600101612840565b600067ffffffffffffffff83111561286e5761286e612fa6565b612881601f8401601f1916602001612e25565b905082815283838301111561289557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119ab57600080fd5b6000602082840312156128d557600080fd5b6119a4826128ac565b600080604083850312156128f157600080fd5b6128fa836128ac565b9150612908602084016128ac565b90509250929050565b60008060006060848603121561292657600080fd5b61292f846128ac565b925061293d602085016128ac565b9150604084013590509250925092565b6000806000806080858703121561296357600080fd5b61296c856128ac565b935061297a602086016128ac565b925060408501359150606085013567ffffffffffffffff81111561299d57600080fd5b8501601f810187136129ae57600080fd5b6129bd87823560208401612854565b91505092959194509250565b600080604083850312156129dc57600080fd5b6129e5836128ac565b9150602083013580151581146129fa57600080fd5b809150509250929050565b60008060408385031215612a1857600080fd5b612a21836128ac565b946020939093013593505050565b60006020808385031215612a4257600080fd5b823567ffffffffffffffff80821115612a5a57600080fd5b818501915085601f830112612a6e57600080fd5b813581811115612a8057612a80612fa6565b8060051b9150612a91848301612e25565b8181528481019084860184860187018a1015612aac57600080fd5b600095505b83861015612ad657612ac2816128ac565b835260019590950194918601918601612ab1565b5098975050505050505050565b600060208284031215612af557600080fd5b5035919050565b600060208284031215612b0e57600080fd5b81356119a481612fbc565b600060208284031215612b2b57600080fd5b81516119a481612fbc565b600060208284031215612b4857600080fd5b813567ffffffffffffffff811115612b5f57600080fd5b8201601f81018413612b7057600080fd5b611e1784823560208401612854565b600060208284031215612b9157600080fd5b813561ffff811681146119a457600080fd5b600080600060408486031215612bb857600080fd5b83359250602084013567ffffffffffffffff80821115612bd757600080fd5b818601915086601f830112612beb57600080fd5b813581811115612bfa57600080fd5b8760208260051b8501011115612c0f57600080fd5b6020830194508093505050509250925092565b60008151808452612c3a816020860160208601612eb8565b601f01601f19169290920160200192915050565b60008351612c60818460208801612eb8565b835190830190612c74818360208801612eb8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cc090830184612c22565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d0257835183529284019291840191600101612ce6565b50909695505050505050565b6020815260006119a46020830184612c22565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e4e57612e4e612fa6565b604052919050565b60008219821115612e6957612e69612f4e565b500190565b600082612e7d57612e7d612f64565b500490565b6000816000190483118215151615612e9c57612e9c612f4e565b500290565b600082821015612eb357612eb3612f4e565b500390565b60005b83811015612ed3578181015183820152602001612ebb565b838111156117eb5750506000910152565b600181811c90821680612ef857607f821691505b60208210811415612f1957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f3357612f33612f4e565b5060010190565b600082612f4957612f49612f64565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110af57600080fdfea26469706673582212200193cd727a2ba7878c5952d2dd80dd8435b9bec00a3398a7e3f1653ed163a02464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _notRevealedUrl (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48126:7346:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41899:224;;;;;;;;;;-1:-1:-1;41899:224:0;;;;;:::i;:::-;;:::i;:::-;;;9039:14:1;;9032:22;9014:41;;9002:2;8987:18;41899:224:0;;;;;;;;49983:1151;;;;;;:::i;:::-;;:::i;:::-;;29393:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30952:221::-;;;;;;;;;;-1:-1:-1;30952:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7700:32:1;;;7682:51;;7670:2;7655:18;30952:221:0;7536:203:1;48360:28:0;;;;;;;;;;;;;:::i;30475:411::-;;;;;;;;;;-1:-1:-1;30475:411:0;;;;;:::i;:::-;;:::i;48625:31::-;;;;;;;;;;;;;;;;;;;20714:25:1;;;20702:2;20687:18;48625:31:0;20568:177:1;42539:113:0;;;;;;;;;;-1:-1:-1;42627:10:0;:17;42539:113;;31702:339;;;;;;;;;;-1:-1:-1;31702:339:0;;;;;:::i;:::-;;:::i;42207:256::-;;;;;;;;;;-1:-1:-1;42207:256:0;;;;;:::i;:::-;;:::i;55306:161::-;;;:::i;32112:185::-;;;;;;;;;;-1:-1:-1;32112:185:0;;;;;:::i;:::-;;:::i;53607:372::-;;;;;;;;;;-1:-1:-1;53607:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54087:90::-;;;;;;;;;;-1:-1:-1;54087:90:0;;;;;:::i;:::-;;:::i;42729:233::-;;;;;;;;;;-1:-1:-1;42729:233:0;;;;;:::i;:::-;;:::i;48770:28::-;;;;;;;;;;-1:-1:-1;48770:28:0;;;;;;;;;;;54852:108;;;;;;;;;;-1:-1:-1;54852:108:0;;;;;:::i;:::-;;:::i;53991:84::-;;;;;;;;;;;;;:::i;48735:25::-;;;;;;;;;;-1:-1:-1;48735:25:0;;;;;;;;29087:239;;;;;;;;;;-1:-1:-1;29087:239:0;;;;;:::i;:::-;;:::i;48330:21::-;;;;;;;;;;;;;:::i;52979:120::-;;;;;;;;;;;;;:::i;54600:98::-;;;;;;;;;;-1:-1:-1;54600:98:0;;;;;:::i;:::-;;:::i;28817:208::-;;;;;;;;;;-1:-1:-1;28817:208:0;;;;;:::i;:::-;;:::i;8363:103::-;;;;;;;;;;;;;:::i;52401:442::-;;;;;;;;;;-1:-1:-1;52401:442:0;;;;;:::i;:::-;;:::i;7712:87::-;;;;;;;;;;-1:-1:-1;7785:6:0;;-1:-1:-1;;;;;7785:6:0;7712:87;;48513:43;;;;;;;;;;-1:-1:-1;48513:43:0;;;;;;;;;;;;;;20549:6:1;20537:19;;;20519:38;;20507:2;20492:18;48513:43:0;20375:188:1;29562:104:0;;;;;;;;;;;;;:::i;52285:::-;;;;;;;;;;;;;:::i;54461:127::-;;;;;;;;;;-1:-1:-1;54461:127:0;;;;;:::i;:::-;;:::i;51163:753::-;;;;;;:::i;:::-;;:::i;31245:155::-;;;;;;;;;;-1:-1:-1;31245:155:0;;;;;:::i;:::-;;:::i;32368:328::-;;;;;;;;;;-1:-1:-1;32368:328:0;;;;;:::i;:::-;;:::i;48458:46::-;;;;;;;;;;-1:-1:-1;48458:46:0;;;;;;;;54972:79;;;;;;;;;;;;;:::i;53111:484::-;;;;;;;;;;-1:-1:-1;53111:484:0;;;;;:::i;:::-;;:::i;51928:345::-;;;;;;;;;;-1:-1:-1;51928:345:0;;;;;:::i;:::-;;:::i;48565:31::-;;;;;;;;;;;;;;;;54189:111;;;;;;;;;;-1:-1:-1;54189:111:0;;;;;:::i;:::-;;:::i;48807:35::-;;;;;;;;;;-1:-1:-1;48807:35:0;;;;;;;;;;;55176:118;;;;;;;;;;;;;:::i;48665:40::-;;;;;;;;;;;;;;;;54316:133;;;;;;;;;;-1:-1:-1;54316:133:0;;;;;:::i;:::-;;:::i;31471:164::-;;;;;;;;;;-1:-1:-1;31471:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31592:25:0;;;31568:4;31592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31471:164;55063:103;;;;;;;;;;;;;:::i;49369:105::-;;;;;;;;;;-1:-1:-1;49369:105:0;;;;;:::i;:::-;;:::i;54710:130::-;;;;;;;;;;-1:-1:-1;54710:130:0;;;;;:::i;:::-;;:::i;8621:201::-;;;;;;;;;;-1:-1:-1;8621:201:0;;;;;:::i;:::-;;:::i;49163:55::-;;;;;;;;;;-1:-1:-1;49163:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9259:14:1;;9252:22;9234:41;;9306:2;9291:18;;9284:34;;;;9207:18;49163:55:0;9066:258:1;41899:224:0;42001:4;-1:-1:-1;;;;;;42025:50:0;;-1:-1:-1;;;42025:50:0;;:90;;;42079:36;42103:11;42079:23;:36::i;:::-;42018:97;41899:224;-1:-1:-1;;41899:224:0:o;49983:1151::-;49008:10;49022:9;49008:23;49000:48;;;;-1:-1:-1;;;49000:48:0;;17557:2:1;49000:48:0;;;17539:21:1;17596:2;17576:18;;;17569:30;-1:-1:-1;;;17615:18:1;;;17608:42;17667:18;;49000:48:0;;;;;;;;;50088:14:::1;50105:13;42627:10:::0;:17;;42539:113;50105:13:::1;50162:9;::::0;50088:30;;-1:-1:-1;50139:19:0::1;50148:10:::0;50088:30;50139:19:::1;:::i;:::-;:32;;50131:63;;;;-1:-1:-1::0;;;50131:63:0::1;;;;;;;:::i;:::-;7785:6:::0;;-1:-1:-1;;;;;7785:6:0;50205:10:::1;:21;50201:683;;50270:6;::::0;::::1;;50269:7;50261:16;;;::::0;::::1;;50302;::::0;;;::::1;;;50294:53;;;::::0;-1:-1:-1;;;50294:53:0;;9755:2:1;50294:53:0::1;::::0;::::1;9737:21:1::0;9794:2;9774:18;;;9767:30;9833:26;9813:18;;;9806:54;9877:18;;50294:53:0::1;9553:348:1::0;50294:53:0::1;49911:25:::0;;;50386:10:::1;6347:2:1::0;6343:15;-1:-1:-1;;6339:53:1;49911:25:0;;;;6327:66:1;;;;49911:25:0;;;;;;;;;6409:12:1;;;;49911:25:0;;;49901:36;;;;;50372:33:::1;::::0;50399:5:::1;;50372:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;50372:7:0::1;::::0;-1:-1:-1;;;50372:33:0:i:1;:::-;50364:59;;;::::0;-1:-1:-1;;;50364:59:0;;19882:2:1;50364:59:0::1;::::0;::::1;19864:21:1::0;19921:2;19901:18;;;19894:30;-1:-1:-1;;;19940:18:1;;;19933:43;19993:18;;50364:59:0::1;19680:337:1::0;50364:59:0::1;50477:10;50461:13;;:26;;;;:::i;:::-;50448:9;:39;;50440:69;;;::::0;-1:-1:-1;;;50440:69:0;;17898:2:1;50440:69:0::1;::::0;::::1;17880:21:1::0;17937:2;17917:18;;;17910:30;-1:-1:-1;;;17956:18:1;;;17949:47;18013:18;;50440:69:0::1;17696:341:1::0;50440:69:0::1;50546:10;50529:28;::::0;;;:16:::1;:28;::::0;;;;:37;::::1;;50526:341;;;50651:24;::::0;50614:10:::1;50597:28;::::0;;;:16:::1;:28;::::0;;;;:36:::1;;::::0;50651:24;;;::::1;;;::::0;50597:49:::1;::::0;50636:10;;50597:49:::1;:::i;:::-;50596:79;;50588:120;;;::::0;-1:-1:-1;;;50588:120:0;;13162:2:1;50588:120:0::1;::::0;::::1;13144:21:1::0;13201:2;13181:18;;;13174:30;13240;13220:18;;;13213:58;13288:18;;50588:120:0::1;12960:352:1::0;50588:120:0::1;50526:341;;;50795:24;::::0;;;::::1;;;50781:38:::0;::::1;;50773:75;;;::::0;-1:-1:-1;;;50773:75:0;;20224:2:1;50773:75:0::1;::::0;::::1;20206:21:1::0;20263:2;20243:18;;;20236:30;20302:26;20282:18;;;20275:54;20346:18;;50773:75:0::1;20022:348:1::0;50773:75:0::1;50923:1;50906:162;50931:10;50926:1;:15;50906:162;;50965:33;50975:10;50987;50996:1:::0;50987:6;:10:::1;:::i;:::-;50965:9;:33::i;:::-;51032:10;51015:28;::::0;;;:16:::1;:28;::::0;;;;51053:1:::1;51015:36:::0;;::::1;:39:::0;;51053:1;;51015:36;;:39:::1;::::0;51053:1;;51015:39:::1;:::i;:::-;::::0;;;-1:-1:-1;50943:3:0;;-1:-1:-1;50943:3:0::1;::::0;::::1;:::i;:::-;;;;50906:162;;;-1:-1:-1::0;;51097:10:0::1;51080:28;::::0;;;:16:::1;:28;::::0;;;;:44;;-1:-1:-1;;51080:44:0::1;51120:4;51080:44;::::0;;-1:-1:-1;;;49983:1151:0:o;29393:100::-;29447:13;29480:5;29473:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29393:100;:::o;30952:221::-;31028:7;34295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34295:16:0;31048:73;;;;-1:-1:-1;;;31048:73:0;;15957:2:1;31048:73:0;;;15939:21:1;15996:2;15976:18;;;15969:30;16035:34;16015:18;;;16008:62;-1:-1:-1;;;16086:18:1;;;16079:42;16138:19;;31048:73:0;15755:408:1;31048:73:0;-1:-1:-1;31141:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31141:24:0;;30952:221::o;48360:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30475:411::-;30556:13;30572:23;30587:7;30572:14;:23::i;:::-;30556:39;;30620:5;-1:-1:-1;;;;;30614:11:0;:2;-1:-1:-1;;;;;30614:11:0;;;30606:57;;;;-1:-1:-1;;;30606:57:0;;18244:2:1;30606:57:0;;;18226:21:1;18283:2;18263:18;;;18256:30;18322:34;18302:18;;;18295:62;-1:-1:-1;;;18373:18:1;;;18366:31;18414:19;;30606:57:0;18042:397:1;30606:57:0;6516:10;-1:-1:-1;;;;;30698:21:0;;;;:62;;-1:-1:-1;30723:37:0;30740:5;6516:10;31471:164;:::i;30723:37::-;30676:168;;;;-1:-1:-1;;;30676:168:0;;13932:2:1;30676:168:0;;;13914:21:1;13971:2;13951:18;;;13944:30;14010:34;13990:18;;;13983:62;14081:26;14061:18;;;14054:54;14125:19;;30676:168:0;13730:420:1;30676:168:0;30857:21;30866:2;30870:7;30857:8;:21::i;:::-;30545:341;30475:411;;:::o;31702:339::-;31897:41;6516:10;31930:7;31897:18;:41::i;:::-;31889:103;;;;-1:-1:-1;;;31889:103:0;;;;;;;:::i;:::-;32005:28;32015:4;32021:2;32025:7;32005:9;:28::i;42207:256::-;42304:7;42340:23;42357:5;42340:16;:23::i;:::-;42332:5;:31;42324:87;;;;-1:-1:-1;;;42324:87:0;;10455:2:1;42324:87:0;;;10437:21:1;10494:2;10474:18;;;10467:30;10533:34;10513:18;;;10506:62;-1:-1:-1;;;10584:18:1;;;10577:41;10635:19;;42324:87:0;10253:407:1;42324:87:0;-1:-1:-1;;;;;;42429:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42207:256::o;55306:161::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;55365:7:::1;55386;7785:6:::0;;-1:-1:-1;;;;;7785:6:0;;7712:87;55386:7:::1;-1:-1:-1::0;;;;;55378:21:0::1;55407;55378:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55364:69;;;55454:2;55446:11;;;::::0;::::1;;55351:116;55306:161::o:0;32112:185::-;32250:39;32267:4;32273:2;32277:7;32250:39;;;;;;;;;;;;:16;:39::i;53607:372::-;53667:16;53698:23;53724:17;53734:6;53724:9;:17::i;:::-;53698:43;;53754:25;53796:15;53782:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53782:30:0;;53754:58;;53830:9;53825:117;53845:15;53841:1;:19;53825:117;;;53898:30;53918:6;53926:1;53898:19;:30::i;:::-;53884:8;53893:1;53884:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53862:3;;;;:::i;:::-;;;;53825:117;;;-1:-1:-1;53961:8:0;53607:372;-1:-1:-1;;;53607:372:0:o;54087:90::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54152:4:::1;:15:::0;54087:90::o;42729:233::-;42804:7;42840:30;42627:10;:17;;42539:113;42840:30;42832:5;:38;42824:95;;;;-1:-1:-1;;;42824:95:0;;19064:2:1;42824:95:0;;;19046:21:1;19103:2;19083:18;;;19076:30;19142:34;19122:18;;;19115:62;-1:-1:-1;;;19193:18:1;;;19186:42;19245:19;;42824:95:0;18862:408:1;42824:95:0;42937:10;42948:5;42937:17;;;;;;;;:::i;:::-;;;;;;;;;42930:24;;42729:233;;;:::o;54852:108::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54929:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54852:108:::0;:::o;53991:84::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54057:8:::1;::::0;;-1:-1:-1;;54045:20:0;::::1;54057:8;::::0;;;::::1;;;54056:9;54045:20:::0;;::::1;;::::0;;53991:84::o;29087:239::-;29159:7;29195:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29195:16:0;29230:19;29222:73;;;;-1:-1:-1;;;29222:73:0;;14768:2:1;29222:73:0;;;14750:21:1;14807:2;14787:18;;;14780:30;14846:34;14826:18;;;14819:62;-1:-1:-1;;;14897:18:1;;;14890:39;14946:19;;29222:73:0;14566:405:1;48330:21:0;;;;;;;:::i;52979:120::-;53025:7;53070:19;:9;964:14;;872:114;53070:19;42627:10;:17;53054:35;;;;:::i;:::-;53047:42;;52979:120;:::o;54600:98::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54669:9:::1;:19:::0;54600:98::o;28817:208::-;28889:7;-1:-1:-1;;;;;28917:19:0;;28909:74;;;;-1:-1:-1;;;28909:74:0;;14357:2:1;28909:74:0;;;14339:21:1;14396:2;14376:18;;;14369:30;14435:34;14415:18;;;14408:62;-1:-1:-1;;;14486:18:1;;;14479:40;14536:19;;28909:74:0;14155:406:1;28909:74:0;-1:-1:-1;;;;;;29001:16:0;;;;;:9;:16;;;;;;;28817:208::o;8363:103::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;8428:30:::1;8455:1;8428:18;:30::i;:::-;8363:103::o:0;52401:442::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;52484:14:::1;52501:13;42627:10:::0;:17;;42539:113;52501:13:::1;52484:30;;52572:9;;52544:17;:24;52535:6;:33;;;;:::i;:::-;:46;;52527:77;;;;-1:-1:-1::0;;;52527:77:0::1;;;;;;;:::i;:::-;52622:9;52617:217;52641:17;:24;52637:1;:28;52617:217;;;52705:10;52718:17;52736:1;52718:20;;;;;;;;:::i;:::-;;;;;;;52705:33;;52755:27;52765:2;52778:1;52769:6;:10;;;;:::i;:::-;:12;::::0;52780:1:::1;52769:12;:::i;52755:27::-;52799:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;52799:21:::1;-1:-1:-1::0;52667:3:0;::::1;::::0;::::1;:::i;:::-;;;;52617:217;;29562:104:::0;29618:13;29651:7;29644:14;;;;;:::i;52285:104::-;52331:7;52360:19;:9;964:14;;872:114;54461:127;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54544:24:::1;:34:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;54544:34:0;;::::1;::::0;;;::::1;::::0;;54461:127::o;51163:753::-;49008:10;49022:9;49008:23;49000:48;;;;-1:-1:-1;;;49000:48:0;;17557:2:1;49000:48:0;;;17539:21:1;17596:2;17576:18;;;17569:30;-1:-1:-1;;;17615:18:1;;;17608:42;17667:18;;49000:48:0;17355:336:1;49000:48:0;51235:14:::1;51252:13;42627:10:::0;:17;;42539:113;51252:13:::1;51310:9;::::0;51235:30;;-1:-1:-1;51286:20:0::1;51295:11:::0;51235:30;51286:20:::1;:::i;:::-;:33;;51278:64;;;;-1:-1:-1::0;;;51278:64:0::1;;;;;;;:::i;:::-;7785:6:::0;;-1:-1:-1;;;;;7785:6:0;51359:10:::1;:21;51355:429;;51412:6;::::0;::::1;;51411:7;51403:16;;;::::0;::::1;;51445;::::0;;;::::1;;;51444:17;51436:54;;;::::0;-1:-1:-1;;;51436:54:0;;12050:2:1;51436:54:0::1;::::0;::::1;12032:21:1::0;12089:2;12069:18;;;12062:30;12128:26;12108:18;;;12101:54;12172:18;;51436:54:0::1;11848:348:1::0;51436:54:0::1;51529:1;51515:11;:15;51507:64;;;::::0;-1:-1:-1;;;51507:64:0;;19477:2:1;51507:64:0::1;::::0;::::1;19459:21:1::0;19516:2;19496:18;;;19489:30;19555:34;19535:18;;;19528:62;-1:-1:-1;;;19606:18:1;;;19599:34;19650:19;;51507:64:0::1;19275:400:1::0;51507:64:0::1;51611:27;::::0;::::1;;51596:42:::0;::::1;;51588:104;;;::::0;-1:-1:-1;;;51588:104:0;;15539:2:1;51588:104:0::1;::::0;::::1;15521:21:1::0;15578:2;15558:18;;;15551:30;15617:34;15597:18;;;15590:62;-1:-1:-1;;;15668:18:1;;;15661:47;15725:19;;51588:104:0::1;15337:413:1::0;51588:104:0::1;51737:11;51730:4;;:18;;;;:::i;:::-;51717:9;:31;;51709:61;;;::::0;-1:-1:-1;;;51709:61:0;;17898:2:1;51709:61:0::1;::::0;::::1;17880:21:1::0;17937:2;17917:18;;;17910:30;-1:-1:-1;;;17956:18:1;;;17949:47;18013:18;;51709:61:0::1;17696:341:1::0;51709:61:0::1;51817:1;51800:107;51825:11;51820:1;:16;51800:107;;51860:33;51870:10;51882;51891:1:::0;51882:6;:10:::1;:::i;51860:33::-;51838:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51800:107;;31245:155:::0;31340:52;6516:10;31373:8;31383;31340:18;:52::i;32368:328::-;32543:41;6516:10;32576:7;32543:18;:41::i;:::-;32535:103;;;;-1:-1:-1;;;32535:103:0;;;;;;;:::i;:::-;32649:39;32663:4;32669:2;32673:7;32682:5;32649:13;:39::i;:::-;32368:328;;;;:::o;54972:79::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;55035:6:::1;::::0;;-1:-1:-1;;55025:16:0;::::1;55035:6;::::0;;::::1;55034:7;55025:16;::::0;;54972:79::o;53111:484::-;34271:4;34295:16;;;:7;:16;;;;;;53184:13;;-1:-1:-1;;;;;34295:16:0;53212:76;;;;-1:-1:-1;;;53212:76:0;;17141:2:1;53212:76:0;;;17123:21:1;17180:2;17160:18;;;17153:30;17219:34;17199:18;;;17192:62;-1:-1:-1;;;17270:18:1;;;17263:45;17325:19;;53212:76:0;16939:411:1;53212:76:0;53305:8;;;;;;;53301:285;;53348:14;53341:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53111:484;;;:::o;53301:285::-;53399:28;53430:10;:8;:10::i;:::-;53399:41;;53495:1;53470:14;53464:28;:32;:108;;;;;;;;;;;;;;;;;53523:14;53539:18;:7;:16;:18::i;:::-;53506:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53464:108;53457:115;53111:484;-1:-1:-1;;;53111:484:0:o;53301:285::-;53111:484;;;:::o;51928:345::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;52006:14:::1;52023:13;42627:10:::0;:17;;42539:113;52023:13:::1;52081:9;::::0;52006:30;;-1:-1:-1;52057:20:0::1;52066:11:::0;52006:30;52057:20:::1;:::i;:::-;:33;;52049:64;;;;-1:-1:-1::0;;;52049:64:0::1;;;;;;;:::i;:::-;52143:1;52126:138;52151:11;52146:1;:16;52126:138;;52186:26;52196:3:::0;52201:10:::1;52210:1:::0;52201:6;:10:::1;:::i;52186:26::-;52229:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;52229:21:::1;52164:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52126:138;;54189:111:::0;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54266:13:::1;:24:::0;54189:111::o;55176:118::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;55233:16:::1;:24:::0;;-1:-1:-1;;55270:14:0;;;55176:118::o;54316:133::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54402:27:::1;:37:::0;;-1:-1:-1;;54402:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;54316:133::o;55063:103::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;55140:16:::1;::::0;;-1:-1:-1;;55120:36:0;::::1;55140:16:::0;;;;::::1;;;55139:17;55120:36:::0;;::::1;;::::0;;55063:103::o;49369:105::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;49443:13:::1;:21:::0;49369:105::o;54710:130::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54798:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;8621:201::-:0;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8710:22:0;::::1;8702:73;;;::::0;-1:-1:-1;;;8702:73:0;;11286:2:1;8702:73:0::1;::::0;::::1;11268:21:1::0;11325:2;11305:18;;;11298:30;11364:34;11344:18;;;11337:62;-1:-1:-1;;;11415:18:1;;;11408:36;11461:19;;8702:73:0::1;11084:402:1::0;8702:73:0::1;8786:28;8805:8;8786:18;:28::i;28448:305::-:0;28550:4;-1:-1:-1;;;;;;28587:40:0;;-1:-1:-1;;;28587:40:0;;:105;;-1:-1:-1;;;;;;;28644:48:0;;-1:-1:-1;;;28644:48:0;28587:105;:158;;;-1:-1:-1;;;;;;;;;;20253:40:0;;;28709:36;20144:157;49537:170;49620:4;49646:51;49665:5;49672:13;;49687:9;49646:18;:51::i;35190:110::-;35266:26;35276:2;35280:7;35266:26;;;;;;;;;;;;:9;:26::i;38188:174::-;38263:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38263:29:0;-1:-1:-1;;;;;38263:29:0;;;;;;;;:24;;38317:23;38263:24;38317:14;:23::i;:::-;-1:-1:-1;;;;;38308:46:0;;;;;;;;;;;38188:174;;:::o;34500:348::-;34593:4;34295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34295:16:0;34610:73;;;;-1:-1:-1;;;34610:73:0;;13519:2:1;34610:73:0;;;13501:21:1;13558:2;13538:18;;;13531:30;13597:34;13577:18;;;13570:62;-1:-1:-1;;;13648:18:1;;;13641:42;13700:19;;34610:73:0;13317:408:1;34610:73:0;34694:13;34710:23;34725:7;34710:14;:23::i;:::-;34694:39;;34763:5;-1:-1:-1;;;;;34752:16:0;:7;-1:-1:-1;;;;;34752:16:0;;:51;;;;34796:7;-1:-1:-1;;;;;34772:31:0;:20;34784:7;34772:11;:20::i;:::-;-1:-1:-1;;;;;34772:31:0;;34752:51;:87;;;-1:-1:-1;;;;;;31592:25:0;;;31568:4;31592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34807:32;34744:96;34500:348;-1:-1:-1;;;;34500:348:0:o;37492:578::-;37651:4;-1:-1:-1;;;;;37624:31:0;:23;37639:7;37624:14;:23::i;:::-;-1:-1:-1;;;;;37624:31:0;;37616:85;;;;-1:-1:-1;;;37616:85:0;;16731:2:1;37616:85:0;;;16713:21:1;16770:2;16750:18;;;16743:30;16809:34;16789:18;;;16782:62;-1:-1:-1;;;16860:18:1;;;16853:39;16909:19;;37616:85:0;16529:405:1;37616:85:0;-1:-1:-1;;;;;37720:16:0;;37712:65;;;;-1:-1:-1;;;37712:65:0;;12403:2:1;37712:65:0;;;12385:21:1;12442:2;12422:18;;;12415:30;12481:34;12461:18;;;12454:62;-1:-1:-1;;;12532:18:1;;;12525:34;12576:19;;37712:65:0;12201:400:1;37712:65:0;37790:39;37811:4;37817:2;37821:7;37790:20;:39::i;:::-;37894:29;37911:1;37915:7;37894:8;:29::i;:::-;-1:-1:-1;;;;;37936:15:0;;;;;;:9;:15;;;;;:20;;37955:1;;37936:15;:20;;37955:1;;37936:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37967:13:0;;;;;;:9;:13;;;;;:18;;37984:1;;37967:13;:18;;37984:1;;37967:18;:::i;:::-;;;;-1:-1:-1;;37996:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37996:21:0;-1:-1:-1;;;;;37996:21:0;;;;;;;;;38035:27;;37996:16;;38035:27;;;;;;;37492:578;;;:::o;8982:191::-;9075:6;;;-1:-1:-1;;;;;9092:17:0;;;-1:-1:-1;;;;;;9092:17:0;;;;;;;9125:40;;9075:6;;;9092:17;9075:6;;9125:40;;9056:16;;9125:40;9045:128;8982:191;:::o;38504:315::-;38659:8;-1:-1:-1;;;;;38650:17:0;:5;-1:-1:-1;;;;;38650:17:0;;;38642:55;;;;-1:-1:-1;;;38642:55:0;;12808:2:1;38642:55:0;;;12790:21:1;12847:2;12827:18;;;12820:30;12886:27;12866:18;;;12859:55;12931:18;;38642:55:0;12606:349:1;38642:55:0;-1:-1:-1;;;;;38708:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38708:46:0;;;;;;;;;;38770:41;;9014::1;;;38770::0;;8987:18:1;38770:41:0;;;;;;;38504:315;;;:::o;33578:::-;33735:28;33745:4;33751:2;33755:7;33735:9;:28::i;:::-;33782:48;33805:4;33811:2;33815:7;33824:5;33782:22;:48::i;:::-;33774:111;;;;-1:-1:-1;;;33774:111:0;;;;;;;:::i;52855:112::-;52915:13;52950:7;52943:14;;;;;:::i;3998:723::-;4054:13;4275:10;4271:53;;-1:-1:-1;;4302:10:0;;;;;;;;;;;;-1:-1:-1;;;4302:10:0;;;;;3998:723::o;4271:53::-;4349:5;4334:12;4390:78;4397:9;;4390:78;;4423:8;;;;:::i;:::-;;-1:-1:-1;4446:10:0;;-1:-1:-1;4454:2:0;4446:10;;:::i;:::-;;;4390:78;;;4478:19;4510:6;4500:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4500:17:0;;4478:39;;4528:154;4535:10;;4528:154;;4562:11;4572:1;4562:11;;:::i;:::-;;-1:-1:-1;4631:10:0;4639:2;4631:5;:10;:::i;:::-;4618:24;;:2;:24;:::i;:::-;4605:39;;4588:6;4595;4588:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4588:56:0;;;;;;;;-1:-1:-1;4659:11:0;4668:2;4659:11;;:::i;:::-;;;4528:154;;2373:190;2498:4;2551;2522:25;2535:5;2542:4;2522:12;:25::i;:::-;:33;;2373:190;-1:-1:-1;;;;2373:190:0:o;35527:321::-;35657:18;35663:2;35667:7;35657:5;:18::i;:::-;35708:54;35739:1;35743:2;35747:7;35756:5;35708:22;:54::i;:::-;35686:154;;;;-1:-1:-1;;;35686:154:0;;;;;;;:::i;43575:589::-;-1:-1:-1;;;;;43781:18:0;;43777:187;;43816:40;43848:7;44991:10;:17;;44964:24;;;;:15;:24;;;;;:44;;;45019:24;;;;;;;;;;;;44887:164;43816:40;43777:187;;;43886:2;-1:-1:-1;;;;;43878:10:0;:4;-1:-1:-1;;;;;43878:10:0;;43874:90;;43905:47;43938:4;43944:7;43905:32;:47::i;:::-;-1:-1:-1;;;;;43978:16:0;;43974:183;;44011:45;44048:7;44011:36;:45::i;43974:183::-;44084:4;-1:-1:-1;;;;;44078:10:0;:2;-1:-1:-1;;;;;44078:10:0;;44074:83;;44105:40;44133:2;44137:7;44105:27;:40::i;39384:799::-;39539:4;-1:-1:-1;;;;;39560:13:0;;10323:20;10371:8;39556:620;;39596:72;;-1:-1:-1;;;39596:72:0;;-1:-1:-1;;;;;39596:36:0;;;;;:72;;6516:10;;39647:4;;39653:7;;39662:5;;39596:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39596:72:0;;;;;;;;-1:-1:-1;;39596:72:0;;;;;;;;;;;;:::i;:::-;;;39592:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39838:13:0;;39834:272;;39881:60;;-1:-1:-1;;;39881:60:0;;;;;;;:::i;39834:272::-;40056:6;40050:13;40041:6;40037:2;40033:15;40026:38;39592:529;-1:-1:-1;;;;;;39719:51:0;-1:-1:-1;;;39719:51:0;;-1:-1:-1;39712:58:0;;39556:620;-1:-1:-1;40160:4:0;39384:799;;;;;;:::o;2925:701::-;3008:7;3051:4;3008:7;3066:523;3090:5;:12;3086:1;:16;3066:523;;;3124:20;3147:5;3153:1;3147:8;;;;;;;;:::i;:::-;;;;;;;3124:31;;3190:12;3174;:28;3170:408;;3327:44;;;;;;6589:19:1;;;6624:12;;;6617:28;;;6661:12;;3327:44:0;;;;;;;;;;;;3317:55;;;;;;3302:70;;3170:408;;;3517:44;;;;;;6589:19:1;;;6624:12;;;6617:28;;;6661:12;;3517:44:0;;;;;;;;;;;;3507:55;;;;;;3492:70;;3170:408;-1:-1:-1;3104:3:0;;;;:::i;:::-;;;;3066:523;;36184:382;-1:-1:-1;;;;;36264:16:0;;36256:61;;;;-1:-1:-1;;;36256:61:0;;15178:2:1;36256:61:0;;;15160:21:1;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;36256:61:0;14976:356:1;36256:61:0;34271:4;34295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34295:16:0;:30;36328:58;;;;-1:-1:-1;;;36328:58:0;;11693:2:1;36328:58:0;;;11675:21:1;11732:2;11712:18;;;11705:30;11771;11751:18;;;11744:58;11819:18;;36328:58:0;11491:352:1;36328:58:0;36399:45;36428:1;36432:2;36436:7;36399:20;:45::i;:::-;-1:-1:-1;;;;;36457:13:0;;;;;;:9;:13;;;;;:18;;36474:1;;36457:13;:18;;36474:1;;36457:18;:::i;:::-;;;;-1:-1:-1;;36486:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36486:21:0;-1:-1:-1;;;;;36486:21:0;;;;;;;;36525:33;;36486:16;;;36525:33;;36486:16;;36525:33;36184:382;;:::o;45678:988::-;45944:22;45994:1;45969:22;45986:4;45969:16;:22::i;:::-;:26;;;;:::i;:::-;46006:18;46027:26;;;:17;:26;;;;;;45944:51;;-1:-1:-1;46160:28:0;;;46156:328;;-1:-1:-1;;;;;46227:18:0;;46205:19;46227:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46278:30;;;;;;:44;;;46395:30;;:17;:30;;;;;:43;;;46156:328;-1:-1:-1;46580:26:0;;;;:17;:26;;;;;;;;46573:33;;;-1:-1:-1;;;;;46624:18:0;;;;;:12;:18;;;;;:34;;;;;;;46617:41;45678:988::o;46961:1079::-;47239:10;:17;47214:22;;47239:21;;47259:1;;47239:21;:::i;:::-;47271:18;47292:24;;;:15;:24;;;;;;47665:10;:26;;47214:46;;-1:-1:-1;47292:24:0;;47214:46;;47665:26;;;;;;:::i;:::-;;;;;;;;;47643:48;;47729:11;47704:10;47715;47704:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47809:28;;;:15;:28;;;;;;;:41;;;47981:24;;;;;47974:31;48016:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47032:1008;;;46961:1079;:::o;44465:221::-;44550:14;44567:20;44584:2;44567:16;:20::i;:::-;-1:-1:-1;;;;;44598:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44643:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44465:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:186;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:180::-;3701:6;3754:2;3742:9;3733:7;3729:23;3725:32;3722:52;;;3770:1;3767;3760:12;3722:52;-1:-1:-1;3793:23:1;;3642:180;-1:-1:-1;3642:180:1:o;3827:245::-;3885:6;3938:2;3926:9;3917:7;3913:23;3909:32;3906:52;;;3954:1;3951;3944:12;3906:52;3993:9;3980:23;4012:30;4036:5;4012:30;:::i;4077:249::-;4146:6;4199:2;4187:9;4178:7;4174:23;4170:32;4167:52;;;4215:1;4212;4205:12;4167:52;4247:9;4241:16;4266:30;4290:5;4266:30;:::i;4331:450::-;4400:6;4453:2;4441:9;4432:7;4428:23;4424:32;4421:52;;;4469:1;4466;4459:12;4421:52;4509:9;4496:23;4542:18;4534:6;4531:30;4528:50;;;4574:1;4571;4564:12;4528:50;4597:22;;4650:4;4642:13;;4638:27;-1:-1:-1;4628:55:1;;4679:1;4676;4669:12;4628:55;4702:73;4767:7;4762:2;4749:16;4744:2;4740;4736:11;4702:73;:::i;4786:272::-;4844:6;4897:2;4885:9;4876:7;4872:23;4868:32;4865:52;;;4913:1;4910;4903:12;4865:52;4952:9;4939:23;5002:6;4995:5;4991:18;4984:5;4981:29;4971:57;;5024:1;5021;5014:12;5248:683;5343:6;5351;5359;5412:2;5400:9;5391:7;5387:23;5383:32;5380:52;;;5428:1;5425;5418:12;5380:52;5464:9;5451:23;5441:33;;5525:2;5514:9;5510:18;5497:32;5548:18;5589:2;5581:6;5578:14;5575:34;;;5605:1;5602;5595:12;5575:34;5643:6;5632:9;5628:22;5618:32;;5688:7;5681:4;5677:2;5673:13;5669:27;5659:55;;5710:1;5707;5700:12;5659:55;5750:2;5737:16;5776:2;5768:6;5765:14;5762:34;;;5792:1;5789;5782:12;5762:34;5845:7;5840:2;5830:6;5827:1;5823:14;5819:2;5815:23;5811:32;5808:45;5805:65;;;5866:1;5863;5856:12;5805:65;5897:2;5893;5889:11;5879:21;;5919:6;5909:16;;;;;5248:683;;;;;:::o;5936:257::-;5977:3;6015:5;6009:12;6042:6;6037:3;6030:19;6058:63;6114:6;6107:4;6102:3;6098:14;6091:4;6084:5;6080:16;6058:63;:::i;:::-;6175:2;6154:15;-1:-1:-1;;6150:29:1;6141:39;;;;6182:4;6137:50;;5936:257;-1:-1:-1;;5936:257:1:o;6684:637::-;6964:3;7002:6;6996:13;7018:53;7064:6;7059:3;7052:4;7044:6;7040:17;7018:53;:::i;:::-;7134:13;;7093:16;;;;7156:57;7134:13;7093:16;7190:4;7178:17;;7156:57;:::i;:::-;-1:-1:-1;;;7235:20:1;;7264:22;;;7313:1;7302:13;;6684:637;-1:-1:-1;;;;6684:637:1:o;7744:488::-;-1:-1:-1;;;;;8013:15:1;;;7995:34;;8065:15;;8060:2;8045:18;;8038:43;8112:2;8097:18;;8090:34;;;8160:3;8155:2;8140:18;;8133:31;;;7938:4;;8181:45;;8206:19;;8198:6;8181:45;:::i;:::-;8173:53;7744:488;-1:-1:-1;;;;;;7744:488:1:o;8237:632::-;8408:2;8460:21;;;8530:13;;8433:18;;;8552:22;;;8379:4;;8408:2;8631:15;;;;8605:2;8590:18;;;8379:4;8674:169;8688:6;8685:1;8682:13;8674:169;;;8749:13;;8737:26;;8818:15;;;;8783:12;;;;8710:1;8703:9;8674:169;;;-1:-1:-1;8860:3:1;;8237:632;-1:-1:-1;;;;;;8237:632:1:o;9329:219::-;9478:2;9467:9;9460:21;9441:4;9498:44;9538:2;9527:9;9523:18;9515:6;9498:44;:::i;9906:342::-;10108:2;10090:21;;;10147:2;10127:18;;;10120:30;-1:-1:-1;;;10181:2:1;10166:18;;10159:48;10239:2;10224:18;;9906:342::o;10665:414::-;10867:2;10849:21;;;10906:2;10886:18;;;10879:30;10945:34;10940:2;10925:18;;10918:62;-1:-1:-1;;;11011:2:1;10996:18;;10989:48;11069:3;11054:19;;10665:414::o;16168:356::-;16370:2;16352:21;;;16389:18;;;16382:30;16448:34;16443:2;16428:18;;16421:62;16515:2;16500:18;;16168:356::o;18444:413::-;18646:2;18628:21;;;18685:2;18665:18;;;18658:30;18724:34;18719:2;18704:18;;18697:62;-1:-1:-1;;;18790:2:1;18775:18;;18768:47;18847:3;18832:19;;18444:413::o;20750:275::-;20821:2;20815:9;20886:2;20867:13;;-1:-1:-1;;20863:27:1;20851:40;;20921:18;20906:34;;20942:22;;;20903:62;20900:88;;;20968:18;;:::i;:::-;21004:2;20997:22;20750:275;;-1:-1:-1;20750:275:1:o;21030:128::-;21070:3;21101:1;21097:6;21094:1;21091:13;21088:39;;;21107:18;;:::i;:::-;-1:-1:-1;21143:9:1;;21030:128::o;21163:120::-;21203:1;21229;21219:35;;21234:18;;:::i;:::-;-1:-1:-1;21268:9:1;;21163:120::o;21288:168::-;21328:7;21394:1;21390;21386:6;21382:14;21379:1;21376:21;21371:1;21364:9;21357:17;21353:45;21350:71;;;21401:18;;:::i;:::-;-1:-1:-1;21441:9:1;;21288:168::o;21461:125::-;21501:4;21529:1;21526;21523:8;21520:34;;;21534:18;;:::i;:::-;-1:-1:-1;21571:9:1;;21461:125::o;21591:258::-;21663:1;21673:113;21687:6;21684:1;21681:13;21673:113;;;21763:11;;;21757:18;21744:11;;;21737:39;21709:2;21702:10;21673:113;;;21804:6;21801:1;21798:13;21795:48;;;-1:-1:-1;;21839:1:1;21821:16;;21814:27;21591:258::o;21854:380::-;21933:1;21929:12;;;;21976;;;21997:61;;22051:4;22043:6;22039:17;22029:27;;21997:61;22104:2;22096:6;22093:14;22073:18;22070:38;22067:161;;;22150:10;22145:3;22141:20;22138:1;22131:31;22185:4;22182:1;22175:15;22213:4;22210:1;22203:15;22067:161;;21854:380;;;:::o;22239:135::-;22278:3;-1:-1:-1;;22299:17:1;;22296:43;;;22319:18;;:::i;:::-;-1:-1:-1;22366:1:1;22355:13;;22239:135::o;22379:112::-;22411:1;22437;22427:35;;22442:18;;:::i;:::-;-1:-1:-1;22476:9:1;;22379:112::o;22496:127::-;22557:10;22552:3;22548:20;22545:1;22538:31;22588:4;22585:1;22578:15;22612:4;22609:1;22602:15;22628:127;22689:10;22684:3;22680:20;22677:1;22670:31;22720:4;22717:1;22710:15;22744:4;22741:1;22734:15;22760:127;22821:10;22816:3;22812:20;22809:1;22802:31;22852:4;22849:1;22842:15;22876:4;22873:1;22866:15;22892:127;22953:10;22948:3;22944:20;22941:1;22934:31;22984:4;22981:1;22974:15;23008:4;23005:1;22998:15;23024:127;23085:10;23080:3;23076:20;23073:1;23066:31;23116:4;23113:1;23106:15;23140:4;23137:1;23130:15;23156:131;-1:-1:-1;;;;;;23230:32:1;;23220:43;;23210:71;;23277:1;23274;23267:12
Swarm Source
ipfs://0193cd727a2ba7878c5952d2dd80dd8435b9bec00a3398a7e3f1653ed163a024
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.