ERC-721
Overview
Max Total Supply
1,746 MOONCATZ
Holders
49
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MOONCATZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
mooncatz
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-01 */ /** *Submitted for verification at Etherscan.io on 2022-07-25 */ // File: contracts/mooncatz.sol //-------------DEPENDENCIES--------------------------// // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if account is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, isContract will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on isContract to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's transfer: sends amount wei to * recipient, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by transfer, making them unable to receive funds via * transfer. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to recipient, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level call. A * plain call is an unsafe replacement for a function call: use this * function instead. * * If target reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode]. * * Requirements: * * - target must be a contract. * - calling target with data must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], but with * errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but also transferring value wei to target. * * Requirements: * * - the calling contract must have an ETH balance of at least value. * - the called Solidity function must be payable. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[functionCallWithValue], but * with errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} tokenId token is transferred to this contract via {IERC721-safeTransferFrom} * by operator from from, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with IERC721.onERC721Received.selector. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * interfaceId. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when tokenId token is transferred from from to to. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when owner enables approved to manage the tokenId token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when owner enables or disables (approved) operator to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in owner's account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the tokenId token. * * Requirements: * * - tokenId must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers tokenId token from from to to, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must exist and be owned by from. * - If the caller is not from, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers tokenId token from from to to. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must be owned by from. * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to to to transfer tokenId token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - tokenId must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for tokenId token. * * Requirements: * * - tokenId must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove operator as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The operator cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the operator is allowed to manage all of the assets of owner. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers tokenId token from from to to. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must exist and be owned by from. * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @dev Returns a token ID at a given index of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for tokenId token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a uint256 to its ASCII string hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a uint256 to its ASCII string hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from ReentrancyGuard will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single nonReentrant guard, functions marked as * nonReentrant may not call one another. This can be worked around by making * those functions private, and then adding external nonReentrant entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a nonReentrant function from another nonReentrant * function is not supported. It is possible to prevent this from happening * by making the nonReentrant function external, and making it call a * private function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * onlyOwner, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * onlyOwner functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (newOwner). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (newOwner). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } //-------------END DEPENDENCIES------------------------// // Rampp Contracts v2.1 (Teams.sol) pragma solidity ^0.8.0; /** * Teams is a contract implementation to extend upon Ownable that allows multiple controllers * of a single contract to modify specific mint settings but not have overall ownership of the contract. * This will easily allow cross-collaboration via Rampp.xyz. **/ abstract contract Teams is Ownable{ mapping (address => bool) internal team; /** * @dev Adds an address to the team. Allows them to execute protected functions * @param _address the ETH address to add, cannot be 0x and cannot be in team already **/ function addToTeam(address _address) public onlyOwner { require(_address != address(0), "Invalid address"); require(!inTeam(_address), "This address is already in your team."); team[_address] = true; } /** * @dev Removes an address to the team. * @param _address the ETH address to remove, cannot be 0x and must be in team **/ function removeFromTeam(address _address) public onlyOwner { require(_address != address(0), "Invalid address"); require(inTeam(_address), "This address is not in your team currently."); team[_address] = false; } /** * @dev Check if an address is valid and active in the team * @param _address ETH address to check for truthiness **/ function inTeam(address _address) public view returns (bool) { require(_address != address(0), "Invalid address to check."); return team[_address] == true; } /** * @dev Throws if called by any account other than the owner or team member. */ modifier onlyTeamOrOwner() { bool _isOwner = owner() == _msgSender(); bool _isTeam = inTeam(_msgSender()); require(_isOwner || _isTeam, "Team: caller is not the owner or in Team."); _; } } 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. * * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree * defined by 'root'. For this, a 'proof' must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: Allowlist.sol pragma solidity ^0.8.0; abstract contract Allowlist is Teams { bytes32 public merkleRoot; bool public onlyAllowlistMode = false; /** * @dev Update merkle root to reflect changes in Allowlist * @param _newMerkleRoot new merkle root to reflect most recent Allowlist */ function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyTeamOrOwner { require(_newMerkleRoot != merkleRoot, "Merkle root will be unchanged!"); merkleRoot = _newMerkleRoot; } /** * @dev Check the proof of an address if valid for merkle root * @param _to address to check for proof * @param _merkleProof Proof of the address to validate against root and leaf */ function isAllowlisted(address _to, bytes32[] calldata _merkleProof) public view returns(bool) { require(merkleRoot != 0, "Merkle root is not set!"); bytes32 leaf = keccak256(abi.encodePacked(_to)); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } function enableAllowlistOnlyMode() public onlyTeamOrOwner { onlyAllowlistMode = true; } function disableAllowlistOnlyMode() public onlyTeamOrOwner { onlyAllowlistMode = false; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex; uint256 public immutable collectionSize; uint256 public maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * maxBatchSize refers to how much a minter can mint at a time. * collectionSize_ refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalMinted(); } function currentTokenId() public view returns (uint256) { return _totalMinted(); } function getNextTokenId() public view returns (uint256) { return _totalMinted() + 1; } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { unchecked { return currentIndex - _startTokenId(); } } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < currentIndex; } function _safeMint(address to, uint256 quantity, bool isAdminMint) internal { _safeMint(to, quantity, isAdminMint, ""); } /** * @dev Mints quantity tokens and transfers them to to. * * Requirements: * * - there must be quantity tokens remaining unminted in the total collection. * - to cannot be the zero address. * - quantity cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bool isAdminMint, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); // For admin mints we do not want to enforce the maxBatchSize limit if (isAdminMint == false) { require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); } _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + (isAdminMint ? 0 : uint128(quantity)) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers tokenId from from to to. * * Requirements: * * - to cannot be the zero address. * - tokenId token must be owned by from. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve to to operate on tokenId * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set owners to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet'); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When from and to are both non-zero, from's tokenId will be * transferred to to. * - When from is zero, tokenId will be minted for to. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when from and to are both non-zero. * - from and to are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ramppable { address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1; modifier isRampp() { require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP"); _; } } interface IERC20 { function transfer(address _to, uint256 _amount) external returns (bool); function balanceOf(address account) external view returns (uint256); } abstract contract Withdrawable is Teams, Ramppable { address[] public payableAddresses = [RAMPPADDRESS,0x8900a69d2c726051928F9F0f2A27B2CC6432C9a2]; uint256[] public payableFees = [5,95]; uint256 public payableAddressCount = 2; function withdrawAll() public onlyTeamOrOwner { require(address(this).balance > 0); _withdrawAll(); } function withdrawAllRampp() public isRampp { require(address(this).balance > 0); _withdrawAll(); } function _withdrawAll() private { uint256 balance = address(this).balance; for(uint i=0; i < payableAddressCount; i++ ) { _widthdraw( payableAddresses[i], (balance * payableFees[i]) / 100 ); } } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } /** * @dev Allow contract owner to withdraw ERC-20 balance from contract * while still splitting royalty payments to all other team members. * in the event ERC-20 tokens are paid to the contract. * @param _tokenContract contract of ERC-20 token to withdraw * @param _amount balance to withdraw according to balanceOf of ERC-20 token */ function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyTeamOrOwner { require(_amount > 0); IERC20 tokenContract = IERC20(_tokenContract); require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens'); for(uint i=0; i < payableAddressCount; i++ ) { tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100); } } /** * @dev Allows Rampp wallet to update its own reference as well as update * the address for the Rampp-owed payment split. Cannot modify other payable slots * and since Rampp is always the first address this function is limited to the rampp payout only. * @param _newAddress updated Rampp Address */ function setRamppAddress(address _newAddress) public isRampp { require(_newAddress != RAMPPADDRESS, "RAMPP: New Rampp address must be different"); RAMPPADDRESS = _newAddress; payableAddresses[0] = _newAddress; } } // File: isFeeable.sol abstract contract Feeable is Teams { uint256 public PRICE = 0 ether; function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) public view returns (uint256) { return PRICE * _count; } } abstract contract RamppERC721A is Ownable, Teams, ERC721A, Withdrawable, ReentrancyGuard , Feeable , Allowlist { constructor( string memory tokenName, string memory tokenSymbol ) ERC721A(tokenName, tokenSymbol, 2, 88888) { } uint8 public CONTRACT_VERSION = 2; string public _baseTokenURI = "ipfs://QmSXFgWinByumyEHCkUTdRFeUQvrgHQqCPfshvF8od1BAQ/1.json"; bool public mintingOpen = true; uint256 public MAX_WALLET_MINTS = 200; /////////////// Admin Mint Functions /** * @dev Mints a token to an address with a tokenURI. * This is owner only and allows a fee-free drop * @param _to address of the future owner of the token * @param _qty amount of tokens to drop the owner */ function mintToAdminV2(address _to, uint256 _qty) public onlyTeamOrOwner{ require(_qty > 0, "Must mint at least 1 token."); require(currentTokenId() + _qty <= collectionSize, "Cannot mint over supply cap of 88888"); _safeMint(_to, _qty, true); } /////////////// GENERIC MINT FUNCTIONS /** * @dev Mints a single token to an address. * fee may or may not be required* * @param _to address of the future owner of the token */ function mintTo(address _to) public payable { require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 88888"); require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!"); require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints"); require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!"); _safeMint(_to, 1, false); } /** * @dev Mints a token to an address with a tokenURI. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint */ function mintToMultiple(address _to, uint256 _amount) public payable { require(_amount >= 1, "Must mint at least 1 token"); require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction"); require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!"); require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints"); require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 88888"); require(msg.value == getPrice(_amount), "Value below required mint fee for amount"); _safeMint(_to, _amount, false); } function openMinting() public onlyTeamOrOwner { mintingOpen = true; } function stopMinting() public onlyTeamOrOwner { mintingOpen = false; } ///////////// ALLOWLIST MINTING FUNCTIONS /** * @dev Mints a token to an address with a tokenURI for allowlist. * fee may or may not be required* * @param _to address of the future owner of the token */ function mintToAL(address _to, bytes32[] calldata _merkleProof) public payable { require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed"); require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!"); require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 8888"); require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints"); require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!"); _safeMint(_to, 1, false); } /** * @dev Mints a token to an address with a tokenURI for allowlist. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint */ function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable { require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed"); require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!"); require(_amount >= 1, "Must mint at least 1 token"); require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction"); require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints"); require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 8888"); require(msg.value == getPrice(_amount), "Value below required mint fee for amount"); _safeMint(_to, _amount, false); } /** * @dev Enable allowlist minting fully by enabling both flags * This is a convenience function for the Rampp user */ function openAllowlistMint() public onlyTeamOrOwner { enableAllowlistOnlyMode(); mintingOpen = true; } /** * @dev Close allowlist minting fully by disabling both flags * This is a convenience function for the Rampp user */ function closeAllowlistMint() public onlyTeamOrOwner { disableAllowlistOnlyMode(); mintingOpen = false; } /** * @dev Check if wallet over MAX_WALLET_MINTS * @param _address address in question to check if minted count exceeds max */ function canMintAmount(address _address, uint256 _amount) public view returns(bool) { require(_amount >= 1, "Amount must be greater than or equal to 1"); return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS; } /** * @dev Update the maximum amount of tokens that can be minted by a unique wallet * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1 */ function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner { require(_newWalletMax >= 1, "Max mints per wallet must be at least 1"); MAX_WALLET_MINTS = _newWalletMax; } /** * @dev Allows owner to set Max mints per tx * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1 */ function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner { require(_newMaxMint >= 1, "Max mint must be at least 1"); maxBatchSize = _newMaxMint; } function _baseURI() internal view virtual override returns(string memory) { return _baseTokenURI; } function baseTokenURI() public view returns(string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyTeamOrOwner { _baseTokenURI = baseURI; } function getOwnershipData(uint256 tokenId) external view returns(TokenOwnership memory) { return ownershipOf(tokenId); } } //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract mooncatz is RamppERC721A { constructor() RamppERC721A("Mooncatz", "MOONCATZ"){} } //*********************************************************************// //*********************************************************************// // Rampp v2.0.1 // // This smart contract was generated by rampp.xyz. // Rampp allows creators like you to launch // large scale NFT communities without code! // // Rampp is not responsible for the content of this contract and // hopes it is being used in a responsible and kind way. // Rampp is not associated or affiliated with this project. // Twitter: @Rampp_ ---- rampp.xyz //*********************************************************************// //*********************************************************************//
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","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":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6000600a55600b80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a0908152738900a69d2c726051928f9f0f2a27b2cc6432c9a260c0526200005f90600c906002620002ab565b506040805180820190915260058152605f60208201526200008590600d90600262000315565b506002600e5560006010556012805461ffff19166102001790556040805160608101909152603c8082526200429d6020830139601390620000c7908262000414565b506014805460ff1916600117905560c8601555348015620000e757600080fd5b506040518060400160405280600881526020016726b7b7b731b0ba3d60c11b8152506040518060400160405280600881526020016726a7a7a721a0aa2d60c11b8152508181600262015b386200014c620001466200025760201b60201c565b6200025b565b60008111620001b95760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200021b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001b0565b600462000229858262000414565b50600562000238848262000414565b50600391909155608052505060016002819055600f5550620004e09050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805482825590600052602060002090810192821562000303579160200282015b828111156200030357825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002cc565b506200031192915062000358565b5090565b82805482825590600052602060002090810192821562000303579160200282015b8281111562000303578251829060ff1690559160200191906001019062000336565b5b8082111562000311576000815560010162000359565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200039a57607f821691505b602082108103620003bb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040f57600081815260208120601f850160051c81016020861015620003ea5750805b601f850160051c820191505b818110156200040b57828155600101620003f6565b5050505b505050565b81516001600160401b038111156200043057620004306200036f565b620004488162000441845462000385565b84620003c1565b602080601f831160018114620004805760008415620004675750858301515b600019600386901b1c1916600185901b1785556200040b565b600085815260208120601f198616915b82811015620004b15788860151825594840194600190910190840162000490565b5085821015620004d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051613d7e6200051f6000396000818161063001528181610c7501528181611303015281816114720152818161195b01526123810152613d7e6000f3fe6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff366004613357565b610b32565b60405190151581526020016103db565b610427610422366004613390565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db9190613412565b34801561045757600080fd5b5061046b610466366004613425565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e366004613390565b610e17565b3480156104af57600080fd5b506104276104be36600461343e565b610f2e565b3480156104cf57600080fd5b506103d16104de366004613425565b610f39565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a366004613390565b610f5a565b34801561053b57600080fd5b5061040461054a3660046134c5565b6110cf565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e366004613517565b6111a7565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138c565b3480156105ca57600080fd5b506104276105d9366004613390565b6113dd565b3480156105ea57600080fd5b506104276105f936600461343e565b6114ce565b34801561060a57600080fd5b50610427610619366004613570565b6114e9565b34801561062a57600080fd5b506103d17f000000000000000000000000000000000000000000000000000000000000000081565b34801561065e57600080fd5b5061042761066d366004613425565b6115e6565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a3366004613425565b611681565b3480156106b457600080fd5b506104276106c3366004613425565b6116e9565b3480156106d457600080fd5b506104276106e336600461358b565b611784565b3480156106f457600080fd5b5061046b610703366004613425565b6117db565b34801561071457600080fd5b506104276117ed565b34801561072957600080fd5b50610427611841565b34801561073e57600080fd5b506103d161074d366004613570565b611892565b34801561075e57600080fd5b50610427611923565b610427610775366004613570565b611959565b34801561078657600080fd5b50610427611a35565b34801561079b57600080fd5b50610427611a89565b3480156107b057600080fd5b5061046b6107bf366004613425565b611ae1565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d366004613425565b611b0b565b34801561083e57600080fd5b5061042761084d366004613425565b611bb6565b34801561085e57600080fd5b5061087261086d366004613425565b611c00565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c1d565b3480156108c057600080fd5b506104046108cf366004613570565b611c2c565b3480156108e057600080fd5b506104276108ef36600461360a565b611ca9565b34801561090057600080fd5b50610427611d6d565b34801561091557600080fd5b50610427610924366004613390565b611db8565b34801561093557600080fd5b50610427610944366004613657565b611fda565b34801561095557600080fd5b50610427610964366004613570565b61200d565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a4366004613425565b61213a565b3480156109b557600080fd5b506103d1612198565b3480156109ca57600080fd5b5061043e6121b2565b3480156109df57600080fd5b5061043e612240565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761224f565b610427610a213660046134c5565b6122be565b348015610a3257600080fd5b50610427610a41366004613570565b612422565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b366004613425565b61251e565b348015610a8c57600080fd5b50610404610a9b366004613732565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae4366004613570565b61252e565b348015610af557600080fd5b506104276125c6565b348015610b0a57600080fd5b50610404610b19366004613390565b612611565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec90613765565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec906137b3565b610c578282612611565b610c735760405162461bcd60e51b8152600401610bec906137f8565b7f000000000000000000000000000000000000000000000000000000000000000081610c9d610b1e565b610ca7919061385e565b1115610cc55760405162461bcd60e51b8152600401610bec90613876565b610cce8161251e565b3414610cec5760405162461bcd60e51b8152600401610bec906138ba565b610cf882826000612696565b5050565b606060048054610d0b90613902565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3790613902565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126b1565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117db565b9050806001600160a01b0316836001600160a01b031603610e905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610eac5750610eac8133610a9b565b610f1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f298383836126c7565b505050565b610f29838383612723565b600d8181548110610f4957600080fd5b600091825260209091200154905081565b6000610f6583611892565b8210610fbe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc8610b1e565b905060008060005b8381101561106f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102257805192505b876001600160a01b0316836001600160a01b03160361105c5786840361104e57509350610b9992505050565b836110588161393c565b9450505b50806110678161393c565b915050610fd0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b60115460009081036111235760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119e848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612aa3565b95945050505050565b60125460ff16151560011480156111c5575060145460ff1615156001145b6112115760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121c8483836110cf565b6112685760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112b95760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112db5760405162461bcd60e51b8152600401610bec90613765565b6112e58484612611565b6113015760405162461bcd60e51b8152600401610bec906137f8565b7f00000000000000000000000000000000000000000000000000000000000000008361132b610b1e565b611335919061385e565b11156113535760405162461bcd60e51b8152600401610bec90613955565b61135c8361251e565b341461137a5760405162461bcd60e51b8152600401610bec906138ba565b61138684846000612696565b50505050565b600080546001600160a01b03163390811491906113a890611c2c565b905081806113b35750805b6113cf5760405162461bcd60e51b8152600401610bec90613998565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113f990611c2c565b905081806114045750805b6114205760405162461bcd60e51b8152600401610bec90613998565b600083116114705760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000008361149a610b1e565b6114a4919061385e565b11156114c25760405162461bcd60e51b8152600401610bec90613876565b61138684846001612696565b610f2983838360405180602001604052806000815250611fda565b6000546001600160a01b031633146115135760405162461bcd60e51b8152600401610bec906139e1565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156481611c2c565b156115bf5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160290611c2c565b9050818061160d5750805b6116295760405162461bcd60e51b8152600401610bec90613998565b601154830361167a5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168b610b1e565b82106116e55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170590611c2c565b905081806117105750805b61172c5760405162461bcd60e51b8152600401610bec90613998565b600183101561177d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a090611c2c565b905081806117ab5750805b6117c75760405162461bcd60e51b8152600401610bec90613998565b60136117d4848683613a5c565b5050505050565b60006117e682612ab9565b5192915050565b600080546001600160a01b031633908114919061180990611c2c565b905081806118145750805b6118305760405162461bcd60e51b8152600401610bec90613998565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185d90611c2c565b905081806118685750805b6118845760405162461bcd60e51b8152600401610bec90613998565b50506012805460ff19169055565b60006001600160a01b0382166118fe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194d5760405162461bcd60e51b8152600401610bec906139e1565b6119576000612be7565b565b7f0000000000000000000000000000000000000000000000000000000000000000611982612198565b11156119a05760405162461bcd60e51b8152600401610bec90613876565b60145460ff16151560011480156119ba575060125460ff16155b6119d65760405162461bcd60e51b8152600401610bec906137b3565b6119e1816001612611565b6119fd5760405162461bcd60e51b8152600401610bec906137f8565b611a07600161251e565b3414611a255760405162461bcd60e51b8152600401610bec90613b1b565b611a328160016000612696565b50565b600080546001600160a01b0316339081149190611a5190611c2c565b90508180611a5c5750805b611a785760405162461bcd60e51b8152600401610bec90613998565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611aa590611c2c565b90508180611ab05750805b611acc5760405162461bcd60e51b8152600401610bec90613998565b60004711611ad957600080fd5b610cf8612c37565b600c8181548110611af157600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b2790611c2c565b90508180611b325750805b611b4e5760405162461bcd60e51b8152600401610bec90613998565b6001831015611baf5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611bd290611c2c565b90508180611bdd5750805b611bf95760405162461bcd60e51b8152600401610bec90613998565b5050601055565b6040805180820190915260008082526020820152610b9982612ab9565b606060058054610d0b90613902565b60006001600160a01b038216611c845760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b336001600160a01b03831603611d015760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611d8990611c2c565b90508180611d945750805b611db05760405162461bcd60e51b8152600401610bec90613998565b6113cf611841565b600080546001600160a01b0316339081149190611dd490611c2c565b90508180611ddf5750805b611dfb5760405162461bcd60e51b8152600401610bec90613998565b60008311611e0857600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e749190613b62565b1015611ece5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e54811015611fd257816001600160a01b031663a9059cbb600c8381548110611efd57611efd613b7b565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f3057611f30613b7b565b906000526020600020015489611f469190613b91565b611f509190613bc6565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbf9190613bda565b5080611fca8161393c565b915050611ed1565b505050505050565b611fe5848484612723565b611ff184848484612cc5565b6113865760405162461bcd60e51b8152600401610bec90613bf7565b600b546001600160a01b031633146120675760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03908116908216036120d85760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061210957612109613b7b565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000612146612240565b905060008151116121665760405180602001604052806000815250612191565b8061217084612dc7565b604051602001612181929190613c4a565b6040516020818303038152906040525b9392505050565b60006121a76002546000190190565b610b2d90600161385e565b601380546121bf90613902565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb90613902565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b505050505081565b606060138054610d0b90613902565b600b546001600160a01b031633146122a95760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122b657600080fd5b611957612c37565b60125460ff16151560011480156122dc575060145460ff1615156001145b6123285760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b6123338383836110cf565b61237f5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000006123a8612198565b11156123c65760405162461bcd60e51b8152600401610bec90613955565b6123d1836001612611565b6123ed5760405162461bcd60e51b8152600401610bec906137f8565b6123f7600161251e565b34146124155760405162461bcd60e51b8152600401610bec90613b1b565b610f298360016000612696565b6000546001600160a01b0316331461244c5760405162461bcd60e51b8152600401610bec906139e1565b6001600160a01b0381166124945760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61249d81611c2c565b6124fd5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613b91565b6000546001600160a01b031633146125585760405162461bcd60e51b8152600401610bec906139e1565b6001600160a01b0381166125bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a3281612be7565b600080546001600160a01b03163390811491906125e290611c2c565b905081806125ed5750805b6126095760405162461bcd60e51b8152600401610bec90613998565b611830611a35565b600060018210156126765760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b6015548261268385612ec7565b61268d919061385e565b11159392505050565b610f2983838360405180602001604052806000815250612f65565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061272e82612ab9565b80519091506000906001600160a01b0316336001600160a01b0316148061276557503361275a84610d8e565b6001600160a01b0316145b80612777575081516127779033610a9b565b9050806127e15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128555760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128b95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6128c960008484600001516126c7565b6001600160a01b03851660009081526007602052604081208054600192906128fb9084906001600160801b0316613c79565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261294791859116613ca1565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556129ce84600161385e565b6000818152600660205260409020549091506001600160a01b0316612a5d576129f6816126b1565b15612a5d5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fd2565b600082612ab08584613237565b14949350505050565b60408051808201909152600080825260208201528180600111158015612ae0575060025481105b15612b87576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b31579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b82579392505050565b612b31565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cb3600c8281548110612c5b57612c5b613b7b565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612c8e57612c8e613b7b565b906000526020600020015485612ca49190613b91565b612cae9190613bc6565b6132ab565b80612cbd8161393c565b915050612c3b565b60006001600160a01b0384163b15612dbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d09903390899088908890600401613cc3565b6020604051808303816000875af1925050508015612d44575060408051601f3d908101601f19168201909252612d4191810190613d00565b60015b612da1573d808015612d72576040519150601f19603f3d011682016040523d82523d6000602084013e612d77565b606091505b508051600003612d995760405162461bcd60e51b8152600401610bec90613bf7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dbf565b5060015b949350505050565b606081600003612dee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e185780612e028161393c565b9150612e119050600a83613bc6565b9150612df2565b6000816001600160401b03811115612e3257612e32613641565b6040519080825280601f01601f191660200182016040528015612e5c576020820181803683370190505b5090505b8415612dbf57612e71600183613d1d565b9150612e7e600a86613d34565b612e8990603061385e565b60f81b818381518110612e9e57612e9e613b7b565b60200101906001600160f81b031916908160001a905350612ec0600a86613bc6565b9450612e60565b60006001600160a01b038216612f395760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b038516612fc85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b612fd1816126b1565b1561301e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b821515600003613085576003548411156130855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906130e1908890613ca1565b6001600160801b03168152602001856130fa57866130fd565b60005b836020015161310c9190613ca1565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561322b5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46131ef6000898488612cc5565b61320b5760405162461bcd60e51b8152600401610bec90613bf7565b816132158161393c565b92505080806132239061393c565b9150506131a2565b50600255505050505050565b600081815b84518110156132a357600085828151811061325957613259613b7b565b6020026020010151905080831161327f5760008381526020829052604090209250613290565b600081815260208490526040902092505b508061329b8161393c565b91505061323c565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146132f8576040519150601f19603f3d011682016040523d82523d6000602084013e6132fd565b606091505b5050905080610f295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b6001600160e01b031981168114611a3257600080fd5b60006020828403121561336957600080fd5b813561219181613341565b80356001600160a01b038116811461338b57600080fd5b919050565b600080604083850312156133a357600080fd5b6133ac83613374565b946020939093013593505050565b60005b838110156133d55781810151838201526020016133bd565b838111156113865750506000910152565b600081518084526133fe8160208601602086016133ba565b601f01601f19169290920160200192915050565b60208152600061219160208301846133e6565b60006020828403121561343757600080fd5b5035919050565b60008060006060848603121561345357600080fd5b61345c84613374565b925061346a60208501613374565b9150604084013590509250925092565b60008083601f84011261348c57600080fd5b5081356001600160401b038111156134a357600080fd5b6020830191508360208260051b85010111156134be57600080fd5b9250929050565b6000806000604084860312156134da57600080fd5b6134e384613374565b925060208401356001600160401b038111156134fe57600080fd5b61350a8682870161347a565b9497909650939450505050565b6000806000806060858703121561352d57600080fd5b61353685613374565b93506020850135925060408501356001600160401b0381111561355857600080fd5b6135648782880161347a565b95989497509550505050565b60006020828403121561358257600080fd5b61219182613374565b6000806020838503121561359e57600080fd5b82356001600160401b03808211156135b557600080fd5b818501915085601f8301126135c957600080fd5b8135818111156135d857600080fd5b8660208285010111156135ea57600080fd5b60209290920196919550909350505050565b8015158114611a3257600080fd5b6000806040838503121561361d57600080fd5b61362683613374565b91506020830135613636816135fc565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561366d57600080fd5b61367685613374565b935061368460208601613374565b92506040850135915060608501356001600160401b03808211156136a757600080fd5b818701915087601f8301126136bb57600080fd5b8135818111156136cd576136cd613641565b604051601f8201601f19908116603f011681019083821181831017156136f5576136f5613641565b816040528281528a602084870101111561370e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561374557600080fd5b61374e83613374565b915061375c60208401613374565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561387157613871613848565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061391657607f821691505b60208210810361393657634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161394e5761394e613848565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610f2957600081815260208120601f850160051c81016020861015613a3d5750805b601f850160051c820191505b81811015611fd257828155600101613a49565b6001600160401b03831115613a7357613a73613641565b613a8783613a818354613902565b83613a16565b6000601f841160018114613abb5760008515613aa35750838201355b600019600387901b1c1916600186901b1783556117d4565b600083815260209020601f19861690835b82811015613aec5786850135825560209485019460019092019101613acc565b5086821015613b095760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b7457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613bab57613bab613848565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bd557613bd5613bb0565b500490565b600060208284031215613bec57600080fd5b8151612191816135fc565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c5c8184602088016133ba565b835190830190613c708183602088016133ba565b01949350505050565b60006001600160801b0383811690831681811015613c9957613c99613848565b039392505050565b60006001600160801b03808316818516808303821115613c7057613c70613848565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613cf6908301846133e6565b9695505050505050565b600060208284031215613d1257600080fd5b815161219181613341565b600082821015613d2f57613d2f613848565b500390565b600082613d4357613d43613bb0565b50069056fea2646970667358221220b3fbe67672f2dea683c34706bfeec06591db94f1e2e4e1ef3421c687513e466664736f6c634300080f0033697066733a2f2f516d5358466757696e4279756d794548436b555464524665555176726748517143506673687646386f64314241512f312e6a736f6e
Deployed Bytecode
0x6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff366004613357565b610b32565b60405190151581526020016103db565b610427610422366004613390565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db9190613412565b34801561045757600080fd5b5061046b610466366004613425565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e366004613390565b610e17565b3480156104af57600080fd5b506104276104be36600461343e565b610f2e565b3480156104cf57600080fd5b506103d16104de366004613425565b610f39565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a366004613390565b610f5a565b34801561053b57600080fd5b5061040461054a3660046134c5565b6110cf565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e366004613517565b6111a7565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138c565b3480156105ca57600080fd5b506104276105d9366004613390565b6113dd565b3480156105ea57600080fd5b506104276105f936600461343e565b6114ce565b34801561060a57600080fd5b50610427610619366004613570565b6114e9565b34801561062a57600080fd5b506103d17f0000000000000000000000000000000000000000000000000000000000015b3881565b34801561065e57600080fd5b5061042761066d366004613425565b6115e6565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a3366004613425565b611681565b3480156106b457600080fd5b506104276106c3366004613425565b6116e9565b3480156106d457600080fd5b506104276106e336600461358b565b611784565b3480156106f457600080fd5b5061046b610703366004613425565b6117db565b34801561071457600080fd5b506104276117ed565b34801561072957600080fd5b50610427611841565b34801561073e57600080fd5b506103d161074d366004613570565b611892565b34801561075e57600080fd5b50610427611923565b610427610775366004613570565b611959565b34801561078657600080fd5b50610427611a35565b34801561079b57600080fd5b50610427611a89565b3480156107b057600080fd5b5061046b6107bf366004613425565b611ae1565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d366004613425565b611b0b565b34801561083e57600080fd5b5061042761084d366004613425565b611bb6565b34801561085e57600080fd5b5061087261086d366004613425565b611c00565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c1d565b3480156108c057600080fd5b506104046108cf366004613570565b611c2c565b3480156108e057600080fd5b506104276108ef36600461360a565b611ca9565b34801561090057600080fd5b50610427611d6d565b34801561091557600080fd5b50610427610924366004613390565b611db8565b34801561093557600080fd5b50610427610944366004613657565b611fda565b34801561095557600080fd5b50610427610964366004613570565b61200d565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a4366004613425565b61213a565b3480156109b557600080fd5b506103d1612198565b3480156109ca57600080fd5b5061043e6121b2565b3480156109df57600080fd5b5061043e612240565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761224f565b610427610a213660046134c5565b6122be565b348015610a3257600080fd5b50610427610a41366004613570565b612422565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b366004613425565b61251e565b348015610a8c57600080fd5b50610404610a9b366004613732565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae4366004613570565b61252e565b348015610af557600080fd5b506104276125c6565b348015610b0a57600080fd5b50610404610b19366004613390565b612611565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec90613765565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec906137b3565b610c578282612611565b610c735760405162461bcd60e51b8152600401610bec906137f8565b7f0000000000000000000000000000000000000000000000000000000000015b3881610c9d610b1e565b610ca7919061385e565b1115610cc55760405162461bcd60e51b8152600401610bec90613876565b610cce8161251e565b3414610cec5760405162461bcd60e51b8152600401610bec906138ba565b610cf882826000612696565b5050565b606060048054610d0b90613902565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3790613902565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126b1565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117db565b9050806001600160a01b0316836001600160a01b031603610e905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610eac5750610eac8133610a9b565b610f1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f298383836126c7565b505050565b610f29838383612723565b600d8181548110610f4957600080fd5b600091825260209091200154905081565b6000610f6583611892565b8210610fbe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc8610b1e565b905060008060005b8381101561106f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102257805192505b876001600160a01b0316836001600160a01b03160361105c5786840361104e57509350610b9992505050565b836110588161393c565b9450505b50806110678161393c565b915050610fd0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b60115460009081036111235760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119e848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612aa3565b95945050505050565b60125460ff16151560011480156111c5575060145460ff1615156001145b6112115760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121c8483836110cf565b6112685760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112b95760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112db5760405162461bcd60e51b8152600401610bec90613765565b6112e58484612611565b6113015760405162461bcd60e51b8152600401610bec906137f8565b7f0000000000000000000000000000000000000000000000000000000000015b388361132b610b1e565b611335919061385e565b11156113535760405162461bcd60e51b8152600401610bec90613955565b61135c8361251e565b341461137a5760405162461bcd60e51b8152600401610bec906138ba565b61138684846000612696565b50505050565b600080546001600160a01b03163390811491906113a890611c2c565b905081806113b35750805b6113cf5760405162461bcd60e51b8152600401610bec90613998565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113f990611c2c565b905081806114045750805b6114205760405162461bcd60e51b8152600401610bec90613998565b600083116114705760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000015b388361149a610b1e565b6114a4919061385e565b11156114c25760405162461bcd60e51b8152600401610bec90613876565b61138684846001612696565b610f2983838360405180602001604052806000815250611fda565b6000546001600160a01b031633146115135760405162461bcd60e51b8152600401610bec906139e1565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156481611c2c565b156115bf5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160290611c2c565b9050818061160d5750805b6116295760405162461bcd60e51b8152600401610bec90613998565b601154830361167a5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168b610b1e565b82106116e55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170590611c2c565b905081806117105750805b61172c5760405162461bcd60e51b8152600401610bec90613998565b600183101561177d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a090611c2c565b905081806117ab5750805b6117c75760405162461bcd60e51b8152600401610bec90613998565b60136117d4848683613a5c565b5050505050565b60006117e682612ab9565b5192915050565b600080546001600160a01b031633908114919061180990611c2c565b905081806118145750805b6118305760405162461bcd60e51b8152600401610bec90613998565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185d90611c2c565b905081806118685750805b6118845760405162461bcd60e51b8152600401610bec90613998565b50506012805460ff19169055565b60006001600160a01b0382166118fe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194d5760405162461bcd60e51b8152600401610bec906139e1565b6119576000612be7565b565b7f0000000000000000000000000000000000000000000000000000000000015b38611982612198565b11156119a05760405162461bcd60e51b8152600401610bec90613876565b60145460ff16151560011480156119ba575060125460ff16155b6119d65760405162461bcd60e51b8152600401610bec906137b3565b6119e1816001612611565b6119fd5760405162461bcd60e51b8152600401610bec906137f8565b611a07600161251e565b3414611a255760405162461bcd60e51b8152600401610bec90613b1b565b611a328160016000612696565b50565b600080546001600160a01b0316339081149190611a5190611c2c565b90508180611a5c5750805b611a785760405162461bcd60e51b8152600401610bec90613998565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611aa590611c2c565b90508180611ab05750805b611acc5760405162461bcd60e51b8152600401610bec90613998565b60004711611ad957600080fd5b610cf8612c37565b600c8181548110611af157600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b2790611c2c565b90508180611b325750805b611b4e5760405162461bcd60e51b8152600401610bec90613998565b6001831015611baf5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611bd290611c2c565b90508180611bdd5750805b611bf95760405162461bcd60e51b8152600401610bec90613998565b5050601055565b6040805180820190915260008082526020820152610b9982612ab9565b606060058054610d0b90613902565b60006001600160a01b038216611c845760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b336001600160a01b03831603611d015760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611d8990611c2c565b90508180611d945750805b611db05760405162461bcd60e51b8152600401610bec90613998565b6113cf611841565b600080546001600160a01b0316339081149190611dd490611c2c565b90508180611ddf5750805b611dfb5760405162461bcd60e51b8152600401610bec90613998565b60008311611e0857600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e749190613b62565b1015611ece5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e54811015611fd257816001600160a01b031663a9059cbb600c8381548110611efd57611efd613b7b565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f3057611f30613b7b565b906000526020600020015489611f469190613b91565b611f509190613bc6565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbf9190613bda565b5080611fca8161393c565b915050611ed1565b505050505050565b611fe5848484612723565b611ff184848484612cc5565b6113865760405162461bcd60e51b8152600401610bec90613bf7565b600b546001600160a01b031633146120675760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03908116908216036120d85760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061210957612109613b7b565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000612146612240565b905060008151116121665760405180602001604052806000815250612191565b8061217084612dc7565b604051602001612181929190613c4a565b6040516020818303038152906040525b9392505050565b60006121a76002546000190190565b610b2d90600161385e565b601380546121bf90613902565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb90613902565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b505050505081565b606060138054610d0b90613902565b600b546001600160a01b031633146122a95760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122b657600080fd5b611957612c37565b60125460ff16151560011480156122dc575060145460ff1615156001145b6123285760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b6123338383836110cf565b61237f5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000015b386123a8612198565b11156123c65760405162461bcd60e51b8152600401610bec90613955565b6123d1836001612611565b6123ed5760405162461bcd60e51b8152600401610bec906137f8565b6123f7600161251e565b34146124155760405162461bcd60e51b8152600401610bec90613b1b565b610f298360016000612696565b6000546001600160a01b0316331461244c5760405162461bcd60e51b8152600401610bec906139e1565b6001600160a01b0381166124945760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61249d81611c2c565b6124fd5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613b91565b6000546001600160a01b031633146125585760405162461bcd60e51b8152600401610bec906139e1565b6001600160a01b0381166125bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a3281612be7565b600080546001600160a01b03163390811491906125e290611c2c565b905081806125ed5750805b6126095760405162461bcd60e51b8152600401610bec90613998565b611830611a35565b600060018210156126765760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b6015548261268385612ec7565b61268d919061385e565b11159392505050565b610f2983838360405180602001604052806000815250612f65565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061272e82612ab9565b80519091506000906001600160a01b0316336001600160a01b0316148061276557503361275a84610d8e565b6001600160a01b0316145b80612777575081516127779033610a9b565b9050806127e15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128555760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128b95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6128c960008484600001516126c7565b6001600160a01b03851660009081526007602052604081208054600192906128fb9084906001600160801b0316613c79565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261294791859116613ca1565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556129ce84600161385e565b6000818152600660205260409020549091506001600160a01b0316612a5d576129f6816126b1565b15612a5d5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fd2565b600082612ab08584613237565b14949350505050565b60408051808201909152600080825260208201528180600111158015612ae0575060025481105b15612b87576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b31579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b82579392505050565b612b31565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cb3600c8281548110612c5b57612c5b613b7b565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612c8e57612c8e613b7b565b906000526020600020015485612ca49190613b91565b612cae9190613bc6565b6132ab565b80612cbd8161393c565b915050612c3b565b60006001600160a01b0384163b15612dbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d09903390899088908890600401613cc3565b6020604051808303816000875af1925050508015612d44575060408051601f3d908101601f19168201909252612d4191810190613d00565b60015b612da1573d808015612d72576040519150601f19603f3d011682016040523d82523d6000602084013e612d77565b606091505b508051600003612d995760405162461bcd60e51b8152600401610bec90613bf7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dbf565b5060015b949350505050565b606081600003612dee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e185780612e028161393c565b9150612e119050600a83613bc6565b9150612df2565b6000816001600160401b03811115612e3257612e32613641565b6040519080825280601f01601f191660200182016040528015612e5c576020820181803683370190505b5090505b8415612dbf57612e71600183613d1d565b9150612e7e600a86613d34565b612e8990603061385e565b60f81b818381518110612e9e57612e9e613b7b565b60200101906001600160f81b031916908160001a905350612ec0600a86613bc6565b9450612e60565b60006001600160a01b038216612f395760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b038516612fc85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b612fd1816126b1565b1561301e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b821515600003613085576003548411156130855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906130e1908890613ca1565b6001600160801b03168152602001856130fa57866130fd565b60005b836020015161310c9190613ca1565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561322b5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46131ef6000898488612cc5565b61320b5760405162461bcd60e51b8152600401610bec90613bf7565b816132158161393c565b92505080806132239061393c565b9150506131a2565b50600255505050505050565b600081815b84518110156132a357600085828151811061325957613259613b7b565b6020026020010151905080831161327f5760008381526020829052604090209250613290565b600081815260208490526040902092505b508061329b8161393c565b91505061323c565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146132f8576040519150601f19603f3d011682016040523d82523d6000602084013e6132fd565b606091505b5050905080610f295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b6001600160e01b031981168114611a3257600080fd5b60006020828403121561336957600080fd5b813561219181613341565b80356001600160a01b038116811461338b57600080fd5b919050565b600080604083850312156133a357600080fd5b6133ac83613374565b946020939093013593505050565b60005b838110156133d55781810151838201526020016133bd565b838111156113865750506000910152565b600081518084526133fe8160208601602086016133ba565b601f01601f19169290920160200192915050565b60208152600061219160208301846133e6565b60006020828403121561343757600080fd5b5035919050565b60008060006060848603121561345357600080fd5b61345c84613374565b925061346a60208501613374565b9150604084013590509250925092565b60008083601f84011261348c57600080fd5b5081356001600160401b038111156134a357600080fd5b6020830191508360208260051b85010111156134be57600080fd5b9250929050565b6000806000604084860312156134da57600080fd5b6134e384613374565b925060208401356001600160401b038111156134fe57600080fd5b61350a8682870161347a565b9497909650939450505050565b6000806000806060858703121561352d57600080fd5b61353685613374565b93506020850135925060408501356001600160401b0381111561355857600080fd5b6135648782880161347a565b95989497509550505050565b60006020828403121561358257600080fd5b61219182613374565b6000806020838503121561359e57600080fd5b82356001600160401b03808211156135b557600080fd5b818501915085601f8301126135c957600080fd5b8135818111156135d857600080fd5b8660208285010111156135ea57600080fd5b60209290920196919550909350505050565b8015158114611a3257600080fd5b6000806040838503121561361d57600080fd5b61362683613374565b91506020830135613636816135fc565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561366d57600080fd5b61367685613374565b935061368460208601613374565b92506040850135915060608501356001600160401b03808211156136a757600080fd5b818701915087601f8301126136bb57600080fd5b8135818111156136cd576136cd613641565b604051601f8201601f19908116603f011681019083821181831017156136f5576136f5613641565b816040528281528a602084870101111561370e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561374557600080fd5b61374e83613374565b915061375c60208401613374565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561387157613871613848565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061391657607f821691505b60208210810361393657634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161394e5761394e613848565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610f2957600081815260208120601f850160051c81016020861015613a3d5750805b601f850160051c820191505b81811015611fd257828155600101613a49565b6001600160401b03831115613a7357613a73613641565b613a8783613a818354613902565b83613a16565b6000601f841160018114613abb5760008515613aa35750838201355b600019600387901b1c1916600186901b1783556117d4565b600083815260209020601f19861690835b82811015613aec5786850135825560209485019460019092019101613acc565b5086821015613b095760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b7457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613bab57613bab613848565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bd557613bd5613bb0565b500490565b600060208284031215613bec57600080fd5b8151612191816135fc565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c5c8184602088016133ba565b835190830190613c708183602088016133ba565b01949350505050565b60006001600160801b0383811690831681811015613c9957613c99613848565b039392505050565b60006001600160801b03808316818516808303821115613c7057613c70613848565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613cf6908301846133e6565b9695505050505050565b600060208284031215613d1257600080fd5b815161219181613341565b600082821015613d2f57613d2f613848565b500390565b600082613d4357613d43613bb0565b50069056fea2646970667358221220b3fbe67672f2dea683c34706bfeec06591db94f1e2e4e1ef3421c687513e466664736f6c634300080f0033
Deployed Bytecode Sourcemap
59411:96:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34793:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;34793:90:0;;;;;;;;36545:370;;;;;;;;;;-1:-1:-1;36545:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36545:370:0;582:187:1;54408:692:0;;;;;;:::i;:::-;;:::i;:::-;;38610:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40025:204::-;;;;;;;;;;-1:-1:-1;40025:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2311:32:1;;;2293:51;;2281:2;2266:18;40025:204:0;2147:203:1;39588:379:0;;;;;;;;;;-1:-1:-1;39588:379:0;;;;;:::i;:::-;;:::i;40875:142::-;;;;;;;;;;-1:-1:-1;40875:142:0;;;;;:::i;:::-;;:::i;49894:37::-;;;;;;;;;;-1:-1:-1;49894:37:0;;;;;:::i;:::-;;:::i;33125:27::-;;;;;;;;;;;;;;;;31053:25;;;;;;;;;;;;;;;;35737:744;;;;;;;;;;-1:-1:-1;35737:744:0;;;;;:::i;:::-;;:::i;31712:287::-;;;;;;;;;;-1:-1:-1;31712:287:0;;;;;:::i;:::-;;:::i;52662:33::-;;;;;;;;;;-1:-1:-1;52662:33:0;;;;;;;;;;;;;;3930:4:1;3918:17;;;3900:36;;3888:2;3873:18;52662:33:0;3758:184:1;56361:801:0;;;;;;:::i;:::-;;:::i;49936:38::-;;;;;;;;;;;;;;;;55199:84;;;;;;;;;;;;;:::i;53190:281::-;;;;;;;;;;-1:-1:-1;53190:281:0;;;;;:::i;:::-;;:::i;41080:157::-;;;;;;;;;;-1:-1:-1;41080:157:0;;;;;:::i;:::-;;:::i;27158:223::-;;;;;;;;;;-1:-1:-1;27158:223:0;;;;;:::i;:::-;;:::i;33081:39::-;;;;;;;;;;;;;;;31292:197;;;;;;;;;;-1:-1:-1;31292:197:0;;;;;:::i;:::-;;:::i;52852:37::-;;;;;;;;;;;;;;;;35269:177;;;;;;;;;;-1:-1:-1;35269:177:0;;;;;:::i;:::-;;:::i;58689:179::-;;;;;;;;;;-1:-1:-1;58689:179:0;;;;;:::i;:::-;;:::i;59097:106::-;;;;;;;;;;-1:-1:-1;59097:106:0;;;;;:::i;:::-;;:::i;38433:118::-;;;;;;;;;;-1:-1:-1;38433:118:0;;;;;:::i;:::-;;:::i;55108:83::-;;;;;;;;;;;;;:::i;32120:103::-;;;;;;;;;;;;;:::i;36971:211::-;;;;;;;;;;-1:-1:-1;36971:211:0;;;;;:::i;:::-;;:::i;25675:103::-;;;;;;;;;;;;;:::i;53690:491::-;;;;;;:::i;:::-;;:::i;32013:99::-;;;;;;;;;;;;;:::i;49981:118::-;;;;;;;;;;;;;:::i;49796:93::-;;;;;;;;;;-1:-1:-1;49796:93:0;;;;;:::i;:::-;;:::i;52124:30::-;;;;;;;;;;;;;;;;25026:87;;;;;;;;;;-1:-1:-1;25072:7:0;25099:6;-1:-1:-1;;;;;25099:6:0;25026:87;;52803:30;;;;;;;;;;-1:-1:-1;52803:30:0;;;;;;;;58313:200;;;;;;;;;;-1:-1:-1;58313:200:0;;;;;:::i;:::-;;:::i;52161:90::-;;;;;;;;;;-1:-1:-1;52161:90:0;;;;;:::i;:::-;;:::i;59209:128::-;;;;;;;;;;-1:-1:-1;59209:128:0;;;;;:::i;:::-;;:::i;:::-;;;;5736:13:1;;-1:-1:-1;;;;;5732:39:1;5714:58;;5832:4;5820:17;;;5814:24;-1:-1:-1;;;;;5810:49:1;5788:20;;;5781:79;;;;5687:18;59209:128:0;5504:362:1;38765:98:0;;;;;;;;;;;;;:::i;27897:188::-;;;;;;;;;;-1:-1:-1;27897:188:0;;;;;:::i;:::-;;:::i;40293:274::-;;;;;;;;;;-1:-1:-1;40293:274:0;;;;;:::i;:::-;;:::i;57589:128::-;;;;;;;;;;;;;:::i;51064:428::-;;;;;;;;;;-1:-1:-1;51064:428:0;;;;;:::i;:::-;;:::i;41300:311::-;;;;;;;;;;-1:-1:-1;41300:311:0;;;;;:::i;:::-;;:::i;51818:229::-;;;;;;;;;;-1:-1:-1;51818:229:0;;;;;:::i;:::-;;:::i;49360:72::-;;;;;;;;;;-1:-1:-1;49360:72:0;;;;-1:-1:-1;;;;;49360:72:0;;;38926:288;;;;;;;;;;-1:-1:-1;38926:288:0;;;;;:::i;:::-;;:::i;34889:96::-;;;;;;;;;;;;;:::i;52702:92::-;;;;;;;;;;;;;:::i;58999:::-;;;;;;;;;;;;;:::i;45908:43::-;;;;;;;;;;;;;;;;50107:115;;;;;;;;;;;;;:::i;55530:590::-;;;;;;:::i;:::-;;:::i;27524:234::-;;;;;;;;;;-1:-1:-1;27524:234:0;;;;;:::i;:::-;;:::i;31085:37::-;;;;;;;;;;-1:-1:-1;31085:37:0;;;;;;;;52257:98;;;;;;;;;;-1:-1:-1;52257:98:0;;;;;:::i;:::-;;:::i;40630:186::-;;;;;;;;;;-1:-1:-1;40630:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40775:25:0;;;40752:4;40775:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40630:186;25931:201;;;;;;;;;;-1:-1:-1;25931:201:0;;;;;:::i;:::-;;:::i;57313:125::-;;;;;;;;;;;;;:::i;57878:242::-;;;;;;;;;;-1:-1:-1;57878:242:0;;;;;:::i;:::-;;:::i;34793:90::-;34840:7;34863:14;35157:12;;-1:-1:-1;;35157:30:0;;35068:132;34863:14;34856:21;;34793:90;:::o;36545:370::-;36672:4;-1:-1:-1;;;;;;36702:40:0;;-1:-1:-1;;;36702:40:0;;:99;;-1:-1:-1;;;;;;;36753:48:0;;-1:-1:-1;;;36753:48:0;36702:99;:160;;;-1:-1:-1;;;;;;;36812:50:0;;-1:-1:-1;;;36812:50:0;36702:160;:207;;;-1:-1:-1;;;;;;;;;;11520:40:0;;;36873:36;36688:221;36545:370;-1:-1:-1;;36545:370:0:o;54408:692::-;54507:1;54496:7;:12;;54488:51;;;;-1:-1:-1;;;54488:51:0;;8056:2:1;54488:51:0;;;8038:21:1;8095:2;8075:18;;;8068:30;8134:28;8114:18;;;8107:56;8180:18;;54488:51:0;;;;;;;;;54569:12;;54558:7;:23;;54550:82;;;;-1:-1:-1;;;54550:82:0;;;;;;;:::i;:::-;54651:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;54674:17:0;;;;:26;54651:49;54643:99;;;;-1:-1:-1;;;54643:99:0;;;;;;;:::i;:::-;54771:27;54785:3;54790:7;54771:13;:27::i;:::-;54763:88;;;;-1:-1:-1;;;54763:88:0;;;;;;;:::i;:::-;54900:14;54889:7;54870:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;54862:93;;;;-1:-1:-1;;;54862:93:0;;;;;;;:::i;:::-;54987:17;54996:7;54987:8;:17::i;:::-;54974:9;:30;54966:83;;;;-1:-1:-1;;;54966:83:0;;;;;;;:::i;:::-;55062:30;55072:3;55077:7;55086:5;55062:9;:30::i;:::-;54408:692;;:::o;38610:94::-;38664:13;38693:5;38686:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38610:94;:::o;40025:204::-;40093:7;40117:16;40125:7;40117;:16::i;:::-;40109:74;;;;-1:-1:-1;;;40109:74:0;;11113:2:1;40109:74:0;;;11095:21:1;11152:2;11132:18;;;11125:30;11191:34;11171:18;;;11164:62;-1:-1:-1;;;11242:18:1;;;11235:43;11295:19;;40109:74:0;10911:409:1;40109:74:0;-1:-1:-1;40199:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40199:24:0;;40025:204::o;39588:379::-;39657:13;39673:24;39689:7;39673:15;:24::i;:::-;39657:40;;39718:5;-1:-1:-1;;;;;39712:11:0;:2;-1:-1:-1;;;;;39712:11:0;;39704:58;;;;-1:-1:-1;;;39704:58:0;;11527:2:1;39704:58:0;;;11509:21:1;11566:2;11546:18;;;11539:30;11605:34;11585:18;;;11578:62;-1:-1:-1;;;11656:18:1;;;11649:32;11698:19;;39704:58:0;11325:398:1;39704:58:0;23832:10;-1:-1:-1;;;;;39787:21:0;;;;:62;;-1:-1:-1;39812:37:0;39829:5;23832:10;40630:186;:::i;39812:37::-;39771:153;;;;-1:-1:-1;;;39771:153:0;;11930:2:1;39771:153:0;;;11912:21:1;11969:2;11949:18;;;11942:30;12008:34;11988:18;;;11981:62;12079:27;12059:18;;;12052:55;12124:19;;39771:153:0;11728:421:1;39771:153:0;39933:28;39942:2;39946:7;39955:5;39933:8;:28::i;:::-;39650:317;39588:379;;:::o;40875:142::-;40983:28;40993:4;40999:2;41003:7;40983:9;:28::i;49894:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49894:37:0;:::o;35737:744::-;35846:7;35881:16;35891:5;35881:9;:16::i;:::-;35873:5;:24;35865:71;;;;-1:-1:-1;;;35865:71:0;;12356:2:1;35865:71:0;;;12338:21:1;12395:2;12375:18;;;12368:30;12434:34;12414:18;;;12407:62;-1:-1:-1;;;12485:18:1;;;12478:32;12527:19;;35865:71:0;12154:398:1;35865:71:0;35943:22;35968:13;:11;:13::i;:::-;35943:38;;35988:19;36018:25;36068:9;36063:350;36087:14;36083:1;:18;36063:350;;;36117:31;36151:14;;;:11;:14;;;;;;;;;36117:48;;;;;;;;;-1:-1:-1;;;;;36117:48:0;;;;;-1:-1:-1;;;36117:48:0;;;-1:-1:-1;;;;;36117:48:0;;;;;;;;36178:28;36174:89;;36239:14;;;-1:-1:-1;36174:89:0;36296:5;-1:-1:-1;;;;;36275:26:0;:17;-1:-1:-1;;;;;36275:26:0;;36271:135;;36333:5;36318:11;:20;36314:59;;-1:-1:-1;36360:1:0;-1:-1:-1;36353:8:0;;-1:-1:-1;;;36353:8:0;36314:59;36383:13;;;;:::i;:::-;;;;36271:135;-1:-1:-1;36103:3:0;;;;:::i;:::-;;;;36063:350;;;-1:-1:-1;36419:56:0;;-1:-1:-1;;;36419:56:0;;12899:2:1;36419:56:0;;;12881:21:1;12938:2;12918:18;;;12911:30;12977:34;12957:18;;;12950:62;-1:-1:-1;;;13028:18:1;;;13021:44;13082:19;;36419:56:0;12697:410:1;31712:287:0;31824:10;;31801:4;;31824:15;;31816:51;;;;-1:-1:-1;;;31816:51:0;;13314:2:1;31816:51:0;;;13296:21:1;13353:2;13333:18;;;13326:30;13392:25;13372:18;;;13365:53;13435:18;;31816:51:0;13112:347:1;31816:51:0;31901:21;;-1:-1:-1;;13613:2:1;13609:15;;;13605:53;31901:21:0;;;13593:66:1;31876:12:0;;13675::1;;31901:21:0;;;;;;;;;;;;31891:32;;;;;;31876:47;;31941:50;31960:12;;31941:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;31974:10:0;;;-1:-1:-1;31986:4:0;;-1:-1:-1;31941:18:0;:50::i;:::-;31934:57;31712:287;-1:-1:-1;;;;;31712:287:0:o;56361:801::-;56484:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;56513:11:0;;;;:19;;:11;:19;56484:48;56476:88;;;;-1:-1:-1;;;56476:88:0;;13900:2:1;56476:88:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978:29;13958:18;;;13951:57;14025:18;;56476:88:0;13698:351:1;56476:88:0;56583:32;56597:3;56602:12;;56583:13;:32::i;:::-;56575:73;;;;-1:-1:-1;;;56575:73:0;;14256:2:1;56575:73:0;;;14238:21:1;14295:2;14275:18;;;14268:30;14334;14314:18;;;14307:58;14382:18;;56575:73:0;14054:352:1;56575:73:0;56678:1;56667:7;:12;;56659:51;;;;-1:-1:-1;;;56659:51:0;;8056:2:1;56659:51:0;;;8038:21:1;8095:2;8075:18;;;8068:30;8134:28;8114:18;;;8107:56;8180:18;;56659:51:0;7854:350:1;56659:51:0;56740:12;;56729:7;:23;;56721:82;;;;-1:-1:-1;;;56721:82:0;;;;;;;:::i;:::-;56824:27;56838:3;56843:7;56824:13;:27::i;:::-;56816:88;;;;-1:-1:-1;;;56816:88:0;;;;;;;:::i;:::-;56953:14;56942:7;56923:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;56915:92;;;;-1:-1:-1;;;56915:92:0;;;;;;;:::i;:::-;57039:17;57048:7;57039:8;:17::i;:::-;57026:9;:30;57018:83;;;;-1:-1:-1;;;57018:83:0;;;;;;;:::i;:::-;57124:30;57134:3;57139:7;57148:5;57124:9;:30::i;:::-;56361:801;;;;:::o;55199:84::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55256:11:0::1;:19:::0;;-1:-1:-1;;55256:19:0::1;::::0;;55199:84::o;53190:281::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;53289:1:::1;53282:4;:8;53274:48;;;::::0;-1:-1:-1;;;53274:48:0;;15427:2:1;53274:48:0::1;::::0;::::1;15409:21:1::0;15466:2;15446:18;;;15439:30;15505:29;15485:18;;;15478:57;15552:18;;53274:48:0::1;15225:351:1::0;53274:48:0::1;53369:14;53361:4;53342:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;53334:90;;;;-1:-1:-1::0;;;53334:90:0::1;;;;;;;:::i;:::-;53436:26;53446:3;53451:4;53457;53436:9;:26::i;41080:157::-:0;41192:39;41209:4;41215:2;41219:7;41192:39;;;;;;;;;;;;:16;:39::i;27158:223::-;25072:7;25099:6;-1:-1:-1;;;;;25099:6:0;23832:10;25246:23;25238:68;;;;-1:-1:-1;;;25238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27227:22:0;::::1;27219:50;;;::::0;-1:-1:-1;;;27219:50:0;;16144:2:1;27219:50:0::1;::::0;::::1;16126:21:1::0;16183:2;16163:18;;;16156:30;-1:-1:-1;;;16202:18:1;;;16195:45;16257:18;;27219:50:0::1;15942:339:1::0;27219:50:0::1;27285:16;27292:8;27285:6;:16::i;:::-;27284:17;27276:67;;;::::0;-1:-1:-1;;;27276:67:0;;16488:2:1;27276:67:0::1;::::0;::::1;16470:21:1::0;16527:2;16507:18;;;16500:30;16566:34;16546:18;;;16539:62;-1:-1:-1;;;16617:18:1;;;16610:35;16662:19;;27276:67:0::1;16286:401:1::0;27276:67:0::1;-1:-1:-1::0;;;;;27354:14:0::1;;::::0;;;27371:4:::1;27354:14;::::0;;;;;;;:21;;-1:-1:-1;;27354:21:0::1;::::0;;::::1;::::0;;27158:223::o;31292:197::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;31400:10:::1;;31382:14;:28:::0;31374:71:::1;;;::::0;-1:-1:-1;;;31374:71:0;;16894:2:1;31374:71:0::1;::::0;::::1;16876:21:1::0;16933:2;16913:18;;;16906:30;16972:32;16952:18;;;16945:60;17022:18;;31374:71:0::1;16692:354:1::0;31374:71:0::1;-1:-1:-1::0;;31454:10:0::1;:27:::0;31292:197::o;35269:177::-;35336:7;35368:13;:11;:13::i;:::-;35360:5;:21;35352:69;;;;-1:-1:-1;;;35352:69:0;;17253:2:1;35352:69:0;;;17235:21:1;17292:2;17272:18;;;17265:30;17331:34;17311:18;;;17304:62;-1:-1:-1;;;17382:18:1;;;17375:33;17425:19;;35352:69:0;17051:399:1;35352:69:0;-1:-1:-1;35435:5:0;35269:177::o;58689:179::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;58788:1:::1;58773:11;:16;;58765:56;;;::::0;-1:-1:-1;;;58765:56:0;;17657:2:1;58765:56:0::1;::::0;::::1;17639:21:1::0;17696:2;17676:18;;;17669:30;17735:29;17715:18;;;17708:57;17782:18;;58765:56:0::1;17455:351:1::0;58765:56:0::1;-1:-1:-1::0;;58833:12:0::1;:26:::0;58689:179::o;59097:106::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;59174:13:::1;:23;59190:7:::0;;59174:13;:23:::1;:::i;:::-;;28210:182:::0;;59097:106;;:::o;38433:118::-;38497:7;38520:20;38532:7;38520:11;:20::i;:::-;:25;;38433:118;-1:-1:-1;;38433:118:0:o;55108:83::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55165:11:0::1;:18:::0;;-1:-1:-1;;55165:18:0::1;55179:4;55165:18;::::0;;55108:83::o;32120:103::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32190:17:0::1;:25:::0;;-1:-1:-1;;32190:25:0::1;::::0;;32120:103::o;36971:211::-;37035:7;-1:-1:-1;;;;;37059:19:0;;37051:75;;;;-1:-1:-1;;;37051:75:0;;20071:2:1;37051:75:0;;;20053:21:1;20110:2;20090:18;;;20083:30;20149:34;20129:18;;;20122:62;-1:-1:-1;;;20200:18:1;;;20193:41;20251:19;;37051:75:0;19869:407:1;37051:75:0;-1:-1:-1;;;;;;37148:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37148:27:0;;36971:211::o;25675:103::-;25072:7;25099:6;-1:-1:-1;;;;;25099:6:0;23832:10;25246:23;25238:68;;;;-1:-1:-1;;;25238:68:0;;;;;;;:::i;:::-;25740:30:::1;25767:1;25740:18;:30::i;:::-;25675:103::o:0;53690:491::-;53773:14;53753:16;:14;:16::i;:::-;:34;;53745:83;;;;-1:-1:-1;;;53745:83:0;;;;;;;:::i;:::-;53847:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;53870:17:0;;;;:26;53847:49;53839:99;;;;-1:-1:-1;;;53839:99:0;;;;;;;:::i;:::-;53967:21;53981:3;53986:1;53967:13;:21::i;:::-;53959:82;;;;-1:-1:-1;;;53959:82:0;;;;;;;:::i;:::-;54073:11;54082:1;54073:8;:11::i;:::-;54060:9;:24;54052:76;;;;-1:-1:-1;;;54052:76:0;;;;;;;:::i;:::-;54149:24;54159:3;54164:1;54167:5;54149:9;:24::i;:::-;53690:491;:::o;32013:99::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32080:17:0::1;:24:::0;;-1:-1:-1;;32080:24:0::1;32100:4;32080:24;::::0;;32013:99::o;49981:118::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;50068:1:::1;50044:21;:25;50036:34;;;::::0;::::1;;50079:14;:12;:14::i;49796:93::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49796:93:0;;-1:-1:-1;49796:93:0;:::o;58313:200::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;58417:1:::1;58400:13;:18;;58392:70;;;::::0;-1:-1:-1;;;58392:70:0;;20891:2:1;58392:70:0::1;::::0;::::1;20873:21:1::0;20930:2;20910:18;;;20903:30;20969:34;20949:18;;;20942:62;-1:-1:-1;;;21020:18:1;;;21013:37;21067:19;;58392:70:0::1;20689:403:1::0;58392:70:0::1;-1:-1:-1::0;;58473:16:0::1;:32:::0;58313:200::o;52161:90::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;-1:-1:-1;;52228:5:0::1;:17:::0;52161:90::o;59209:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;59311:20:0;59323:7;59311:11;:20::i;38765:98::-;38821:13;38850:7;38843:14;;;;;:::i;27897:188::-;27967:4;-1:-1:-1;;;;;27991:22:0;;27983:60;;;;-1:-1:-1;;;27983:60:0;;21299:2:1;27983:60:0;;;21281:21:1;21338:2;21318:18;;;21311:30;21377:27;21357:18;;;21350:55;21422:18;;27983:60:0;21097:349:1;27983:60:0;-1:-1:-1;;;;;;28057:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;27897:188::o;40293:274::-;23832:10;-1:-1:-1;;;;;40384:24:0;;;40376:63;;;;-1:-1:-1;;;40376:63:0;;21653:2:1;40376:63:0;;;21635:21:1;21692:2;21672:18;;;21665:30;21731:28;21711:18;;;21704:56;21777:18;;40376:63:0;21451:350:1;40376:63:0;23832:10;40448:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40448:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40448:53:0;;;;;;;;;;40513:48;;722:41:1;;;40448:42:0;;23832:10;40513:48;;695:18:1;40513:48:0;;;;;;;40293:274;;:::o;57589:128::-;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;57653:26:::1;:24;:26::i;51064:428::-:0;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;51179:1:::1;51169:7;:11;51161:20;;;::::0;::::1;;51248:38;::::0;-1:-1:-1;;;51248:38:0;;51280:4:::1;51248:38;::::0;::::1;2293:51:1::0;51218:14:0;;51290:7;;-1:-1:-1;;;;;51248:23:0;::::1;::::0;::::1;::::0;2266:18:1;;51248:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;51240:97;;;::::0;-1:-1:-1;;;51240:97:0;;22197:2:1;51240:97:0::1;::::0;::::1;22179:21:1::0;22236:2;22216:18;;;22209:30;22275:34;22255:18;;;22248:62;-1:-1:-1;;;22326:18:1;;;22319:33;22369:19;;51240:97:0::1;21995:399:1::0;51240:97:0::1;51350:6;51346:141;51364:19;;51360:1;:23;51346:141;;;51402:13;-1:-1:-1::0;;;;;51402:22:0::1;;51425:16;51442:1;51425:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51425:19:0::1;51475:3;51457:11;51469:1;51457:14;;;;;;;;:::i;:::-;;;;;;;;;51447:7;:24;;;;:::i;:::-;51446:32;;;;:::i;:::-;51402:77;::::0;-1:-1:-1;;;;;;51402:77:0::1;::::0;;;;;;-1:-1:-1;;;;;23153:32:1;;;51402:77:0::1;::::0;::::1;23135:51:1::0;23202:18;;;23195:34;23108:18;;51402:77:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;51385:3:0;::::1;::::0;::::1;:::i;:::-;;;;51346:141;;;;51154:338;28210:182:::0;;51064:428;;:::o;41300:311::-;41437:28;41447:4;41453:2;41457:7;41437:9;:28::i;:::-;41488:48;41511:4;41517:2;41521:7;41530:5;41488:22;:48::i;:::-;41472:133;;;;-1:-1:-1;;;41472:133:0;;;;;;;:::i;51818:229::-;49489:12;;-1:-1:-1;;;;;49489:12:0;49475:10;:26;49467:67;;;;-1:-1:-1;;;49467:67:0;;24112:2:1;49467:67:0;;;24094:21:1;24151:2;24131:18;;;24124:30;24190;24170:18;;;24163:58;24238:18;;49467:67:0;23910:352:1;49467:67:0;51909:12:::1;::::0;-1:-1:-1;;;;;51909:12:0;;::::1;51894:27:::0;;::::1;::::0;51886:82:::1;;;::::0;-1:-1:-1;;;51886:82:0;;24469:2:1;51886:82:0::1;::::0;::::1;24451:21:1::0;24508:2;24488:18;;;24481:30;24547:34;24527:18;;;24520:62;-1:-1:-1;;;24598:18:1;;;24591:40;24648:19;;51886:82:0::1;24267:406:1::0;51886:82:0::1;51975:12;:26:::0;;-1:-1:-1;;;;;;51975:26:0::1;-1:-1:-1::0;;;;;51975:26:0;::::1;;::::0;;52008:16:::1;:19:::0;;51975:26;;52008:16;-1:-1:-1;;52008:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;52008:33:0::1;;;;;-1:-1:-1::0;;;;;52008:33:0::1;;;;;;51818:229:::0;:::o;38926:288::-;39024:13;39049:21;39073:10;:8;:10::i;:::-;39049:34;;39128:1;39110:7;39104:21;:25;:104;;;;;;;;;;;;;;;;;39165:7;39174:18;:7;:16;:18::i;:::-;39148:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39104:104;39090:118;38926:288;-1:-1:-1;;;38926:288:0:o;34889:96::-;34936:7;34961:14;35157:12;;-1:-1:-1;;35157:30:0;;35068:132;34961:14;:18;;34978:1;34961:18;:::i;52702:92::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58999:::-;59043:13;59072;59065:20;;;;;:::i;50107:115::-;49489:12;;-1:-1:-1;;;;;49489:12:0;49475:10;:26;49467:67;;;;-1:-1:-1;;;49467:67:0;;24112:2:1;49467:67:0;;;24094:21:1;24151:2;24131:18;;;24124:30;24190;24170:18;;;24163:58;24238:18;;49467:67:0;23910:352:1;49467:67:0;50191:1:::1;50167:21;:25;50159:34;;;::::0;::::1;;50202:14;:12;:14::i;55530:590::-:0;55628:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;55657:11:0;;;;:19;;:11;:19;55628:48;55620:88;;;;-1:-1:-1;;;55620:88:0;;13900:2:1;55620:88:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978:29;13958:18;;;13951:57;14025:18;;55620:88:0;13698:351:1;55620:88:0;55727:32;55741:3;55746:12;;55727:13;:32::i;:::-;55719:73;;;;-1:-1:-1;;;55719:73:0;;14256:2:1;55719:73:0;;;14238:21:1;14295:2;14275:18;;;14268:30;14334;14314:18;;;14307:58;14382:18;;55719:73:0;14054:352:1;55719:73:0;55831:14;55811:16;:14;:16::i;:::-;:34;;55803:82;;;;-1:-1:-1;;;55803:82:0;;;;;;;:::i;:::-;55904:21;55918:3;55923:1;55904:13;:21::i;:::-;55896:82;;;;-1:-1:-1;;;55896:82:0;;;;;;;:::i;:::-;56010:11;56019:1;56010:8;:11::i;:::-;55997:9;:24;55989:76;;;;-1:-1:-1;;;55989:76:0;;;;;;;:::i;:::-;56088:24;56098:3;56103:1;56106:5;56088:9;:24::i;27524:234::-;25072:7;25099:6;-1:-1:-1;;;;;25099:6:0;23832:10;25246:23;25238:68;;;;-1:-1:-1;;;25238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27598:22:0;::::1;27590:50;;;::::0;-1:-1:-1;;;27590:50:0;;16144:2:1;27590:50:0::1;::::0;::::1;16126:21:1::0;16183:2;16163:18;;;16156:30;-1:-1:-1;;;16202:18:1;;;16195:45;16257:18;;27590:50:0::1;15942:339:1::0;27590:50:0::1;27655:16;27662:8;27655:6;:16::i;:::-;27647:72;;;::::0;-1:-1:-1;;;27647:72:0;;25355:2:1;27647:72:0::1;::::0;::::1;25337:21:1::0;25394:2;25374:18;;;25367:30;25433:34;25413:18;;;25406:62;-1:-1:-1;;;25484:18:1;;;25477:41;25535:19;;27647:72:0::1;25153:407:1::0;27647:72:0::1;-1:-1:-1::0;;;;;27730:14:0::1;27747:5;27730:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;27730:22:0::1;::::0;;27524:234::o;52257:98::-;52312:7;52343:6;52335:5;;:14;;;;:::i;25931:201::-;25072:7;25099:6;-1:-1:-1;;;;;25099:6:0;23832:10;25246:23;25238:68;;;;-1:-1:-1;;;25238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26020:22:0;::::1;26012:73;;;::::0;-1:-1:-1;;;26012:73:0;;25767:2:1;26012:73:0::1;::::0;::::1;25749:21:1::0;25806:2;25786:18;;;25779:30;25845:34;25825:18;;;25818:62;-1:-1:-1;;;25896:18:1;;;25889:36;25942:19;;26012:73:0::1;25565:402:1::0;26012:73:0::1;26096:28;26115:8;26096:18;:28::i;57313:125::-:0;28217:13;25099:6;;-1:-1:-1;;;;;25099:6:0;23832:10;28233:23;;;;28217:13;28278:20;;27897:188;:::i;28278:20::-;28263:35;;28313:8;:19;;;;28325:7;28313:19;28305:73;;;;-1:-1:-1;;;28305:73:0;;;;;;;:::i;:::-;57376:25:::1;:23;:25::i;57878:242::-:0;57956:4;57992:1;57981:7;:12;;57973:66;;;;-1:-1:-1;;;57973:66:0;;26174:2:1;57973:66:0;;;26156:21:1;26213:2;26193:18;;;26186:30;26252:34;26232:18;;;26225:62;-1:-1:-1;;;26303:18:1;;;26296:39;26352:19;;57973:66:0;25972:405:1;57973:66:0;58096:16;;58084:7;58058:23;58072:8;58058:13;:23::i;:::-;:33;;;;:::i;:::-;58057:55;;;57878:242;-1:-1:-1;;;57878:242:0:o;41987:129::-;42070:40;42080:2;42084:8;42094:11;42070:40;;;;;;;;;;;;:9;:40::i;41846:135::-;41903:4;41942:7;34616:1;41923:26;;:52;;;;-1:-1:-1;;41963:12:0;;-1:-1:-1;41953:22:0;41846:135::o;45730:172::-;45827:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45827:29:0;-1:-1:-1;;;;;45827:29:0;;;;;;;;;45868:28;;45827:24;;45868:28;;;;;;;45730:172;;;:::o;44099:1529::-;44196:35;44234:20;44246:7;44234:11;:20::i;:::-;44305:18;;44196:58;;-1:-1:-1;44263:22:0;;-1:-1:-1;;;;;44289:34:0;23832:10;-1:-1:-1;;;;;44289:34:0;;:81;;;-1:-1:-1;23832:10:0;44334:20;44346:7;44334:11;:20::i;:::-;-1:-1:-1;;;;;44334:36:0;;44289:81;:142;;;-1:-1:-1;44398:18:0;;44381:50;;23832:10;40630:186;:::i;44381:50::-;44263:169;;44457:17;44441:101;;;;-1:-1:-1;;;44441:101:0;;26584:2:1;44441:101:0;;;26566:21:1;26623:2;26603:18;;;26596:30;26662:34;26642:18;;;26635:62;-1:-1:-1;;;26713:18:1;;;26706:48;26771:19;;44441:101:0;26382:414:1;44441:101:0;44589:4;-1:-1:-1;;;;;44567:26:0;:13;:18;;;-1:-1:-1;;;;;44567:26:0;;44551:98;;;;-1:-1:-1;;;44551:98:0;;27003:2:1;44551:98:0;;;26985:21:1;27042:2;27022:18;;;27015:30;27081:34;27061:18;;;27054:62;-1:-1:-1;;;27132:18:1;;;27125:36;27178:19;;44551:98:0;26801:402:1;44551:98:0;-1:-1:-1;;;;;44664:16:0;;44656:66;;;;-1:-1:-1;;;44656:66:0;;27410:2:1;44656:66:0;;;27392:21:1;27449:2;27429:18;;;27422:30;27488:34;27468:18;;;27461:62;-1:-1:-1;;;27539:18:1;;;27532:35;27584:19;;44656:66:0;27208:401:1;44656:66:0;44831:49;44848:1;44852:7;44861:13;:18;;;44831:8;:49::i;:::-;-1:-1:-1;;;;;44889:18:0;;;;;;:12;:18;;;;;:31;;44919:1;;44889:18;:31;;44919:1;;-1:-1:-1;;;;;44889:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44889:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44927:16:0;;-1:-1:-1;44927:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;44927:16:0;;:29;;-1:-1:-1;;44927:29:0;;:::i;:::-;;;-1:-1:-1;;;;;44927:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44986:43:0;;;;;;;;-1:-1:-1;;;;;44986:43:0;;;;;-1:-1:-1;;;;;45012:15:0;44986:43;;;;;;;;;-1:-1:-1;44963:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44963:66:0;-1:-1:-1;;;;;;44963:66:0;;;;;;;;;;;45279:11;44975:7;-1:-1:-1;45279:11:0;:::i;:::-;45342:1;45301:24;;;:11;:24;;;;;:29;45257:33;;-1:-1:-1;;;;;;45301:29:0;45297:236;;45359:20;45367:11;45359:7;:20::i;:::-;45355:171;;;45419:97;;;;;;;;45446:18;;-1:-1:-1;;;;;45419:97:0;;;;;;45477:28;;;;-1:-1:-1;;;;;45419:97:0;;;;;;;;;-1:-1:-1;45392:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;45392:124:0;-1:-1:-1;;;;;;45392:124:0;;;;;;;;;;;;45355:171;45565:7;45561:2;-1:-1:-1;;;;;45546:27:0;45555:4;-1:-1:-1;;;;;45546:27:0;;;;;;;;;;;45580:42;56361:801;29418:202;29551:4;29606;29577:25;29590:5;29597:4;29577:12;:25::i;:::-;:33;;29418:202;-1:-1:-1;;;;29418:202:0:o;37434:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;37558:7:0;;34616:1;37599:23;;:46;;;;;37633:12;;37626:4;:19;37599:46;37595:706;;;37662:31;37696:17;;;:11;:17;;;;;;;;;37662:51;;;;;;;;;-1:-1:-1;;;;;37662:51:0;;;;;-1:-1:-1;;;37662:51:0;;;-1:-1:-1;;;;;37662:51:0;;;;;;;;37732:28;37728:85;;37788:9;37434:945;-1:-1:-1;;;37434:945:0:o;37728:85::-;-1:-1:-1;;;38109:6:0;38146:17;;;;:11;:17;;;;;;;;;38134:29;;;;;;;;;-1:-1:-1;;;;;38134:29:0;;;;;-1:-1:-1;;;38134:29:0;;;-1:-1:-1;;;;;38134:29:0;;;;;;;;38186:28;38182:93;;38246:9;37434:945;-1:-1:-1;;;37434:945:0:o;38182:93::-;38077:213;;37595:706;38316:57;;-1:-1:-1;;;38316:57:0;;28325:2:1;38316:57:0;;;28307:21:1;28364:2;28344:18;;;28337:30;28403:34;28383:18;;;28376:62;-1:-1:-1;;;28454:18:1;;;28447:45;28509:19;;38316:57:0;28123:411:1;26290:191:0;26364:16;26383:6;;-1:-1:-1;;;;;26400:17:0;;;-1:-1:-1;;;;;;26400:17:0;;;;;;26433:40;;26383:6;;;;;;;26433:40;;26364:16;26433:40;26353:128;26290:191;:::o;50228:278::-;50287:21;50269:15;50325:176;50343:19;;50339:1;:23;50325:176;;;50383:108;50410:16;50427:1;50410:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50410:19:0;50475:3;50457:11;50469:1;50457:14;;;;;;;;:::i;:::-;;;;;;;;;50447:7;:24;;;;:::i;:::-;50446:32;;;;:::i;:::-;50383:10;:108::i;:::-;50364:3;;;;:::i;:::-;;;;50325:176;;47519:690;47656:4;-1:-1:-1;;;;;47673:13:0;;1695:19;:23;47669:535;;47712:72;;-1:-1:-1;;;47712:72:0;;-1:-1:-1;;;;;47712:36:0;;;;;:72;;23832:10;;47763:4;;47769:7;;47778:5;;47712:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47712:72:0;;;;;;;;-1:-1:-1;;47712:72:0;;;;;;;;;;;;:::i;:::-;;;47699:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47943:6;:13;47960:1;47943:18;47939:215;;47976:61;;-1:-1:-1;;;47976:61:0;;;;;;;:::i;47939:215::-;48122:6;48116:13;48107:6;48103:2;48099:15;48092:38;47699:464;-1:-1:-1;;;;;;47834:55:0;-1:-1:-1;;;47834:55:0;;-1:-1:-1;47827:62:0;;47669:535;-1:-1:-1;48192:4:0;47669:535;47519:690;;;;;;:::o;18583:723::-;18639:13;18860:5;18869:1;18860:10;18856:53;;-1:-1:-1;;18887:10:0;;;;;;;;;;;;-1:-1:-1;;;18887:10:0;;;;;18583:723::o;18856:53::-;18934:5;18919:12;18975:78;18982:9;;18975:78;;19008:8;;;;:::i;:::-;;-1:-1:-1;19031:10:0;;-1:-1:-1;19039:2:0;19031:10;;:::i;:::-;;;18975:78;;;19063:19;19095:6;-1:-1:-1;;;;;19085:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19085:17:0;;19063:39;;19113:154;19120:10;;19113:154;;19147:11;19157:1;19147:11;;:::i;:::-;;-1:-1:-1;19216:10:0;19224:2;19216:5;:10;:::i;:::-;19203:24;;:2;:24;:::i;:::-;19190:39;;19173:6;19180;19173:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19173:56:0;;;;;;;;-1:-1:-1;19244:11:0;19253:2;19244:11;;:::i;:::-;;;19113:154;;37188:240;37249:7;-1:-1:-1;;;;;37281:19:0;;37265:102;;;;-1:-1:-1;;;37265:102:0;;29736:2:1;37265:102:0;;;29718:21:1;29775:2;29755:18;;;29748:30;29814:34;29794:18;;;29787:62;-1:-1:-1;;;29865:18:1;;;29858:47;29922:19;;37265:102:0;29534:413:1;37265:102:0;-1:-1:-1;;;;;;37389:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37389:32:0;;-1:-1:-1;;;;;37389:32:0;;37188:240::o;42445:1434::-;42596:12;;-1:-1:-1;;;;;42623:16:0;;42615:62;;;;-1:-1:-1;;;42615:62:0;;30154:2:1;42615:62:0;;;30136:21:1;30193:2;30173:18;;;30166:30;30232:34;30212:18;;;30205:62;-1:-1:-1;;;30283:18:1;;;30276:31;30324:19;;42615:62:0;29952:397:1;42615:62:0;42814:21;42822:12;42814:7;:21::i;:::-;42813:22;42805:64;;;;-1:-1:-1;;;42805:64:0;;30556:2:1;42805:64:0;;;30538:21:1;30595:2;30575:18;;;30568:30;30634:31;30614:18;;;30607:59;30683:18;;42805:64:0;30354:353:1;42805:64:0;42955:20;;;42970:5;42955:20;42951:116;;43008:12;;42996:8;:24;;42988:71;;;;-1:-1:-1;;;42988:71:0;;30914:2:1;42988:71:0;;;30896:21:1;30953:2;30933:18;;;30926:30;30992:34;30972:18;;;30965:62;-1:-1:-1;;;31043:18:1;;;31036:32;31085:19;;42988:71:0;30712:398:1;42988:71:0;-1:-1:-1;;;;;43178:16:0;;43145:30;43178:16;;;:12;:16;;;;;;;;;43145:49;;;;;;;;;-1:-1:-1;;;;;43145:49:0;;;;;-1:-1:-1;;;43145:49:0;;;;;;;;;;;43220:139;;;;;;;;43240:19;;43145:49;;43220:139;;;43240:39;;43270:8;;43240:39;:::i;:::-;-1:-1:-1;;;;;43220:139:0;;;;;43316:11;:35;;43342:8;43316:35;;;43330:1;43316:35;43288:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;43220:139:0;;;;;;-1:-1:-1;;;;;43201:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;43201:158:0;;;;;;;;;;;;43394:43;;;;;;;;;;-1:-1:-1;;;;;43420:15:0;43394:43;;;;;;;;43366:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;43366:71:0;-1:-1:-1;;;;;;43366:71:0;;;;;;;;;;;;;;;;;;43378:12;;43490:281;43514:8;43510:1;:12;43490:281;;;43543:38;;43568:12;;-1:-1:-1;;;;;43543:38:0;;;43560:1;;43543:38;;43560:1;;43543:38;43608:59;43639:1;43643:2;43647:12;43661:5;43608:22;:59::i;:::-;43590:150;;;;-1:-1:-1;;;43590:150:0;;;;;;;:::i;:::-;43749:14;;;;:::i;:::-;;;;43524:3;;;;;:::i;:::-;;;;43490:281;;;-1:-1:-1;43779:12:0;:27;-1:-1:-1;;;;;;42445:1434:0:o;29992:701::-;30075:7;30120:4;30075:7;30137:515;30161:5;:12;30157:1;:16;30137:515;;;30197:20;30220:5;30226:1;30220:8;;;;;;;;:::i;:::-;;;;;;;30197:31;;30265:12;30249;:28;30245:394;;30771:13;30825:15;;;30863:4;30856:15;;;30912:4;30896:21;;30381:57;;30245:394;;;30771:13;30825:15;;;30863:4;30856:15;;;30912:4;30896:21;;30564:57;;30245:394;-1:-1:-1;30175:3:0;;;;:::i;:::-;;;;30137:515;;;-1:-1:-1;30671:12:0;29992:701;-1:-1:-1;;;29992:701:0:o;50514:175::-;50587:12;50605:8;-1:-1:-1;;;;;50605:13:0;50626:7;50605:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50586:52;;;50655:7;50647:36;;;;-1:-1:-1;;;50647:36:0;;31527:2:1;50647:36:0;;;31509:21:1;31566:2;31546:18;;;31539:30;-1:-1:-1;;;31585:18:1;;;31578:46;31641:18;;50647:36:0;31325:340:1;196:131;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:254::-;1020:6;1028;1081:2;1069:9;1060:7;1056:23;1052:32;1049:52;;;1097:1;1094;1087:12;1049:52;1120:29;1139:9;1120:29;:::i;:::-;1110:39;1196:2;1181:18;;;;1168:32;;-1:-1:-1;;;952:254:1:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;-1:-1:-1;;1459:1:1;1441:16;;1434:27;1211:258::o;1474:::-;1516:3;1554:5;1548:12;1581:6;1576:3;1569:19;1597:63;1653:6;1646:4;1641:3;1637:14;1630:4;1623:5;1619:16;1597:63;:::i;:::-;1714:2;1693:15;-1:-1:-1;;1689:29:1;1680:39;;;;1721:4;1676:50;;1474:258;-1:-1:-1;;1474:258:1:o;1737:220::-;1886:2;1875:9;1868:21;1849:4;1906:45;1947:2;1936:9;1932:18;1924:6;1906:45;:::i;1962:180::-;2021:6;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;-1:-1:-1;2113:23:1;;1962:180;-1:-1:-1;1962:180:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2870:367::-;2933:8;2943:6;2997:3;2990:4;2982:6;2978:17;2974:27;2964:55;;3015:1;3012;3005:12;2964:55;-1:-1:-1;3038:20:1;;-1:-1:-1;;;;;3070:30:1;;3067:50;;;3113:1;3110;3103:12;3067:50;3150:4;3142:6;3138:17;3126:29;;3210:3;3203:4;3193:6;3190:1;3186:14;3178:6;3174:27;3170:38;3167:47;3164:67;;;3227:1;3224;3217:12;3164:67;2870:367;;;;;:::o;3242:511::-;3337:6;3345;3353;3406:2;3394:9;3385:7;3381:23;3377:32;3374:52;;;3422:1;3419;3412:12;3374:52;3445:29;3464:9;3445:29;:::i;:::-;3435:39;;3525:2;3514:9;3510:18;3497:32;-1:-1:-1;;;;;3544:6:1;3541:30;3538:50;;;3584:1;3581;3574:12;3538:50;3623:70;3685:7;3676:6;3665:9;3661:22;3623:70;:::i;:::-;3242:511;;3712:8;;-1:-1:-1;3597:96:1;;-1:-1:-1;;;;3242:511:1:o;3947:579::-;4051:6;4059;4067;4075;4128:2;4116:9;4107:7;4103:23;4099:32;4096:52;;;4144:1;4141;4134:12;4096:52;4167:29;4186:9;4167:29;:::i;:::-;4157:39;;4243:2;4232:9;4228:18;4215:32;4205:42;;4298:2;4287:9;4283:18;4270:32;-1:-1:-1;;;;;4317:6:1;4314:30;4311:50;;;4357:1;4354;4347:12;4311:50;4396:70;4458:7;4449:6;4438:9;4434:22;4396:70;:::i;:::-;3947:579;;;;-1:-1:-1;4485:8:1;-1:-1:-1;;;;3947:579:1:o;4531:186::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4682:29;4701:9;4682:29;:::i;4907:592::-;4978:6;4986;5039:2;5027:9;5018:7;5014:23;5010:32;5007:52;;;5055:1;5052;5045:12;5007:52;5095:9;5082:23;-1:-1:-1;;;;;5165:2:1;5157:6;5154:14;5151:34;;;5181:1;5178;5171:12;5151:34;5219:6;5208:9;5204:22;5194:32;;5264:7;5257:4;5253:2;5249:13;5245:27;5235:55;;5286:1;5283;5276:12;5235:55;5326:2;5313:16;5352:2;5344:6;5341:14;5338:34;;;5368:1;5365;5358:12;5338:34;5413:7;5408:2;5399:6;5395:2;5391:15;5387:24;5384:37;5381:57;;;5434:1;5431;5424:12;5381:57;5465:2;5457:11;;;;;5487:6;;-1:-1:-1;4907:592:1;;-1:-1:-1;;;;4907:592:1:o;5871:118::-;5957:5;5950:13;5943:21;5936:5;5933:32;5923:60;;5979:1;5976;5969:12;5994:315;6059:6;6067;6120:2;6108:9;6099:7;6095:23;6091:32;6088:52;;;6136:1;6133;6126:12;6088:52;6159:29;6178:9;6159:29;:::i;:::-;6149:39;;6238:2;6227:9;6223:18;6210:32;6251:28;6273:5;6251:28;:::i;:::-;6298:5;6288:15;;;5994:315;;;;;:::o;6314:127::-;6375:10;6370:3;6366:20;6363:1;6356:31;6406:4;6403:1;6396:15;6430:4;6427:1;6420:15;6446:1138;6541:6;6549;6557;6565;6618:3;6606:9;6597:7;6593:23;6589:33;6586:53;;;6635:1;6632;6625:12;6586:53;6658:29;6677:9;6658:29;:::i;:::-;6648:39;;6706:38;6740:2;6729:9;6725:18;6706:38;:::i;:::-;6696:48;;6791:2;6780:9;6776:18;6763:32;6753:42;;6846:2;6835:9;6831:18;6818:32;-1:-1:-1;;;;;6910:2:1;6902:6;6899:14;6896:34;;;6926:1;6923;6916:12;6896:34;6964:6;6953:9;6949:22;6939:32;;7009:7;7002:4;6998:2;6994:13;6990:27;6980:55;;7031:1;7028;7021:12;6980:55;7067:2;7054:16;7089:2;7085;7082:10;7079:36;;;7095:18;;:::i;:::-;7170:2;7164:9;7138:2;7224:13;;-1:-1:-1;;7220:22:1;;;7244:2;7216:31;7212:40;7200:53;;;7268:18;;;7288:22;;;7265:46;7262:72;;;7314:18;;:::i;:::-;7354:10;7350:2;7343:22;7389:2;7381:6;7374:18;7429:7;7424:2;7419;7415;7411:11;7407:20;7404:33;7401:53;;;7450:1;7447;7440:12;7401:53;7506:2;7501;7497;7493:11;7488:2;7480:6;7476:15;7463:46;7551:1;7546:2;7541;7533:6;7529:15;7525:24;7518:35;7572:6;7562:16;;;;;;;6446:1138;;;;;;;:::o;7589:260::-;7657:6;7665;7718:2;7706:9;7697:7;7693:23;7689:32;7686:52;;;7734:1;7731;7724:12;7686:52;7757:29;7776:9;7757:29;:::i;:::-;7747:39;;7805:38;7839:2;7828:9;7824:18;7805:38;:::i;:::-;7795:48;;7589:260;;;;;:::o;8209:410::-;8411:2;8393:21;;;8450:2;8430:18;;;8423:30;8489:34;8484:2;8469:18;;8462:62;-1:-1:-1;;;8555:2:1;8540:18;;8533:44;8609:3;8594:19;;8209:410::o;8624:401::-;8826:2;8808:21;;;8865:2;8845:18;;;8838:30;8904:34;8899:2;8884:18;;8877:62;-1:-1:-1;;;8970:2:1;8955:18;;8948:35;9015:3;9000:19;;8624:401::o;9030:412::-;9232:2;9214:21;;;9271:2;9251:18;;;9244:30;9310:34;9305:2;9290:18;;9283:62;-1:-1:-1;;;9376:2:1;9361:18;;9354:46;9432:3;9417:19;;9030:412::o;9447:127::-;9508:10;9503:3;9499:20;9496:1;9489:31;9539:4;9536:1;9529:15;9563:4;9560:1;9553:15;9579:128;9619:3;9650:1;9646:6;9643:1;9640:13;9637:39;;;9656:18;;:::i;:::-;-1:-1:-1;9692:9:1;;9579:128::o;9712:400::-;9914:2;9896:21;;;9953:2;9933:18;;;9926:30;9992:34;9987:2;9972:18;;9965:62;-1:-1:-1;;;10058:2:1;10043:18;;10036:34;10102:3;10087:19;;9712:400::o;10117:404::-;10319:2;10301:21;;;10358:2;10338:18;;;10331:30;10397:34;10392:2;10377:18;;10370:62;-1:-1:-1;;;10463:2:1;10448:18;;10441:38;10511:3;10496:19;;10117:404::o;10526:380::-;10605:1;10601:12;;;;10648;;;10669:61;;10723:4;10715:6;10711:17;10701:27;;10669:61;10776:2;10768:6;10765:14;10745:18;10742:38;10739:161;;10822:10;10817:3;10813:20;10810:1;10803:31;10857:4;10854:1;10847:15;10885:4;10882:1;10875:15;10739:161;;10526:380;;;:::o;12557:135::-;12596:3;12617:17;;;12614:43;;12637:18;;:::i;:::-;-1:-1:-1;12684:1:1;12673:13;;12557:135::o;14411:399::-;14613:2;14595:21;;;14652:2;14632:18;;;14625:30;14691:34;14686:2;14671:18;;14664:62;-1:-1:-1;;;14757:2:1;14742:18;;14735:33;14800:3;14785:19;;14411:399::o;14815:405::-;15017:2;14999:21;;;15056:2;15036:18;;;15029:30;15095:34;15090:2;15075:18;;15068:62;-1:-1:-1;;;15161:2:1;15146:18;;15139:39;15210:3;15195:19;;14815:405::o;15581:356::-;15783:2;15765:21;;;15802:18;;;15795:30;15861:34;15856:2;15841:18;;15834:62;15928:2;15913:18;;15581:356::o;17937:545::-;18039:2;18034:3;18031:11;18028:448;;;18075:1;18100:5;18096:2;18089:17;18145:4;18141:2;18131:19;18215:2;18203:10;18199:19;18196:1;18192:27;18186:4;18182:38;18251:4;18239:10;18236:20;18233:47;;;-1:-1:-1;18274:4:1;18233:47;18329:2;18324:3;18320:12;18317:1;18313:20;18307:4;18303:31;18293:41;;18384:82;18402:2;18395:5;18392:13;18384:82;;;18447:17;;;18428:1;18417:13;18384:82;;18658:1206;-1:-1:-1;;;;;18777:3:1;18774:27;18771:53;;;18804:18;;:::i;:::-;18833:94;18923:3;18883:38;18915:4;18909:11;18883:38;:::i;:::-;18877:4;18833:94;:::i;:::-;18953:1;18978:2;18973:3;18970:11;18995:1;18990:616;;;;19650:1;19667:3;19664:93;;;-1:-1:-1;19723:19:1;;;19710:33;19664:93;-1:-1:-1;;18615:1:1;18611:11;;;18607:24;18603:29;18593:40;18639:1;18635:11;;;18590:57;19770:78;;18963:895;;18990:616;17884:1;17877:14;;;17921:4;17908:18;;-1:-1:-1;;19026:17:1;;;19127:9;19149:229;19163:7;19160:1;19157:14;19149:229;;;19252:19;;;19239:33;19224:49;;19359:4;19344:20;;;;19312:1;19300:14;;;;19179:12;19149:229;;;19153:3;19406;19397:7;19394:16;19391:159;;;19530:1;19526:6;19520:3;19514;19511:1;19507:11;19503:21;19499:34;19495:39;19482:9;19477:3;19473:19;19460:33;19456:79;19448:6;19441:95;19391:159;;;19593:1;19587:3;19584:1;19580:11;19576:19;19570:4;19563:33;18963:895;;18658:1206;;;:::o;20281:403::-;20483:2;20465:21;;;20522:2;20502:18;;;20495:30;20561:34;20556:2;20541:18;;20534:62;-1:-1:-1;;;20627:2:1;20612:18;;20605:37;20674:3;20659:19;;20281:403::o;21806:184::-;21876:6;21929:2;21917:9;21908:7;21904:23;21900:32;21897:52;;;21945:1;21942;21935:12;21897:52;-1:-1:-1;21968:16:1;;21806:184;-1:-1:-1;21806:184:1:o;22399:127::-;22460:10;22455:3;22451:20;22448:1;22441:31;22491:4;22488:1;22481:15;22515:4;22512:1;22505:15;22531:168;22571:7;22637:1;22633;22629:6;22625:14;22622:1;22619:21;22614:1;22607:9;22600:17;22596:45;22593:71;;;22644:18;;:::i;:::-;-1:-1:-1;22684:9:1;;22531:168::o;22704:127::-;22765:10;22760:3;22756:20;22753:1;22746:31;22796:4;22793:1;22786:15;22820:4;22817:1;22810:15;22836:120;22876:1;22902;22892:35;;22907:18;;:::i;:::-;-1:-1:-1;22941:9:1;;22836:120::o;23240:245::-;23307:6;23360:2;23348:9;23339:7;23335:23;23331:32;23328:52;;;23376:1;23373;23366:12;23328:52;23408:9;23402:16;23427:28;23449:5;23427:28;:::i;23490:415::-;23692:2;23674:21;;;23731:2;23711:18;;;23704:30;23770:34;23765:2;23750:18;;23743:62;-1:-1:-1;;;23836:2:1;23821:18;;23814:49;23895:3;23880:19;;23490:415::o;24678:470::-;24857:3;24895:6;24889:13;24911:53;24957:6;24952:3;24945:4;24937:6;24933:17;24911:53;:::i;:::-;25027:13;;24986:16;;;;25049:57;25027:13;24986:16;25083:4;25071:17;;25049:57;:::i;:::-;25122:20;;24678:470;-1:-1:-1;;;;24678:470:1:o;27614:246::-;27654:4;-1:-1:-1;;;;;27767:10:1;;;;27737;;27789:12;;;27786:38;;;27804:18;;:::i;:::-;27841:13;;27614:246;-1:-1:-1;;;27614:246:1:o;27865:253::-;27905:3;-1:-1:-1;;;;;27994:2:1;27991:1;27987:10;28024:2;28021:1;28017:10;28055:3;28051:2;28047:12;28042:3;28039:21;28036:47;;;28063:18;;:::i;28539:489::-;-1:-1:-1;;;;;28808:15:1;;;28790:34;;28860:15;;28855:2;28840:18;;28833:43;28907:2;28892:18;;28885:34;;;28955:3;28950:2;28935:18;;28928:31;;;28733:4;;28976:46;;29002:19;;28994:6;28976:46;:::i;:::-;28968:54;28539:489;-1:-1:-1;;;;;;28539:489:1:o;29033:249::-;29102:6;29155:2;29143:9;29134:7;29130:23;29126:32;29123:52;;;29171:1;29168;29161:12;29123:52;29203:9;29197:16;29222:30;29246:5;29222:30;:::i;29287:125::-;29327:4;29355:1;29352;29349:8;29346:34;;;29360:18;;:::i;:::-;-1:-1:-1;29397:9:1;;29287:125::o;29417:112::-;29449:1;29475;29465:35;;29480:18;;:::i;:::-;-1:-1:-1;29514:9:1;;29417:112::o
Swarm Source
ipfs://b3fbe67672f2dea683c34706bfeec06591db94f1e2e4e1ef3421c687513e4666
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.