NFT
Overview
TokenID
56
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AnimeGang
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-13 */ // File: contracts/IAnimeGang.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IAnimeGang { function mintMemberPresale(bytes32[] memory proof, uint256 numberOfTokens) external payable; function mintMemberPublicSale(uint256 numberOfTokens) external payable; function togglePublicSaleStatus() external; function setMerkleProof(bytes32 proof) external; function setAGIProvenance(string memory AGIProvenance) external; function setAGCOPProvenance(string memory AGCOProvenance) external; function togglePresaleStatus() external; function withdraw() external; function reserve(uint256 gangToReserve) external; function countClaimedTokensFromPresaleListBy(address owner) external returns (uint256); function setBaseURI(string calldata URI) external; } // File: openzeppelin-solidity/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-solidity/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: openzeppelin-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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/AnimeGang.sol pragma solidity ^0.8.2; // ___ .__ __. __ .___ ___. _______ _______ ___ .__ __. _______ // / \ | \ | | | | | \/ | | ____| / _____| / \ | \ | | / _____| // / ^ \ | \| | | | | \ / | | |__ | | __ / ^ \ | \| | | | __ // / /_\ \ | . ` | | | | |\/| | | __| | | |_ | / /_\ \ | . ` | | | |_ | // / _____ \ | |\ | | | | | | | | |____ | |__| | / _____ \ | |\ | | |__| | // /__/ \__\ |__| \__| |__| |__| |__| |_______| \______| /__/ \__\ |__| \__| \______| contract AnimeGang is ERC721, ERC721Enumerable, Ownable, IAnimeGang { using SafeMath for uint256; uint256 public reserveSupply; uint256 public animeGangSupply; mapping(address => uint256) private _presaleCountClaimedTokens; bool public isPublicSaleActive = false; bool public isPresaleActive = false; string public _baseTokenURI; bytes32 private merkleRoot; string public AGIP_PROVENANCE; string public AGCOP_PROVENANCE; uint256 public constant maxPresaleMint = 5; uint256 public constant maxGangMembersMint = 10; //@dev these tokens will be for us and giveaways uint256 private constant OWNERS_GANG = 60; uint256 private constant MAX_ANIME_GANG_MEMBERS = 9940; uint256 private constant MAX_ANIME_GANG_MEMBERS_PRE_SALE = 1000; uint256 private constant MINT_PRESALE_PRICE = 0.075 ether; uint256 private constant MINT_PUBLIC_SALE_PRICE = 0.09 ether; constructor(string memory name, string memory symbol, string memory baseTokenURI) ERC721(name, symbol) { _baseTokenURI = baseTokenURI; } /** * Pause presale if active, make active if paused */ function togglePresaleStatus() external override onlyOwner { isPresaleActive = !isPresaleActive; } /** * Pause public sale if active, make active if paused */ function togglePublicSaleStatus() external override onlyOwner { isPublicSaleActive = !isPublicSaleActive; } function setMerkleProof(bytes32 proof) external override onlyOwner { merkleRoot = proof; } function setAGIProvenance(string memory AGIProvenance) external override onlyOwner { AGIP_PROVENANCE = AGIProvenance; } function setAGCOPProvenance(string memory AGCOProvenance) external override onlyOwner { AGCOP_PROVENANCE = AGCOProvenance; } function mintMemberPublicSale(uint256 numberOfGangMembers) external override payable { require(isPublicSaleActive, "You cannot became a gang member, public sale is inactive. q-_-p"); require(!isPresaleActive, "You cannot became a gang member, using public sale mint. q-_-p"); require(totalSupply() <= MAX_ANIME_GANG_MEMBERS.add(OWNERS_GANG), "All tokens have been minted"); require(numberOfGangMembers <= maxGangMembersMint, "Can mint only 10 tokens per request. "); require(animeGangSupply.add(numberOfGangMembers) <= MAX_ANIME_GANG_MEMBERS, "The purchase will exceed the member slots"); require(MINT_PUBLIC_SALE_PRICE.mul(numberOfGangMembers) <= msg.value, "Ether value sent is not enough"); for(uint i = 0; i < numberOfGangMembers; i++) { uint mintIndex = totalSupply().add(1); animeGangSupply += 1; _safeMint(msg.sender, mintIndex); } } function mintMemberPresale(bytes32[] memory proof, uint256 numberOfGangMembers) external override payable { require(isPresaleActive, "You cannot became a gang member, presale is inactive. q-_-p"); require(!isPublicSaleActive, "You cannot became a gang member, using presale sale mint. q-_-p"); require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "You're a not in the presale list. q-_-p"); require(_presaleCountClaimedTokens[msg.sender].add(numberOfGangMembers) <= maxPresaleMint, "Purchase exceeds max allowed presale mints. "); require(totalSupply().add(numberOfGangMembers) <= MAX_ANIME_GANG_MEMBERS_PRE_SALE, "The purchase will exceed the member slots for PRE-SALE. "); require(MINT_PRESALE_PRICE.mul(numberOfGangMembers) <= msg.value, "Ether value sent is not enough"); for(uint i = 0; i < numberOfGangMembers; i++) { uint mintIndex = totalSupply().add(1); _presaleCountClaimedTokens[msg.sender] += 1; animeGangSupply += 1; _safeMint(msg.sender, mintIndex); } } function countClaimedTokensFromPresaleListBy(address member) external view override returns (uint256) { require(member != address(0), "Zero address not in the list"); return _presaleCountClaimedTokens[member]; } function withdraw() public override onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function reserve(uint256 gangToReserve) external override onlyOwner { require(totalSupply() <= MAX_ANIME_GANG_MEMBERS.add(OWNERS_GANG), "All tokens have been minted"); require(reserveSupply.add(gangToReserve) <= OWNERS_GANG, "Tokens claimed already."); for (uint256 i = 0; i < gangToReserve; i++) { uint256 tokenId = totalSupply().add(1); reserveSupply += 1; _safeMint(msg.sender, tokenId); } } function setBaseURI(string calldata baseURI) external override onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","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":"AGCOP_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AGIP_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"animeGangSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"member","type":"address"}],"name":"countClaimedTokensFromPresaleListBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGangMembersMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfGangMembers","type":"uint256"}],"name":"mintMemberPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfGangMembers","type":"uint256"}],"name":"mintMemberPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gangToReserve","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSupply","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":"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":"string","name":"AGCOProvenance","type":"string"}],"name":"setAGCOPProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"AGIProvenance","type":"string"}],"name":"setAGIProvenance","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proof","type":"bytes32"}],"name":"setMerkleProof","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":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStatus","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600e805461ffff191690553480156200001c57600080fd5b5060405162002ef338038062002ef38339810160408190526200003f916200025d565b8251839083906200005890600090602085019062000100565b5080516200006e90600190602084019062000100565b5050506200008b62000085620000aa60201b60201c565b620000ae565b8051620000a090600f90602084019062000100565b5050505062000341565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010e90620002ee565b90600052602060002090601f0160209004810192826200013257600085556200017d565b82601f106200014d57805160ff19168380011785556200017d565b828001600101855582156200017d579182015b828111156200017d57825182559160200191906001019062000160565b506200018b9291506200018f565b5090565b5b808211156200018b576000815560010162000190565b600082601f830112620001b857600080fd5b81516001600160401b0380821115620001d557620001d56200032b565b604051601f8301601f19908116603f011681019082821181831017156200020057620002006200032b565b816040528381526020925086838588010111156200021d57600080fd5b600091505b8382101562000241578582018301518183018401529082019062000222565b83821115620002535760008385830101525b9695505050505050565b6000806000606084860312156200027357600080fd5b83516001600160401b03808211156200028b57600080fd5b6200029987838801620001a6565b94506020860151915080821115620002b057600080fd5b620002be87838801620001a6565b93506040860151915080821115620002d557600080fd5b50620002e486828701620001a6565b9150509250925092565b600181811c908216806200030357607f821691505b602082108114156200032557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ba280620003516000396000f3fe6080604052600436106102305760003560e01c80637bffb4ce1161012e578063b4576278116100ab578063cfc86f7b1161006f578063cfc86f7b1461061a578063d7a3c2771461062f578063dd9717ac14610644578063e985e9c514610664578063f2fde38b146106ad57600080fd5b8063b45762781461059a578063b88d4fde146105af578063b9ad9fde146105cf578063bcec9e85146105e4578063c87b56dd146105fa57600080fd5b806395d89b41116100f257806395d89b411461051f578063997681ae146105345780639a58bb9414610554578063a22cb46514610567578063a4c11c931461058757600080fd5b80637bffb4ce146104975780637e8d7b31146104ac578063819b25ba146104c157806386758912146104e15780638da5cb5b1461050157600080fd5b80632f745c59116101bc57806355f804b31161018057806355f804b31461040357806360d938dc146104235780636352211e1461044257806370a0823114610462578063715018a61461048257600080fd5b80632f745c59146103795780633ccfd60b1461039957806342842e0e146103ae57806346aa0e4a146103ce5780634f6ccce7146103e357600080fd5b806309213ab01161020357806309213ab0146102e8578063095ea7b31461030a57806318160ddd1461032a5780631e84c4131461033f57806323b872dd1461035957600080fd5b806301ffc9a71461023557806303d41eb61461026a57806306fdde031461028e578063081812fc146102b0575b600080fd5b34801561024157600080fd5b50610255610250366004612727565b6106cd565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b50610280600b5481565b604051908152602001610261565b34801561029a57600080fd5b506102a36106de565b60405161026191906128b4565b3480156102bc57600080fd5b506102d06102cb36600461270e565b610770565b6040516001600160a01b039091168152602001610261565b3480156102f457600080fd5b506103086103033660046127d3565b61080a565b005b34801561031657600080fd5b50610308610325366004612631565b61084b565b34801561033657600080fd5b50600854610280565b34801561034b57600080fd5b50600e546102559060ff1681565b34801561036557600080fd5b5061030861037436600461253d565b610961565b34801561038557600080fd5b50610280610394366004612631565b610992565b3480156103a557600080fd5b50610308610a28565b3480156103ba57600080fd5b506103086103c936600461253d565b610a81565b3480156103da57600080fd5b50610280600a81565b3480156103ef57600080fd5b506102806103fe36600461270e565b610a9c565b34801561040f57600080fd5b5061030861041e366004612761565b610b2f565b34801561042f57600080fd5b50600e5461025590610100900460ff1681565b34801561044e57600080fd5b506102d061045d36600461270e565b610b65565b34801561046e57600080fd5b5061028061047d3660046124ef565b610bdc565b34801561048e57600080fd5b50610308610c63565b3480156104a357600080fd5b50610308610c99565b3480156104b857600080fd5b506102a3610ce0565b3480156104cd57600080fd5b506103086104dc36600461270e565b610d6e565b3480156104ed57600080fd5b506103086104fc36600461270e565b610ead565b34801561050d57600080fd5b50600a546001600160a01b03166102d0565b34801561052b57600080fd5b506102a3610edc565b34801561054057600080fd5b5061030861054f3660046127d3565b610eeb565b61030861056236600461270e565b610f28565b34801561057357600080fd5b506103086105823660046125f5565b6111dc565b61030861059536600461265b565b6111e7565b3480156105a657600080fd5b50610280600581565b3480156105bb57600080fd5b506103086105ca366004612579565b611539565b3480156105db57600080fd5b50610308611571565b3480156105f057600080fd5b50610280600c5481565b34801561060657600080fd5b506102a361061536600461270e565b6115af565b34801561062657600080fd5b506102a361168a565b34801561063b57600080fd5b506102a3611697565b34801561065057600080fd5b5061028061065f3660046124ef565b6116a4565b34801561067057600080fd5b5061025561067f36600461250a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b957600080fd5b506103086106c83660046124ef565b611718565b60006106d8826117b3565b92915050565b6060600080546106ed90612a5e565b80601f016020809104026020016040519081016040528092919081815260200182805461071990612a5e565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146108345760405162461bcd60e51b81526004016107e590612919565b805161084790601290602084019061236e565b5050565b600061085682610b65565b9050806001600160a01b0316836001600160a01b031614156108c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e5565b336001600160a01b03821614806108e057506108e0813361067f565b6109525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e5565b61095c83836117d8565b505050565b61096b3382611846565b6109875760405162461bcd60e51b81526004016107e59061294e565b61095c83838361193d565b600061099d83610bdc565b82106109ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a525760405162461bcd60e51b81526004016107e590612919565b6040514790339082156108fc029083906000818181858888f19350505050158015610847573d6000803e3d6000fd5b61095c83838360405180602001604052806000815250611539565b6000610aa760085490565b8210610b0a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e5565b60088281548110610b1d57610b1d612b0a565b90600052602060002001549050919050565b600a546001600160a01b03163314610b595760405162461bcd60e51b81526004016107e590612919565b61095c600f83836123f2565b6000818152600260205260408120546001600160a01b0316806106d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e5565b60006001600160a01b038216610c475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c8d5760405162461bcd60e51b81526004016107e590612919565b610c976000611ae8565b565b600a546001600160a01b03163314610cc35760405162461bcd60e51b81526004016107e590612919565b600e805461ff001981166101009182900460ff1615909102179055565b60118054610ced90612a5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1990612a5e565b8015610d665780601f10610d3b57610100808354040283529160200191610d66565b820191906000526020600020905b815481529060010190602001808311610d4957829003601f168201915b505050505081565b600a546001600160a01b03163314610d985760405162461bcd60e51b81526004016107e590612919565b610da56126d4603c611b3a565b6008541115610df65760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016107e5565b600b54603c90610e069083611b3a565b1115610e545760405162461bcd60e51b815260206004820152601760248201527f546f6b656e7320636c61696d656420616c72656164792e00000000000000000060448201526064016107e5565b60005b81811015610847576000610e756001610e6f60085490565b90611b3a565b90506001600b6000828254610e8a91906129d0565b90915550610e9a90503382611b46565b5080610ea581612a99565b915050610e57565b600a546001600160a01b03163314610ed75760405162461bcd60e51b81526004016107e590612919565b601055565b6060600180546106ed90612a5e565b600a546001600160a01b03163314610f155760405162461bcd60e51b81526004016107e590612919565b805161084790601190602084019061236e565b600e5460ff16610f8e5760405162461bcd60e51b815260206004820152603f6024820152600080516020612b4d83398151915260448201527f207075626c69632073616c6520697320696e6163746976652e20712d5f2d700060648201526084016107e5565b600e54610100900460ff1615610ffa5760405162461bcd60e51b815260206004820152603e6024820152600080516020612b4d83398151915260448201527f207573696e67207075626c69632073616c65206d696e742e20712d5f2d70000060648201526084016107e5565b6110076126d4603c611b3a565b60085411156110585760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016107e5565b600a8111156110b75760405162461bcd60e51b815260206004820152602560248201527f43616e206d696e74206f6e6c7920313020746f6b656e73207065722072657175604482015264032b9ba17160dd1b60648201526084016107e5565b600c546126d4906110c89083611b3a565b11156111285760405162461bcd60e51b815260206004820152602960248201527f5468652070757263686173652077696c6c2065786365656420746865206d656d60448201526862657220736c6f747360b81b60648201526084016107e5565b3461113b67013fbe85edc9000083611b60565b11156111895760405162461bcd60e51b815260206004820152601e60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f756768000060448201526064016107e5565b60005b818110156108475760006111a46001610e6f60085490565b90506001600c60008282546111b991906129d0565b909155506111c990503382611b46565b50806111d481612a99565b91505061118c565b610847338383611b6c565b600e54610100900460ff166112525760405162461bcd60e51b815260206004820152603b6024820152600080516020612b4d83398151915260448201527f2070726573616c6520697320696e6163746976652e20712d5f2d70000000000060648201526084016107e5565b600e5460ff16156112b95760405162461bcd60e51b815260206004820152603f6024820152600080516020612b4d83398151915260448201527f207573696e672070726573616c652073616c65206d696e742e20712d5f2d700060648201526084016107e5565b6010546040516bffffffffffffffffffffffff193360601b1660208201526112fb91849160340160405160208183030381529060405280519060200120611c3b565b6113575760405162461bcd60e51b815260206004820152602760248201527f596f752772652061206e6f7420696e207468652070726573616c65206c69737460448201526602e20712d5f2d760cc1b60648201526084016107e5565b336000908152600d60205260409020546005906113749083611b3a565b11156113d75760405162461bcd60e51b815260206004820152602c60248201527f50757263686173652065786365656473206d617820616c6c6f7765642070726560448201526b039b0b6329036b4b73a3997160a51b60648201526084016107e5565b6103e86113e782610e6f60085490565b111561145b5760405162461bcd60e51b815260206004820152603860248201527f5468652070757263686173652077696c6c2065786365656420746865206d656d60448201527f62657220736c6f747320666f72205052452d53414c452e20000000000000000060648201526084016107e5565b3461146e67010a741a4627800083611b60565b11156114bc5760405162461bcd60e51b815260206004820152601e60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f756768000060448201526064016107e5565b60005b8181101561095c5760006114d76001610e6f60085490565b336000908152600d6020526040812080549293506001929091906114fc9084906129d0565b925050819055506001600c600082825461151691906129d0565b9091555061152690503382611b46565b508061153181612a99565b9150506114bf565b6115433383611846565b61155f5760405162461bcd60e51b81526004016107e59061294e565b61156b84848484611c51565b50505050565b600a546001600160a01b0316331461159b5760405162461bcd60e51b81526004016107e590612919565b600e805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b031661162e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e5565b6000611638611c84565b905060008151116116585760405180602001604052806000815250611683565b8061166284611c93565b604051602001611673929190612848565b6040516020818303038152906040525b9392505050565b600f8054610ced90612a5e565b60128054610ced90612a5e565b60006001600160a01b0382166116fc5760405162461bcd60e51b815260206004820152601c60248201527f5a65726f2061646472657373206e6f7420696e20746865206c6973740000000060448201526064016107e5565b506001600160a01b03166000908152600d602052604090205490565b600a546001600160a01b031633146117425760405162461bcd60e51b81526004016107e590612919565b6001600160a01b0381166117a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e5565b6117b081611ae8565b50565b60006001600160e01b0319821663780e9d6360e01b14806106d857506106d882611d91565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180d82610b65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e5565b60006118ca83610b65565b9050806001600160a01b0316846001600160a01b031614806119055750836001600160a01b03166118fa84610770565b6001600160a01b0316145b8061193557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661195082610b65565b6001600160a01b0316146119b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e5565b6001600160a01b038216611a1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e5565b611a25838383611de1565b611a306000826117d8565b6001600160a01b0383166000908152600360205260408120805460019290611a59908490612a1b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a879084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061168382846129d0565b610847828260405180602001604052806000815250611dec565b600061168382846129fc565b816001600160a01b0316836001600160a01b03161415611bce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082611c488584611e1f565b14949350505050565b611c5c84848461193d565b611c6884848484611ecb565b61156b5760405162461bcd60e51b81526004016107e5906128c7565b6060600f80546106ed90612a5e565b606081611cb75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce15780611ccb81612a99565b9150611cda9050600a836129e8565b9150611cbb565b60008167ffffffffffffffff811115611cfc57611cfc612b20565b6040519080825280601f01601f191660200182016040528015611d26576020820181803683370190505b5090505b841561193557611d3b600183612a1b565b9150611d48600a86612ab4565b611d539060306129d0565b60f81b818381518110611d6857611d68612b0a565b60200101906001600160f81b031916908160001a905350611d8a600a866129e8565b9450611d2a565b60006001600160e01b031982166380ac58cd60e01b1480611dc257506001600160e01b03198216635b5e139f60e01b145b806106d857506301ffc9a760e01b6001600160e01b03198316146106d8565b61095c838383611fd8565b611df68383612090565b611e036000848484611ecb565b61095c5760405162461bcd60e51b81526004016107e5906128c7565b600081815b8451811015611ec3576000858281518110611e4157611e41612b0a565b60200260200101519050808311611e83576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611eb0565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611ebb81612a99565b915050611e24565b509392505050565b60006001600160a01b0384163b15611fcd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f0f903390899088908890600401612877565b602060405180830381600087803b158015611f2957600080fd5b505af1925050508015611f59575060408051601f3d908101601f19168201909252611f5691810190612744565b60015b611fb3573d808015611f87576040519150601f19603f3d011682016040523d82523d6000602084013e611f8c565b606091505b508051611fab5760405162461bcd60e51b81526004016107e5906128c7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611935565b506001949350505050565b6001600160a01b0383166120335761202e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612056565b816001600160a01b0316836001600160a01b0316146120565761205683826121de565b6001600160a01b03821661206d5761095c8161227b565b826001600160a01b0316826001600160a01b03161461095c5761095c828261232a565b6001600160a01b0382166120e65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e5565b6000818152600260205260409020546001600160a01b03161561214b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e5565b61215760008383611de1565b6001600160a01b03821660009081526003602052604081208054600192906121809084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121eb84610bdc565b6121f59190612a1b565b600083815260076020526040902054909150808214612248576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061228d90600190612a1b565b600083815260096020526040812054600880549394509092849081106122b5576122b5612b0a565b9060005260206000200154905080600883815481106122d6576122d6612b0a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061230e5761230e612af4565b6001900381819060005260206000200160009055905550505050565b600061233583610bdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461237a90612a5e565b90600052602060002090601f01602090048101928261239c57600085556123e2565b82601f106123b557805160ff19168380011785556123e2565b828001600101855582156123e2579182015b828111156123e25782518255916020019190600101906123c7565b506123ee929150612466565b5090565b8280546123fe90612a5e565b90600052602060002090601f01602090048101928261242057600085556123e2565b82601f106124395782800160ff198235161785556123e2565b828001600101855582156123e2579182015b828111156123e257823582559160200191906001019061244b565b5b808211156123ee5760008155600101612467565b600067ffffffffffffffff83111561249557612495612b20565b6124a8601f8401601f191660200161299f565b90508281528383830111156124bc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124ea57600080fd5b919050565b60006020828403121561250157600080fd5b611683826124d3565b6000806040838503121561251d57600080fd5b612526836124d3565b9150612534602084016124d3565b90509250929050565b60008060006060848603121561255257600080fd5b61255b846124d3565b9250612569602085016124d3565b9150604084013590509250925092565b6000806000806080858703121561258f57600080fd5b612598856124d3565b93506125a6602086016124d3565b925060408501359150606085013567ffffffffffffffff8111156125c957600080fd5b8501601f810187136125da57600080fd5b6125e98782356020840161247b565b91505092959194509250565b6000806040838503121561260857600080fd5b612611836124d3565b91506020830135801515811461262657600080fd5b809150509250929050565b6000806040838503121561264457600080fd5b61264d836124d3565b946020939093013593505050565b6000806040838503121561266e57600080fd5b823567ffffffffffffffff8082111561268657600080fd5b818501915085601f83011261269a57600080fd5b81356020828211156126ae576126ae612b20565b8160051b92506126bf81840161299f565b8281528181019085830185870184018b10156126da57600080fd5b600096505b848710156126fd5780358352600196909601959183019183016126df565b509997909101359750505050505050565b60006020828403121561272057600080fd5b5035919050565b60006020828403121561273957600080fd5b813561168381612b36565b60006020828403121561275657600080fd5b815161168381612b36565b6000806020838503121561277457600080fd5b823567ffffffffffffffff8082111561278c57600080fd5b818501915085601f8301126127a057600080fd5b8135818111156127af57600080fd5b8660208285010111156127c157600080fd5b60209290920196919550909350505050565b6000602082840312156127e557600080fd5b813567ffffffffffffffff8111156127fc57600080fd5b8201601f8101841361280d57600080fd5b6119358482356020840161247b565b60008151808452612834816020860160208601612a32565b601f01601f19169290920160200192915050565b6000835161285a818460208801612a32565b83519083019061286e818360208801612a32565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128aa9083018461281c565b9695505050505050565b602081526000611683602083018461281c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129c8576129c8612b20565b604052919050565b600082198211156129e3576129e3612ac8565b500190565b6000826129f7576129f7612ade565b500490565b6000816000190483118215151615612a1657612a16612ac8565b500290565b600082821015612a2d57612a2d612ac8565b500390565b60005b83811015612a4d578181015183820152602001612a35565b8381111561156b5750506000910152565b600181811c90821680612a7257607f821691505b60208210811415612a9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aad57612aad612ac8565b5060010190565b600082612ac357612ac3612ade565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117b057600080fdfe596f752063616e6e6f7420626563616d6520612067616e67206d656d6265722ca2646970667358221220f70d99f6cda5402764bc0321b9a384b9ce5d482d81ee608e2980114aed1006cb64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009416e696d6547616e670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000241470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6334626f6b557654454c7731347335364d46764c374d3764534a506377515a7652654d4e31705671707876352f00000000000000000000
Deployed Bytecode
0x6080604052600436106102305760003560e01c80637bffb4ce1161012e578063b4576278116100ab578063cfc86f7b1161006f578063cfc86f7b1461061a578063d7a3c2771461062f578063dd9717ac14610644578063e985e9c514610664578063f2fde38b146106ad57600080fd5b8063b45762781461059a578063b88d4fde146105af578063b9ad9fde146105cf578063bcec9e85146105e4578063c87b56dd146105fa57600080fd5b806395d89b41116100f257806395d89b411461051f578063997681ae146105345780639a58bb9414610554578063a22cb46514610567578063a4c11c931461058757600080fd5b80637bffb4ce146104975780637e8d7b31146104ac578063819b25ba146104c157806386758912146104e15780638da5cb5b1461050157600080fd5b80632f745c59116101bc57806355f804b31161018057806355f804b31461040357806360d938dc146104235780636352211e1461044257806370a0823114610462578063715018a61461048257600080fd5b80632f745c59146103795780633ccfd60b1461039957806342842e0e146103ae57806346aa0e4a146103ce5780634f6ccce7146103e357600080fd5b806309213ab01161020357806309213ab0146102e8578063095ea7b31461030a57806318160ddd1461032a5780631e84c4131461033f57806323b872dd1461035957600080fd5b806301ffc9a71461023557806303d41eb61461026a57806306fdde031461028e578063081812fc146102b0575b600080fd5b34801561024157600080fd5b50610255610250366004612727565b6106cd565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b50610280600b5481565b604051908152602001610261565b34801561029a57600080fd5b506102a36106de565b60405161026191906128b4565b3480156102bc57600080fd5b506102d06102cb36600461270e565b610770565b6040516001600160a01b039091168152602001610261565b3480156102f457600080fd5b506103086103033660046127d3565b61080a565b005b34801561031657600080fd5b50610308610325366004612631565b61084b565b34801561033657600080fd5b50600854610280565b34801561034b57600080fd5b50600e546102559060ff1681565b34801561036557600080fd5b5061030861037436600461253d565b610961565b34801561038557600080fd5b50610280610394366004612631565b610992565b3480156103a557600080fd5b50610308610a28565b3480156103ba57600080fd5b506103086103c936600461253d565b610a81565b3480156103da57600080fd5b50610280600a81565b3480156103ef57600080fd5b506102806103fe36600461270e565b610a9c565b34801561040f57600080fd5b5061030861041e366004612761565b610b2f565b34801561042f57600080fd5b50600e5461025590610100900460ff1681565b34801561044e57600080fd5b506102d061045d36600461270e565b610b65565b34801561046e57600080fd5b5061028061047d3660046124ef565b610bdc565b34801561048e57600080fd5b50610308610c63565b3480156104a357600080fd5b50610308610c99565b3480156104b857600080fd5b506102a3610ce0565b3480156104cd57600080fd5b506103086104dc36600461270e565b610d6e565b3480156104ed57600080fd5b506103086104fc36600461270e565b610ead565b34801561050d57600080fd5b50600a546001600160a01b03166102d0565b34801561052b57600080fd5b506102a3610edc565b34801561054057600080fd5b5061030861054f3660046127d3565b610eeb565b61030861056236600461270e565b610f28565b34801561057357600080fd5b506103086105823660046125f5565b6111dc565b61030861059536600461265b565b6111e7565b3480156105a657600080fd5b50610280600581565b3480156105bb57600080fd5b506103086105ca366004612579565b611539565b3480156105db57600080fd5b50610308611571565b3480156105f057600080fd5b50610280600c5481565b34801561060657600080fd5b506102a361061536600461270e565b6115af565b34801561062657600080fd5b506102a361168a565b34801561063b57600080fd5b506102a3611697565b34801561065057600080fd5b5061028061065f3660046124ef565b6116a4565b34801561067057600080fd5b5061025561067f36600461250a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b957600080fd5b506103086106c83660046124ef565b611718565b60006106d8826117b3565b92915050565b6060600080546106ed90612a5e565b80601f016020809104026020016040519081016040528092919081815260200182805461071990612a5e565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146108345760405162461bcd60e51b81526004016107e590612919565b805161084790601290602084019061236e565b5050565b600061085682610b65565b9050806001600160a01b0316836001600160a01b031614156108c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e5565b336001600160a01b03821614806108e057506108e0813361067f565b6109525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e5565b61095c83836117d8565b505050565b61096b3382611846565b6109875760405162461bcd60e51b81526004016107e59061294e565b61095c83838361193d565b600061099d83610bdc565b82106109ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a525760405162461bcd60e51b81526004016107e590612919565b6040514790339082156108fc029083906000818181858888f19350505050158015610847573d6000803e3d6000fd5b61095c83838360405180602001604052806000815250611539565b6000610aa760085490565b8210610b0a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e5565b60088281548110610b1d57610b1d612b0a565b90600052602060002001549050919050565b600a546001600160a01b03163314610b595760405162461bcd60e51b81526004016107e590612919565b61095c600f83836123f2565b6000818152600260205260408120546001600160a01b0316806106d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e5565b60006001600160a01b038216610c475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c8d5760405162461bcd60e51b81526004016107e590612919565b610c976000611ae8565b565b600a546001600160a01b03163314610cc35760405162461bcd60e51b81526004016107e590612919565b600e805461ff001981166101009182900460ff1615909102179055565b60118054610ced90612a5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1990612a5e565b8015610d665780601f10610d3b57610100808354040283529160200191610d66565b820191906000526020600020905b815481529060010190602001808311610d4957829003601f168201915b505050505081565b600a546001600160a01b03163314610d985760405162461bcd60e51b81526004016107e590612919565b610da56126d4603c611b3a565b6008541115610df65760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016107e5565b600b54603c90610e069083611b3a565b1115610e545760405162461bcd60e51b815260206004820152601760248201527f546f6b656e7320636c61696d656420616c72656164792e00000000000000000060448201526064016107e5565b60005b81811015610847576000610e756001610e6f60085490565b90611b3a565b90506001600b6000828254610e8a91906129d0565b90915550610e9a90503382611b46565b5080610ea581612a99565b915050610e57565b600a546001600160a01b03163314610ed75760405162461bcd60e51b81526004016107e590612919565b601055565b6060600180546106ed90612a5e565b600a546001600160a01b03163314610f155760405162461bcd60e51b81526004016107e590612919565b805161084790601190602084019061236e565b600e5460ff16610f8e5760405162461bcd60e51b815260206004820152603f6024820152600080516020612b4d83398151915260448201527f207075626c69632073616c6520697320696e6163746976652e20712d5f2d700060648201526084016107e5565b600e54610100900460ff1615610ffa5760405162461bcd60e51b815260206004820152603e6024820152600080516020612b4d83398151915260448201527f207573696e67207075626c69632073616c65206d696e742e20712d5f2d70000060648201526084016107e5565b6110076126d4603c611b3a565b60085411156110585760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016107e5565b600a8111156110b75760405162461bcd60e51b815260206004820152602560248201527f43616e206d696e74206f6e6c7920313020746f6b656e73207065722072657175604482015264032b9ba17160dd1b60648201526084016107e5565b600c546126d4906110c89083611b3a565b11156111285760405162461bcd60e51b815260206004820152602960248201527f5468652070757263686173652077696c6c2065786365656420746865206d656d60448201526862657220736c6f747360b81b60648201526084016107e5565b3461113b67013fbe85edc9000083611b60565b11156111895760405162461bcd60e51b815260206004820152601e60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f756768000060448201526064016107e5565b60005b818110156108475760006111a46001610e6f60085490565b90506001600c60008282546111b991906129d0565b909155506111c990503382611b46565b50806111d481612a99565b91505061118c565b610847338383611b6c565b600e54610100900460ff166112525760405162461bcd60e51b815260206004820152603b6024820152600080516020612b4d83398151915260448201527f2070726573616c6520697320696e6163746976652e20712d5f2d70000000000060648201526084016107e5565b600e5460ff16156112b95760405162461bcd60e51b815260206004820152603f6024820152600080516020612b4d83398151915260448201527f207573696e672070726573616c652073616c65206d696e742e20712d5f2d700060648201526084016107e5565b6010546040516bffffffffffffffffffffffff193360601b1660208201526112fb91849160340160405160208183030381529060405280519060200120611c3b565b6113575760405162461bcd60e51b815260206004820152602760248201527f596f752772652061206e6f7420696e207468652070726573616c65206c69737460448201526602e20712d5f2d760cc1b60648201526084016107e5565b336000908152600d60205260409020546005906113749083611b3a565b11156113d75760405162461bcd60e51b815260206004820152602c60248201527f50757263686173652065786365656473206d617820616c6c6f7765642070726560448201526b039b0b6329036b4b73a3997160a51b60648201526084016107e5565b6103e86113e782610e6f60085490565b111561145b5760405162461bcd60e51b815260206004820152603860248201527f5468652070757263686173652077696c6c2065786365656420746865206d656d60448201527f62657220736c6f747320666f72205052452d53414c452e20000000000000000060648201526084016107e5565b3461146e67010a741a4627800083611b60565b11156114bc5760405162461bcd60e51b815260206004820152601e60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f756768000060448201526064016107e5565b60005b8181101561095c5760006114d76001610e6f60085490565b336000908152600d6020526040812080549293506001929091906114fc9084906129d0565b925050819055506001600c600082825461151691906129d0565b9091555061152690503382611b46565b508061153181612a99565b9150506114bf565b6115433383611846565b61155f5760405162461bcd60e51b81526004016107e59061294e565b61156b84848484611c51565b50505050565b600a546001600160a01b0316331461159b5760405162461bcd60e51b81526004016107e590612919565b600e805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b031661162e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e5565b6000611638611c84565b905060008151116116585760405180602001604052806000815250611683565b8061166284611c93565b604051602001611673929190612848565b6040516020818303038152906040525b9392505050565b600f8054610ced90612a5e565b60128054610ced90612a5e565b60006001600160a01b0382166116fc5760405162461bcd60e51b815260206004820152601c60248201527f5a65726f2061646472657373206e6f7420696e20746865206c6973740000000060448201526064016107e5565b506001600160a01b03166000908152600d602052604090205490565b600a546001600160a01b031633146117425760405162461bcd60e51b81526004016107e590612919565b6001600160a01b0381166117a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e5565b6117b081611ae8565b50565b60006001600160e01b0319821663780e9d6360e01b14806106d857506106d882611d91565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180d82610b65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e5565b60006118ca83610b65565b9050806001600160a01b0316846001600160a01b031614806119055750836001600160a01b03166118fa84610770565b6001600160a01b0316145b8061193557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661195082610b65565b6001600160a01b0316146119b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e5565b6001600160a01b038216611a1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e5565b611a25838383611de1565b611a306000826117d8565b6001600160a01b0383166000908152600360205260408120805460019290611a59908490612a1b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a879084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061168382846129d0565b610847828260405180602001604052806000815250611dec565b600061168382846129fc565b816001600160a01b0316836001600160a01b03161415611bce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082611c488584611e1f565b14949350505050565b611c5c84848461193d565b611c6884848484611ecb565b61156b5760405162461bcd60e51b81526004016107e5906128c7565b6060600f80546106ed90612a5e565b606081611cb75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce15780611ccb81612a99565b9150611cda9050600a836129e8565b9150611cbb565b60008167ffffffffffffffff811115611cfc57611cfc612b20565b6040519080825280601f01601f191660200182016040528015611d26576020820181803683370190505b5090505b841561193557611d3b600183612a1b565b9150611d48600a86612ab4565b611d539060306129d0565b60f81b818381518110611d6857611d68612b0a565b60200101906001600160f81b031916908160001a905350611d8a600a866129e8565b9450611d2a565b60006001600160e01b031982166380ac58cd60e01b1480611dc257506001600160e01b03198216635b5e139f60e01b145b806106d857506301ffc9a760e01b6001600160e01b03198316146106d8565b61095c838383611fd8565b611df68383612090565b611e036000848484611ecb565b61095c5760405162461bcd60e51b81526004016107e5906128c7565b600081815b8451811015611ec3576000858281518110611e4157611e41612b0a565b60200260200101519050808311611e83576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611eb0565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611ebb81612a99565b915050611e24565b509392505050565b60006001600160a01b0384163b15611fcd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f0f903390899088908890600401612877565b602060405180830381600087803b158015611f2957600080fd5b505af1925050508015611f59575060408051601f3d908101601f19168201909252611f5691810190612744565b60015b611fb3573d808015611f87576040519150601f19603f3d011682016040523d82523d6000602084013e611f8c565b606091505b508051611fab5760405162461bcd60e51b81526004016107e5906128c7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611935565b506001949350505050565b6001600160a01b0383166120335761202e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612056565b816001600160a01b0316836001600160a01b0316146120565761205683826121de565b6001600160a01b03821661206d5761095c8161227b565b826001600160a01b0316826001600160a01b03161461095c5761095c828261232a565b6001600160a01b0382166120e65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e5565b6000818152600260205260409020546001600160a01b03161561214b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e5565b61215760008383611de1565b6001600160a01b03821660009081526003602052604081208054600192906121809084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121eb84610bdc565b6121f59190612a1b565b600083815260076020526040902054909150808214612248576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061228d90600190612a1b565b600083815260096020526040812054600880549394509092849081106122b5576122b5612b0a565b9060005260206000200154905080600883815481106122d6576122d6612b0a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061230e5761230e612af4565b6001900381819060005260206000200160009055905550505050565b600061233583610bdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461237a90612a5e565b90600052602060002090601f01602090048101928261239c57600085556123e2565b82601f106123b557805160ff19168380011785556123e2565b828001600101855582156123e2579182015b828111156123e25782518255916020019190600101906123c7565b506123ee929150612466565b5090565b8280546123fe90612a5e565b90600052602060002090601f01602090048101928261242057600085556123e2565b82601f106124395782800160ff198235161785556123e2565b828001600101855582156123e2579182015b828111156123e257823582559160200191906001019061244b565b5b808211156123ee5760008155600101612467565b600067ffffffffffffffff83111561249557612495612b20565b6124a8601f8401601f191660200161299f565b90508281528383830111156124bc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124ea57600080fd5b919050565b60006020828403121561250157600080fd5b611683826124d3565b6000806040838503121561251d57600080fd5b612526836124d3565b9150612534602084016124d3565b90509250929050565b60008060006060848603121561255257600080fd5b61255b846124d3565b9250612569602085016124d3565b9150604084013590509250925092565b6000806000806080858703121561258f57600080fd5b612598856124d3565b93506125a6602086016124d3565b925060408501359150606085013567ffffffffffffffff8111156125c957600080fd5b8501601f810187136125da57600080fd5b6125e98782356020840161247b565b91505092959194509250565b6000806040838503121561260857600080fd5b612611836124d3565b91506020830135801515811461262657600080fd5b809150509250929050565b6000806040838503121561264457600080fd5b61264d836124d3565b946020939093013593505050565b6000806040838503121561266e57600080fd5b823567ffffffffffffffff8082111561268657600080fd5b818501915085601f83011261269a57600080fd5b81356020828211156126ae576126ae612b20565b8160051b92506126bf81840161299f565b8281528181019085830185870184018b10156126da57600080fd5b600096505b848710156126fd5780358352600196909601959183019183016126df565b509997909101359750505050505050565b60006020828403121561272057600080fd5b5035919050565b60006020828403121561273957600080fd5b813561168381612b36565b60006020828403121561275657600080fd5b815161168381612b36565b6000806020838503121561277457600080fd5b823567ffffffffffffffff8082111561278c57600080fd5b818501915085601f8301126127a057600080fd5b8135818111156127af57600080fd5b8660208285010111156127c157600080fd5b60209290920196919550909350505050565b6000602082840312156127e557600080fd5b813567ffffffffffffffff8111156127fc57600080fd5b8201601f8101841361280d57600080fd5b6119358482356020840161247b565b60008151808452612834816020860160208601612a32565b601f01601f19169290920160200192915050565b6000835161285a818460208801612a32565b83519083019061286e818360208801612a32565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128aa9083018461281c565b9695505050505050565b602081526000611683602083018461281c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129c8576129c8612b20565b604052919050565b600082198211156129e3576129e3612ac8565b500190565b6000826129f7576129f7612ade565b500490565b6000816000190483118215151615612a1657612a16612ac8565b500290565b600082821015612a2d57612a2d612ac8565b500390565b60005b83811015612a4d578181015183820152602001612a35565b8381111561156b5750506000910152565b600181811c90821680612a7257607f821691505b60208210811415612a9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aad57612aad612ac8565b5060010190565b600082612ac357612ac3612ade565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117b057600080fdfe596f752063616e6e6f7420626563616d6520612067616e67206d656d6265722ca2646970667358221220f70d99f6cda5402764bc0321b9a384b9ce5d482d81ee608e2980114aed1006cb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009416e696d6547616e670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000241470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6334626f6b557654454c7731347335364d46764c374d3764534a506377515a7652654d4e31705671707876352f00000000000000000000
-----Decoded View---------------
Arg [0] : name (string): AnimeGang
Arg [1] : symbol (string): AG
Arg [2] : baseTokenURI (string): ipfs://Qmc4bokUvTELw14s56MFvL7M7dSJPcwQZvReMN1pVqpxv5/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 416e696d6547616e670000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4147000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d6334626f6b557654454c7731347335364d46764c374d37
Arg [9] : 64534a506377515a7652654d4e31705671707876352f00000000000000000000
Deployed Bytecode Sourcemap
55469:5534:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60827:171;;;;;;;;;;-1:-1:-1;60827:171:0;;;;;:::i;:::-;;:::i;:::-;;;7721:14:1;;7714:22;7696:41;;7684:2;7669:18;60827:171:0;;;;;;;;55582:28;;;;;;;;;;;;;;;;;;;20534:25:1;;;20522:2;20507:18;55582:28:0;20388:177:1;35915:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37474:221::-;;;;;;;;;;-1:-1:-1;37474:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7019:32:1;;;7001:51;;6989:2;6974:18;37474:221:0;6855:203:1;57253:138:0;;;;;;;;;;-1:-1:-1;57253:138:0;;;;;:::i;:::-;;:::i;:::-;;36997:411;;;;;;;;;;-1:-1:-1;36997:411:0;;;;;:::i;:::-;;:::i;49069:113::-;;;;;;;;;;-1:-1:-1;49157:10:0;:17;49069:113;;55725:38;;;;;;;;;;-1:-1:-1;55725:38:0;;;;;;;;38224:339;;;;;;;;;;-1:-1:-1;38224:339:0;;;;;:::i;:::-;;:::i;48737:256::-;;;;;;;;;;-1:-1:-1;48737:256:0;;;;;:::i;:::-;;:::i;59752:149::-;;;;;;;;;;;;;:::i;38634:185::-;;;;;;;;;;-1:-1:-1;38634:185:0;;;;;:::i;:::-;;:::i;56007:47::-;;;;;;;;;;;;56052:2;56007:47;;49259:233;;;;;;;;;;-1:-1:-1;49259:233:0;;;;;:::i;:::-;;:::i;60393:115::-;;;;;;;;;;-1:-1:-1;60393:115:0;;;;;:::i;:::-;;:::i;55770:35::-;;;;;;;;;;-1:-1:-1;55770:35:0;;;;;;;;;;;35609:239;;;;;;;;;;-1:-1:-1;35609:239:0;;;;;:::i;:::-;;:::i;35339:208::-;;;;;;;;;;-1:-1:-1;35339:208:0;;;;;:::i;:::-;;:::i;14821:103::-;;;;;;;;;;;;;:::i;56676:112::-;;;;;;;;;;;;;:::i;55883:29::-;;;;;;;;;;;;;:::i;59909:476::-;;;;;;;;;;-1:-1:-1;59909:476:0;;;;;:::i;:::-;;:::i;57000:104::-;;;;;;;;;;-1:-1:-1;57000:104:0;;;;;:::i;:::-;;:::i;14170:87::-;;;;;;;;;;-1:-1:-1;14243:6:0;;-1:-1:-1;;;;;14243:6:0;14170:87;;36084:104;;;;;;;;;;;;;:::i;57112:133::-;;;;;;;;;;-1:-1:-1;57112:133:0;;;;;:::i;:::-;;:::i;57399:958::-;;;;;;:::i;:::-;;:::i;37767:155::-;;;;;;;;;;-1:-1:-1;37767:155:0;;;;;:::i;:::-;;:::i;58365:1135::-;;;;;;:::i;:::-;;:::i;55958:42::-;;;;;;;;;;;;55999:1;55958:42;;38890:328;;;;;;;;;;-1:-1:-1;38890:328:0;;;;;:::i;:::-;;:::i;56871:121::-;;;;;;;;;;;;;:::i;55617:30::-;;;;;;;;;;;;;;;;36259:334;;;;;;;;;;-1:-1:-1;36259:334:0;;;;;:::i;:::-;;:::i;55814:27::-;;;;;;;;;;;;;:::i;55919:30::-;;;;;;;;;;;;;:::i;59508:236::-;;;;;;;;;;-1:-1:-1;59508:236:0;;;;;:::i;:::-;;:::i;37993:164::-;;;;;;;;;;-1:-1:-1;37993:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38114:25:0;;;38090:4;38114:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37993:164;15079:201;;;;;;;;;;-1:-1:-1;15079:201:0;;;;;:::i;:::-;;:::i;60827:171::-;60930:4;60954:36;60978:11;60954:23;:36::i;:::-;60947:43;60827:171;-1:-1:-1;;60827:171:0:o;35915:100::-;35969:13;36002:5;35995:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35915:100;:::o;37474:221::-;37550:7;40817:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40817:16:0;37570:73;;;;-1:-1:-1;;;37570:73:0;;15036:2:1;37570:73:0;;;15018:21:1;15075:2;15055:18;;;15048:30;15114:34;15094:18;;;15087:62;-1:-1:-1;;;15165:18:1;;;15158:42;15217:19;;37570:73:0;;;;;;;;;-1:-1:-1;37663:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37663:24:0;;37474:221::o;57253:138::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;57350:33;;::::1;::::0;:16:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57253:138:::0;:::o;36997:411::-;37078:13;37094:23;37109:7;37094:14;:23::i;:::-;37078:39;;37142:5;-1:-1:-1;;;;;37136:11:0;:2;-1:-1:-1;;;;;37136:11:0;;;37128:57;;;;-1:-1:-1;;;37128:57:0;;17454:2:1;37128:57:0;;;17436:21:1;17493:2;17473:18;;;17466:30;17532:34;17512:18;;;17505:62;-1:-1:-1;;;17583:18:1;;;17576:31;17624:19;;37128:57:0;17252:397:1;37128:57:0;12966:10;-1:-1:-1;;;;;37220:21:0;;;;:62;;-1:-1:-1;37245:37:0;37262:5;12966:10;37993:164;:::i;37245:37::-;37198:168;;;;-1:-1:-1;;;37198:168:0;;13429:2:1;37198:168:0;;;13411:21:1;13468:2;13448:18;;;13441:30;13507:34;13487:18;;;13480:62;13578:26;13558:18;;;13551:54;13622:19;;37198:168:0;13227:420:1;37198:168:0;37379:21;37388:2;37392:7;37379:8;:21::i;:::-;37067:341;36997:411;;:::o;38224:339::-;38419:41;12966:10;38452:7;38419:18;:41::i;:::-;38411:103;;;;-1:-1:-1;;;38411:103:0;;;;;;;:::i;:::-;38527:28;38537:4;38543:2;38547:7;38527:9;:28::i;48737:256::-;48834:7;48870:23;48887:5;48870:16;:23::i;:::-;48862:5;:31;48854:87;;;;-1:-1:-1;;;48854:87:0;;9018:2:1;48854:87:0;;;9000:21:1;9057:2;9037:18;;;9030:30;9096:34;9076:18;;;9069:62;-1:-1:-1;;;9147:18:1;;;9140:41;9198:19;;48854:87:0;8816:407:1;48854:87:0;-1:-1:-1;;;;;;48959:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48737:256::o;59752:149::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;59856:37:::1;::::0;59824:21:::1;::::0;59864:10:::1;::::0;59856:37;::::1;;;::::0;59824:21;;59809:12:::1;59856:37:::0;59809:12;59856:37;59824:21;59864:10;59856:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;38634:185:::0;38772:39;38789:4;38795:2;38799:7;38772:39;;;;;;;;;;;;:16;:39::i;49259:233::-;49334:7;49370:30;49157:10;:17;;49069:113;49370:30;49362:5;:38;49354:95;;;;-1:-1:-1;;;49354:95:0;;19462:2:1;49354:95:0;;;19444:21:1;19501:2;19481:18;;;19474:30;19540:34;19520:18;;;19513:62;-1:-1:-1;;;19591:18:1;;;19584:42;19643:19;;49354:95:0;19260:408:1;49354:95:0;49467:10;49478:5;49467:17;;;;;;;;:::i;:::-;;;;;;;;;49460:24;;49259:233;;;:::o;60393:115::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;60477:23:::1;:13;60493:7:::0;;60477:23:::1;:::i;35609:239::-:0;35681:7;35717:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35717:16:0;35752:19;35744:73;;;;-1:-1:-1;;;35744:73:0;;14265:2:1;35744:73:0;;;14247:21:1;14304:2;14284:18;;;14277:30;14343:34;14323:18;;;14316:62;-1:-1:-1;;;14394:18:1;;;14387:39;14443:19;;35744:73:0;14063:405:1;35339:208:0;35411:7;-1:-1:-1;;;;;35439:19:0;;35431:74;;;;-1:-1:-1;;;35431:74:0;;13854:2:1;35431:74:0;;;13836:21:1;13893:2;13873:18;;;13866:30;13932:34;13912:18;;;13905:62;-1:-1:-1;;;13983:18:1;;;13976:40;14033:19;;35431:74:0;13652:406:1;35431:74:0;-1:-1:-1;;;;;;35523:16:0;;;;;:9;:16;;;;;;;35339:208::o;14821:103::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;14886:30:::1;14913:1;14886:18;:30::i;:::-;14821:103::o:0;56676:112::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;56765:15:::1;::::0;;-1:-1:-1;;56746:34:0;::::1;56765:15;::::0;;;::::1;;;56764:16;56746:34:::0;;::::1;;::::0;;56676:112::o;55883:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59909:476::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;60013:39:::1;56213:4;56154:2;60013:26;:39::i;:::-;49157:10:::0;:17;59996:56:::1;;59988:96;;;::::0;-1:-1:-1;;;59988:96:0;;20234:2:1;59988:96:0::1;::::0;::::1;20216:21:1::0;20273:2;20253:18;;;20246:30;20312:29;20292:18;;;20285:57;20359:18;;59988:96:0::1;20032:351:1::0;59988:96:0::1;60103:13;::::0;56154:2:::1;::::0;60103:32:::1;::::0;60121:13;60103:17:::1;:32::i;:::-;:47;;60095:83;;;::::0;-1:-1:-1;;;60095:83:0;;11473:2:1;60095:83:0::1;::::0;::::1;11455:21:1::0;11512:2;11492:18;;;11485:30;11551:25;11531:18;;;11524:53;11594:18;;60095:83:0::1;11271:347:1::0;60095:83:0::1;60196:9;60191:187;60215:13;60211:1;:17;60191:187;;;60250:15;60268:20;60286:1;60268:13;49157:10:::0;:17;;49069:113;60268:13:::1;:17:::0;::::1;:20::i;:::-;60250:38;;60320:1;60303:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;60336:30:0::1;::::0;-1:-1:-1;60346:10:0::1;60358:7:::0;60336:9:::1;:30::i;:::-;-1:-1:-1::0;60230:3:0;::::1;::::0;::::1;:::i;:::-;;;;60191:187;;57000:104:::0;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;57078:10:::1;:18:::0;57000:104::o;36084:::-;36140:13;36173:7;36166:14;;;;;:::i;57112:133::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;57206:31;;::::1;::::0;:15:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;57399:958::-:0;57503:18;;;;57495:94;;;;-1:-1:-1;;;57495:94:0;;12997:2:1;57495:94:0;;;12979:21:1;13036:2;13016:18;;;13009:30;-1:-1:-1;;;;;;;;;;;13055:18:1;;;13048:62;13146:33;13126:18;;;13119:61;13197:19;;57495:94:0;12795:427:1;57495:94:0;57609:15;;;;;;;57608:16;57600:91;;;;-1:-1:-1;;;57600:91:0;;8587:2:1;57600:91:0;;;8569:21:1;8626:2;8606:18;;;8599:30;-1:-1:-1;;;;;;;;;;;8645:18:1;;;8638:62;8736:32;8716:18;;;8709:60;8786:19;;57600:91:0;8385:426:1;57600:91:0;57727:39;56213:4;56154:2;57727:26;:39::i;:::-;49157:10;:17;57710:56;;57702:96;;;;-1:-1:-1;;;57702:96:0;;20234:2:1;57702:96:0;;;20216:21:1;20273:2;20253:18;;;20246:30;20312:29;20292:18;;;20285:57;20359:18;;57702:96:0;20032:351:1;57702:96:0;56052:2;57817:19;:41;;57809:91;;;;-1:-1:-1;;;57809:91:0;;19056:2:1;57809:91:0;;;19038:21:1;19095:2;19075:18;;;19068:30;19134:34;19114:18;;;19107:62;-1:-1:-1;;;19185:18:1;;;19178:35;19230:19;;57809:91:0;18854:401:1;57809:91:0;57919:15;;56213:4;;57919:40;;57939:19;57919;:40::i;:::-;:66;;57911:120;;;;-1:-1:-1;;;57911:120:0;;17044:2:1;57911:120:0;;;17026:21:1;17083:2;17063:18;;;17056:30;17122:34;17102:18;;;17095:62;-1:-1:-1;;;17173:18:1;;;17166:39;17222:19;;57911:120:0;16842:405:1;57911:120:0;58101:9;58050:47;56410:10;58077:19;58050:26;:47::i;:::-;:60;;58042:103;;;;-1:-1:-1;;;58042:103:0;;19875:2:1;58042:103:0;;;19857:21:1;19914:2;19894:18;;;19887:30;19953:32;19933:18;;;19926:60;20003:18;;58042:103:0;19673:354:1;58042:103:0;58162:6;58158:192;58178:19;58174:1;:23;58158:192;;;58219:14;58236:20;58254:1;58236:13;49157:10;:17;;49069:113;58236:20;58219:37;;58290:1;58271:15;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;58306:32:0;;-1:-1:-1;58316:10:0;58328:9;58306;:32::i;:::-;-1:-1:-1;58199:3:0;;;;:::i;:::-;;;;58158:192;;37767:155;37862:52;12966:10;37895:8;37905;37862:18;:52::i;58365:1135::-;58490:15;;;;;;;58482:87;;;;-1:-1:-1;;;58482:87:0;;11045:2:1;58482:87:0;;;11027:21:1;11084:2;11064:18;;;11057:30;-1:-1:-1;;;;;;;;;;;11103:18:1;;;11096:62;11194:29;11174:18;;;11167:57;11241:19;;58482:87:0;10843:423:1;58482:87:0;58589:18;;;;58588:19;58580:95;;;;-1:-1:-1;;;58580:95:0;;10613:2:1;58580:95:0;;;10595:21:1;10652:2;10632:18;;;10625:30;-1:-1:-1;;;;;;;;;;;10671:18:1;;;10664:62;10762:33;10742:18;;;10735:61;10813:19;;58580:95:0;10411:427:1;58580:95:0;58720:10;;58742:28;;-1:-1:-1;;58759:10:0;6043:2:1;6039:15;6035:53;58742:28:0;;;6023:66:1;58694:78:0;;58713:5;;6105:12:1;;58742:28:0;;;;;;;;;;;;58732:39;;;;;;58694:18;:78::i;:::-;58686:130;;;;-1:-1:-1;;;58686:130:0;;16636:2:1;58686:130:0;;;16618:21:1;16675:2;16655:18;;;16648:30;16714:34;16694:18;;;16687:62;-1:-1:-1;;;16765:18:1;;;16758:37;16812:19;;58686:130:0;16434:403:1;58686:130:0;58862:10;58835:38;;;;:26;:38;;;;;;55999:1;;58835:63;;58878:19;58835:42;:63::i;:::-;:81;;58827:138;;;;-1:-1:-1;;;58827:138:0;;8174:2:1;58827:138:0;;;8156:21:1;8213:2;8193:18;;;8186:30;8252:34;8232:18;;;8225:62;-1:-1:-1;;;8303:18:1;;;8296:42;8355:19;;58827:138:0;7972:408:1;58827:138:0;56283:4;58984:38;59002:19;58984:13;49157:10;:17;;49069:113;58984:38;:73;;58976:142;;;;-1:-1:-1;;;58976:142:0;;17856:2:1;58976:142:0;;;17838:21:1;17895:2;17875:18;;;17868:30;17934:34;17914:18;;;17907:62;18005:26;17985:18;;;17978:54;18049:19;;58976:142:0;17654:420:1;58976:142:0;59184:9;59137:43;56342:11;59160:19;59137:22;:43::i;:::-;:56;;59129:99;;;;-1:-1:-1;;;59129:99:0;;19875:2:1;59129:99:0;;;19857:21:1;19914:2;19894:18;;;19887:30;19953:32;19933:18;;;19926:60;20003:18;;59129:99:0;19673:354:1;59129:99:0;59245:6;59241:250;59261:19;59257:1;:23;59241:250;;;59302:14;59319:20;59337:1;59319:13;49157:10;:17;;49069:113;59319:20;59381:10;59354:38;;;;:26;:38;;;;;:43;;59302:37;;-1:-1:-1;59396:1:0;;59354:38;;;:43;;59396:1;;59354:43;:::i;:::-;;;;;;;;59431:1;59412:15;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;59447:32:0;;-1:-1:-1;59457:10:0;59469:9;59447;:32::i;:::-;-1:-1:-1;59282:3:0;;;;:::i;:::-;;;;59241:250;;38890:328;39065:41;12966:10;39098:7;39065:18;:41::i;:::-;39057:103;;;;-1:-1:-1;;;39057:103:0;;;;;;;:::i;:::-;39171:39;39185:4;39191:2;39195:7;39204:5;39171:13;:39::i;:::-;38890:328;;;;:::o;56871:121::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;56966:18:::1;::::0;;-1:-1:-1;;56944:40:0;::::1;56966:18;::::0;;::::1;56965:19;56944:40;::::0;;56871:121::o;36259:334::-;40793:4;40817:16;;;:7;:16;;;;;;36332:13;;-1:-1:-1;;;;;40817:16:0;36358:76;;;;-1:-1:-1;;;36358:76:0;;16220:2:1;36358:76:0;;;16202:21:1;16259:2;16239:18;;;16232:30;16298:34;16278:18;;;16271:62;-1:-1:-1;;;16349:18:1;;;16342:45;16404:19;;36358:76:0;16018:411:1;36358:76:0;36447:21;36471:10;:8;:10::i;:::-;36447:34;;36523:1;36505:7;36499:21;:25;:86;;;;;;;;;;;;;;;;;36551:7;36560:18;:7;:16;:18::i;:::-;36534:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36499:86;36492:93;36259:334;-1:-1:-1;;;36259:334:0:o;55814:27::-;;;;;;;:::i;55919:30::-;;;;;;;:::i;59508:236::-;59601:7;-1:-1:-1;;;;;59629:20:0;;59621:61;;;;-1:-1:-1;;;59621:61:0;;18281:2:1;59621:61:0;;;18263:21:1;18320:2;18300:18;;;18293:30;18359;18339:18;;;18332:58;18407:18;;59621:61:0;18079:352:1;59621:61:0;-1:-1:-1;;;;;;59702:34:0;;;;;:26;:34;;;;;;;59508:236::o;15079:201::-;14243:6;;-1:-1:-1;;;;;14243:6:0;12966:10;14390:23;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15168:22:0;::::1;15160:73;;;::::0;-1:-1:-1;;;15160:73:0;;9849:2:1;15160:73:0::1;::::0;::::1;9831:21:1::0;9888:2;9868:18;;;9861:30;9927:34;9907:18;;;9900:62;-1:-1:-1;;;9978:18:1;;;9971:36;10024:19;;15160:73:0::1;9647:402:1::0;15160:73:0::1;15244:28;15263:8;15244:18;:28::i;:::-;15079:201:::0;:::o;48429:224::-;48531:4;-1:-1:-1;;;;;;48555:50:0;;-1:-1:-1;;;48555:50:0;;:90;;;48609:36;48633:11;48609:23;:36::i;44710:174::-;44785:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44785:29:0;-1:-1:-1;;;;;44785:29:0;;;;;;;;:24;;44839:23;44785:24;44839:14;:23::i;:::-;-1:-1:-1;;;;;44830:46:0;;;;;;;;;;;44710:174;;:::o;41022:348::-;41115:4;40817:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40817:16:0;41132:73;;;;-1:-1:-1;;;41132:73:0;;12584:2:1;41132:73:0;;;12566:21:1;12623:2;12603:18;;;12596:30;12662:34;12642:18;;;12635:62;-1:-1:-1;;;12713:18:1;;;12706:42;12765:19;;41132:73:0;12382:408:1;41132:73:0;41216:13;41232:23;41247:7;41232:14;:23::i;:::-;41216:39;;41285:5;-1:-1:-1;;;;;41274:16:0;:7;-1:-1:-1;;;;;41274:16:0;;:51;;;;41318:7;-1:-1:-1;;;;;41294:31:0;:20;41306:7;41294:11;:20::i;:::-;-1:-1:-1;;;;;41294:31:0;;41274:51;:87;;;-1:-1:-1;;;;;;38114:25:0;;;38090:4;38114:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41329:32;41266:96;41022:348;-1:-1:-1;;;;41022:348:0:o;44014:578::-;44173:4;-1:-1:-1;;;;;44146:31:0;:23;44161:7;44146:14;:23::i;:::-;-1:-1:-1;;;;;44146:31:0;;44138:85;;;;-1:-1:-1;;;44138:85:0;;15810:2:1;44138:85:0;;;15792:21:1;15849:2;15829:18;;;15822:30;15888:34;15868:18;;;15861:62;-1:-1:-1;;;15939:18:1;;;15932:39;15988:19;;44138:85:0;15608:405:1;44138:85:0;-1:-1:-1;;;;;44242:16:0;;44234:65;;;;-1:-1:-1;;;44234:65:0;;11825:2:1;44234:65:0;;;11807:21:1;11864:2;11844:18;;;11837:30;11903:34;11883:18;;;11876:62;-1:-1:-1;;;11954:18:1;;;11947:34;11998:19;;44234:65:0;11623:400:1;44234:65:0;44312:39;44333:4;44339:2;44343:7;44312:20;:39::i;:::-;44416:29;44433:1;44437:7;44416:8;:29::i;:::-;-1:-1:-1;;;;;44458:15:0;;;;;;:9;:15;;;;;:20;;44477:1;;44458:15;:20;;44477:1;;44458:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44489:13:0;;;;;;:9;:13;;;;;:18;;44506:1;;44489:13;:18;;44506:1;;44489:18;:::i;:::-;;;;-1:-1:-1;;44518:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44518:21:0;-1:-1:-1;;;;;44518:21:0;;;;;;;;;44557:27;;44518:16;;44557:27;;;;;;;44014:578;;;:::o;15440:191::-;15533:6;;;-1:-1:-1;;;;;15550:17:0;;;-1:-1:-1;;;;;;15550:17:0;;;;;;;15583:40;;15533:6;;;15550:17;15533:6;;15583:40;;15514:16;;15583:40;15503:128;15440:191;:::o;5902:98::-;5960:7;5987:5;5991:1;5987;:5;:::i;41712:110::-;41788:26;41798:2;41802:7;41788:26;;;;;;;;;;;;:9;:26::i;6640:98::-;6698:7;6725:5;6729:1;6725;:5;:::i;45026:315::-;45181:8;-1:-1:-1;;;;;45172:17:0;:5;-1:-1:-1;;;;;45172:17:0;;;45164:55;;;;-1:-1:-1;;;45164:55:0;;12230:2:1;45164:55:0;;;12212:21:1;12269:2;12249:18;;;12242:30;12308:27;12288:18;;;12281:55;12353:18;;45164:55:0;12028:349:1;45164:55:0;-1:-1:-1;;;;;45230:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45230:46:0;;;;;;;;;;45292:41;;7696::1;;;45292::0;;7669:18:1;45292:41:0;;;;;;;45026:315;;;:::o;1772:190::-;1897:4;1950;1921:25;1934:5;1941:4;1921:12;:25::i;:::-;:33;;1772:190;-1:-1:-1;;;;1772:190:0:o;40100:315::-;40257:28;40267:4;40273:2;40277:7;40257:9;:28::i;:::-;40304:48;40327:4;40333:2;40337:7;40346:5;40304:22;:48::i;:::-;40296:111;;;;-1:-1:-1;;;40296:111:0;;;;;;;:::i;60516:114::-;60576:13;60609;60602:20;;;;;:::i;10440:723::-;10496:13;10717:10;10713:53;;-1:-1:-1;;10744:10:0;;;;;;;;;;;;-1:-1:-1;;;10744:10:0;;;;;10440:723::o;10713:53::-;10791:5;10776:12;10832:78;10839:9;;10832:78;;10865:8;;;;:::i;:::-;;-1:-1:-1;10888:10:0;;-1:-1:-1;10896:2:0;10888:10;;:::i;:::-;;;10832:78;;;10920:19;10952:6;10942:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10942:17:0;;10920:39;;10970:154;10977:10;;10970:154;;11004:11;11014:1;11004:11;;:::i;:::-;;-1:-1:-1;11073:10:0;11081:2;11073:5;:10;:::i;:::-;11060:24;;:2;:24;:::i;:::-;11047:39;;11030:6;11037;11030:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11030:56:0;;;;;;;;-1:-1:-1;11101:11:0;11110:2;11101:11;;:::i;:::-;;;10970:154;;34970:305;35072:4;-1:-1:-1;;;;;;35109:40:0;;-1:-1:-1;;;35109:40:0;;:105;;-1:-1:-1;;;;;;;35166:48:0;;-1:-1:-1;;;35166:48:0;35109:105;:158;;;-1:-1:-1;;;;;;;;;;26743:40:0;;;35231:36;26634:157;60638:181;60766:45;60793:4;60799:2;60803:7;60766:26;:45::i;42049:321::-;42179:18;42185:2;42189:7;42179:5;:18::i;:::-;42230:54;42261:1;42265:2;42269:7;42278:5;42230:22;:54::i;:::-;42208:154;;;;-1:-1:-1;;;42208:154:0;;;;;;;:::i;2324:701::-;2407:7;2450:4;2407:7;2465:523;2489:5;:12;2485:1;:16;2465:523;;;2523:20;2546:5;2552:1;2546:8;;;;;;;;:::i;:::-;;;;;;;2523:31;;2589:12;2573;:28;2569:408;;2726:44;;;;;;6285:19:1;;;6320:12;;;6313:28;;;6357:12;;2726:44:0;;;;;;;;;;;;2716:55;;;;;;2701:70;;2569:408;;;2916:44;;;;;;6285:19:1;;;6320:12;;;6313:28;;;6357:12;;2916:44:0;;;;;;;;;;;;2906:55;;;;;;2891:70;;2569:408;-1:-1:-1;2503:3:0;;;;:::i;:::-;;;;2465:523;;;-1:-1:-1;3005:12:0;2324:701;-1:-1:-1;;;2324:701:0:o;45906:799::-;46061:4;-1:-1:-1;;;;;46082:13:0;;16789:20;16837:8;46078:620;;46118:72;;-1:-1:-1;;;46118:72:0;;-1:-1:-1;;;;;46118:36:0;;;;;:72;;12966:10;;46169:4;;46175:7;;46184:5;;46118:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46118:72:0;;;;;;;;-1:-1:-1;;46118:72:0;;;;;;;;;;;;:::i;:::-;;;46114:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46360:13:0;;46356:272;;46403:60;;-1:-1:-1;;;46403:60:0;;;;;;;:::i;46356:272::-;46578:6;46572:13;46563:6;46559:2;46555:15;46548:38;46114:529;-1:-1:-1;;;;;;46241:51:0;-1:-1:-1;;;46241:51:0;;-1:-1:-1;46234:58:0;;46078:620;-1:-1:-1;46682:4:0;45906:799;;;;;;:::o;50105:589::-;-1:-1:-1;;;;;50311:18:0;;50307:187;;50346:40;50378:7;51521:10;:17;;51494:24;;;;:15;:24;;;;;:44;;;51549:24;;;;;;;;;;;;51417:164;50346:40;50307:187;;;50416:2;-1:-1:-1;;;;;50408:10:0;:4;-1:-1:-1;;;;;50408:10:0;;50404:90;;50435:47;50468:4;50474:7;50435:32;:47::i;:::-;-1:-1:-1;;;;;50508:16:0;;50504:183;;50541:45;50578:7;50541:36;:45::i;50504:183::-;50614:4;-1:-1:-1;;;;;50608:10:0;:2;-1:-1:-1;;;;;50608:10:0;;50604:83;;50635:40;50663:2;50667:7;50635:27;:40::i;42706:382::-;-1:-1:-1;;;;;42786:16:0;;42778:61;;;;-1:-1:-1;;;42778:61:0;;14675:2:1;42778:61:0;;;14657:21:1;;;14694:18;;;14687:30;14753:34;14733:18;;;14726:62;14805:18;;42778:61:0;14473:356:1;42778:61:0;40793:4;40817:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40817:16:0;:30;42850:58;;;;-1:-1:-1;;;42850:58:0;;10256:2:1;42850:58:0;;;10238:21:1;10295:2;10275:18;;;10268:30;10334;10314:18;;;10307:58;10382:18;;42850:58:0;10054:352:1;42850:58:0;42921:45;42950:1;42954:2;42958:7;42921:20;:45::i;:::-;-1:-1:-1;;;;;42979:13:0;;;;;;:9;:13;;;;;:18;;42996:1;;42979:13;:18;;42996:1;;42979:18;:::i;:::-;;;;-1:-1:-1;;43008:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43008:21:0;-1:-1:-1;;;;;43008:21:0;;;;;;;;43047:33;;43008:16;;;43047:33;;43008:16;;43047:33;42706:382;;:::o;52208:988::-;52474:22;52524:1;52499:22;52516:4;52499:16;:22::i;:::-;:26;;;;:::i;:::-;52536:18;52557:26;;;:17;:26;;;;;;52474:51;;-1:-1:-1;52690:28:0;;;52686:328;;-1:-1:-1;;;;;52757:18:0;;52735:19;52757:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52808:30;;;;;;:44;;;52925:30;;:17;:30;;;;;:43;;;52686:328;-1:-1:-1;53110:26:0;;;;:17;:26;;;;;;;;53103:33;;;-1:-1:-1;;;;;53154:18:0;;;;;:12;:18;;;;;:34;;;;;;;53147:41;52208:988::o;53491:1079::-;53769:10;:17;53744:22;;53769:21;;53789:1;;53769:21;:::i;:::-;53801:18;53822:24;;;:15;:24;;;;;;54195:10;:26;;53744:46;;-1:-1:-1;53822:24:0;;53744:46;;54195:26;;;;;;:::i;:::-;;;;;;;;;54173:48;;54259:11;54234:10;54245;54234:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54339:28;;;:15;:28;;;;;;;:41;;;54511:24;;;;;54504:31;54546:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53562:1008;;;53491:1079;:::o;50995:221::-;51080:14;51097:20;51114:2;51097:16;:20::i;:::-;-1:-1:-1;;;;;51128:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51173:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50995:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;522:70;425:173;;;:::o;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:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:592::-;4466:6;4474;4527:2;4515:9;4506:7;4502:23;4498:32;4495:52;;;4543:1;4540;4533:12;4495:52;4583:9;4570:23;4612:18;4653:2;4645:6;4642:14;4639:34;;;4669:1;4666;4659:12;4639:34;4707:6;4696:9;4692:22;4682:32;;4752:7;4745:4;4741:2;4737:13;4733:27;4723:55;;4774:1;4771;4764:12;4723:55;4814:2;4801:16;4840:2;4832:6;4829:14;4826:34;;;4856:1;4853;4846:12;4826:34;4901:7;4896:2;4887:6;4883:2;4879:15;4875:24;4872:37;4869:57;;;4922:1;4919;4912:12;4869:57;4953:2;4945:11;;;;;4975:6;;-1:-1:-1;4395:592:1;;-1:-1:-1;;;;4395:592:1:o;4992:450::-;5061:6;5114:2;5102:9;5093:7;5089:23;5085:32;5082:52;;;5130:1;5127;5120:12;5082:52;5170:9;5157:23;5203:18;5195:6;5192:30;5189:50;;;5235:1;5232;5225:12;5189:50;5258:22;;5311:4;5303:13;;5299:27;-1:-1:-1;5289:55:1;;5340:1;5337;5330:12;5289:55;5363:73;5428:7;5423:2;5410:16;5405:2;5401;5397:11;5363:73;:::i;5632:257::-;5673:3;5711:5;5705:12;5738:6;5733:3;5726:19;5754:63;5810:6;5803:4;5798:3;5794:14;5787:4;5780:5;5776:16;5754:63;:::i;:::-;5871:2;5850:15;-1:-1:-1;;5846:29:1;5837:39;;;;5878:4;5833:50;;5632:257;-1:-1:-1;;5632:257:1:o;6380:470::-;6559:3;6597:6;6591:13;6613:53;6659:6;6654:3;6647:4;6639:6;6635:17;6613:53;:::i;:::-;6729:13;;6688:16;;;;6751:57;6729:13;6688:16;6785:4;6773:17;;6751:57;:::i;:::-;6824:20;;6380:470;-1:-1:-1;;;;6380:470:1:o;7063:488::-;-1:-1:-1;;;;;7332:15:1;;;7314:34;;7384:15;;7379:2;7364:18;;7357:43;7431:2;7416:18;;7409:34;;;7479:3;7474:2;7459:18;;7452:31;;;7257:4;;7500:45;;7525:19;;7517:6;7500:45;:::i;:::-;7492:53;7063:488;-1:-1:-1;;;;;;7063:488:1:o;7748:219::-;7897:2;7886:9;7879:21;7860:4;7917:44;7957:2;7946:9;7942:18;7934:6;7917:44;:::i;9228:414::-;9430:2;9412:21;;;9469:2;9449:18;;;9442:30;9508:34;9503:2;9488:18;;9481:62;-1:-1:-1;;;9574:2:1;9559:18;;9552:48;9632:3;9617:19;;9228:414::o;15247:356::-;15449:2;15431:21;;;15468:18;;;15461:30;15527:34;15522:2;15507:18;;15500:62;15594:2;15579:18;;15247:356::o;18436:413::-;18638:2;18620:21;;;18677:2;18657:18;;;18650:30;18716:34;18711:2;18696:18;;18689:62;-1:-1:-1;;;18782:2:1;18767:18;;18760:47;18839:3;18824:19;;18436:413::o;20570:275::-;20641:2;20635:9;20706:2;20687:13;;-1:-1:-1;;20683:27:1;20671:40;;20741:18;20726:34;;20762:22;;;20723:62;20720:88;;;20788:18;;:::i;:::-;20824:2;20817:22;20570:275;;-1:-1:-1;20570:275:1:o;20850:128::-;20890:3;20921:1;20917:6;20914:1;20911:13;20908:39;;;20927:18;;:::i;:::-;-1:-1:-1;20963:9:1;;20850:128::o;20983:120::-;21023:1;21049;21039:35;;21054:18;;:::i;:::-;-1:-1:-1;21088:9:1;;20983:120::o;21108:168::-;21148:7;21214:1;21210;21206:6;21202:14;21199:1;21196:21;21191:1;21184:9;21177:17;21173:45;21170:71;;;21221:18;;:::i;:::-;-1:-1:-1;21261:9:1;;21108:168::o;21281:125::-;21321:4;21349:1;21346;21343:8;21340:34;;;21354:18;;:::i;:::-;-1:-1:-1;21391:9:1;;21281:125::o;21411:258::-;21483:1;21493:113;21507:6;21504:1;21501:13;21493:113;;;21583:11;;;21577:18;21564:11;;;21557:39;21529:2;21522:10;21493:113;;;21624:6;21621:1;21618:13;21615:48;;;-1:-1:-1;;21659:1:1;21641:16;;21634:27;21411:258::o;21674:380::-;21753:1;21749:12;;;;21796;;;21817:61;;21871:4;21863:6;21859:17;21849:27;;21817:61;21924:2;21916:6;21913:14;21893:18;21890:38;21887:161;;;21970:10;21965:3;21961:20;21958:1;21951:31;22005:4;22002:1;21995:15;22033:4;22030:1;22023:15;21887:161;;21674:380;;;:::o;22059:135::-;22098:3;-1:-1:-1;;22119:17:1;;22116:43;;;22139:18;;:::i;:::-;-1:-1:-1;22186:1:1;22175:13;;22059:135::o;22199:112::-;22231:1;22257;22247:35;;22262:18;;:::i;:::-;-1:-1:-1;22296:9:1;;22199:112::o;22316:127::-;22377:10;22372:3;22368:20;22365:1;22358:31;22408:4;22405:1;22398:15;22432:4;22429:1;22422:15;22448:127;22509:10;22504:3;22500:20;22497:1;22490:31;22540:4;22537:1;22530:15;22564:4;22561:1;22554:15;22580:127;22641:10;22636:3;22632:20;22629:1;22622:31;22672:4;22669:1;22662:15;22696:4;22693:1;22686:15;22712:127;22773:10;22768:3;22764:20;22761:1;22754:31;22804:4;22801:1;22794:15;22828:4;22825:1;22818:15;22844:127;22905:10;22900:3;22896:20;22893:1;22886:31;22936:4;22933:1;22926:15;22960:4;22957:1;22950:15;22976:131;-1:-1:-1;;;;;;23050:32:1;;23040:43;;23030:71;;23097:1;23094;23087:12
Swarm Source
ipfs://f70d99f6cda5402764bc0321b9a384b9ce5d482d81ee608e2980114aed1006cb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.