ERC-721
Overview
Max Total Supply
10,000 PNKD
Holders
458
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
44 PNKDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PunkedContract
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-23 */ //-------------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------------------------// 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 Ownable { 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 onlyOwner { 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 onlyOwner { onlyAllowlistMode = true; } function disableAllowlistOnlyMode() public onlyOwner { 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"); _; } } /** TimedDrop.sol * This feature will allow the owner to be able to set timed drops for both the public and allowlist mint (if applicable). * It is bound by the block timestamp. The owner is able to determine if the feature should be used as all * with the "enforcePublicDropTime" and "enforceAllowlistDropTime" variables. If the feature is disabled the implmented * *DropTimePassed() functions will always return true. Otherwise calculation is done to check if time has passed. */ abstract contract TimedDrop is Ownable { bool public enforcePublicDropTime = true; uint256 public publicDropTime = 1656054000; /** * @dev Allow the contract owner to set the public time to mint. * @param _newDropTime timestamp since Epoch in seconds you want public drop to happen */ function setPublicDropTime(uint256 _newDropTime) public onlyOwner { require(_newDropTime > block.timestamp, "Drop date must be in future! Otherwise call disablePublicDropTime!"); publicDropTime = _newDropTime; } function usePublicDropTime() public onlyOwner { enforcePublicDropTime = true; } function disablePublicDropTime() public onlyOwner { enforcePublicDropTime = false; } /** * @dev determine if the public droptime has passed. * if the feature is disabled then assume the time has passed. */ function publicDropTimePassed() public view returns(bool) { if(enforcePublicDropTime == false) { return true; } return block.timestamp >= publicDropTime; } // Allowlist implementation of the Timed Drop feature bool public enforceAllowlistDropTime = true; uint256 public allowlistDropTime = 1655967600; /** * @dev Allow the contract owner to set the allowlist time to mint. * @param _newDropTime timestamp since Epoch in seconds you want public drop to happen */ function setAllowlistDropTime(uint256 _newDropTime) public onlyOwner { require(_newDropTime > block.timestamp, "Drop date must be in future! Otherwise call disableAllowlistDropTime!"); allowlistDropTime = _newDropTime; } function useAllowlistDropTime() public onlyOwner { enforceAllowlistDropTime = true; } function disableAllowlistDropTime() public onlyOwner { enforceAllowlistDropTime = false; } function allowlistDropTimePassed() public view returns(bool) { if(enforceAllowlistDropTime == false) { return true; } return block.timestamp >= allowlistDropTime; } } interface IERC20 { function transfer(address _to, uint256 _amount) external returns (bool); function balanceOf(address account) external view returns (uint256); } abstract contract Withdrawable is Ownable, Ramppable { address[] public payableAddresses = [RAMPPADDRESS,0x2B0661F429202961b764572CBFA5C367B3dcf3a9]; uint256[] public payableFees = [5,95]; uint256 public payableAddressCount = 2; function withdrawAll() public onlyOwner { 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 onlyOwner { 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 Ownable { uint256 public PRICE = 0 ether; function setPrice(uint256 _feeInWei) public onlyOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) public view returns (uint256) { return PRICE * _count; } } abstract contract RamppERC721A is Ownable, ERC721A, Withdrawable, ReentrancyGuard , Feeable , Allowlist , TimedDrop { constructor( string memory tokenName, string memory tokenSymbol ) ERC721A(tokenName, tokenSymbol, 10, 10000) { } uint8 public CONTRACT_VERSION = 2; string public _baseTokenURI = "ipfs://QmcDhu1LU4ShtHiy1bJShJFX3Dob3W63NwT8GK2GKeRo6A/"; bool public mintingOpen = false; uint256 public MAX_WALLET_MINTS = 10; /////////////// 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 onlyOwner{ require(_qty > 0, "Must mint at least 1 token."); require(currentTokenId() + _qty <= collectionSize, "Cannot mint over supply cap of 10000"); _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 10000"); require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!"); require(publicDropTimePassed() == true, "Public drop time has not passed!"); 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(publicDropTimePassed() == true, "Public drop time has not passed!"); require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints"); require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 10000"); require(msg.value == getPrice(_amount), "Value below required mint fee for amount"); _safeMint(_to, _amount, false); } function openMinting() public onlyOwner { mintingOpen = true; } function stopMinting() public onlyOwner { 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 10000"); 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!"); require(allowlistDropTimePassed() == true, "Allowlist drop time has not passed!"); _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 10000"); require(msg.value == getPrice(_amount), "Value below required mint fee for amount"); require(allowlistDropTimePassed() == true, "Allowlist drop time has not passed!"); _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 onlyOwner { enableAllowlistOnlyMode(); mintingOpen = true; } /** * @dev Close allowlist minting fully by disabling both flags * This is a convenience function for the Rampp user */ function closeAllowlistMint() public onlyOwner { 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 onlyOwner { 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 onlyOwner { 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 onlyOwner { _baseTokenURI = baseURI; } function getOwnershipData(uint256 tokenId) external view returns(TokenOwnership memory) { return ownershipOf(tokenId); } } // File: contracts/PunkedContract.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract PunkedContract is RamppERC721A { constructor() RamppERC721A("Punked", "PNKD"){} } //*********************************************************************// //*********************************************************************// // 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":[],"name":"allowlistDropTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistDropTimePassed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_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":"disableAllowlistDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enforceAllowlistDropTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enforcePublicDropTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_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":[],"name":"publicDropTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicDropTimePassed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setAllowlistDropTime","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":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setPublicDropTime","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":"useAllowlistDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usePublicDropTime","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
6000600955600a80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a0908152732b0661f429202961b764572cbfa5c367b3dcf3a960c0526200005f90600b906002620002e2565b506040805180820190915260058152605f60208201526200008590600c9060026200034c565b506002600d8190556000600f556011805461ffff19166101001790556362b560f06012556013805460ff199081166001179091556362b40f70601455601580549091169091179055604080516060810190915260368082526200422760208301398051620000fc916016916020909101906200038f565b506017805460ff19169055600a6018553480156200011957600080fd5b5060405180604001604052806006815260200165141d5b9ad95960d21b81525060405180604001604052806004815260200163141392d160e21b8152508181600a61271062000177620001716200028e60201b60201c565b62000292565b60008111620001e45760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002465760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001db565b83516200025b9060039060208701906200038f565b508251620002719060049060208601906200038f565b5060029190915560805250506001808055600e5550620004609050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280548282559060005260206000209081019282156200033a579160200282015b828111156200033a57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000303565b50620003489291506200040c565b5090565b8280548282559060005260206000209081019282156200033a579160200282015b828111156200033a578251829060ff169055916020019190600101906200036d565b8280546200039d9062000423565b90600052602060002090601f016020900481019282620003c157600085556200033a565b82601f10620003dc57805160ff19168380011785556200033a565b828001600101855582156200033a579182015b828111156200033a578251825591602001919060010190620003ef565b5b808211156200034857600081556001016200040d565b600181811c908216806200043857607f821691505b602082108114156200045a57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613d886200049f600039600081816106af01528181610def015281816114a0015281816116040152818161199b01526123910152613d886000f3fe60806040526004361061041a5760003560e01c806379ab3c891161021e578063c5815c4111610123578063e6928933116100ab578063ee54be961161007a578063ee54be9614610baa578063f2fde38b14610bca578063f703166314610bea578063f8c0fd2014610c0a578063fd19eaf014610c1f57600080fd5b8063e692893314610b12578063e6c6990a14610b27578063e757223014610b41578063e985e9c514610b6157600080fd5b8063d547cfb7116100f2578063d547cfb714610aaa578063d7224ba014610abf578063d8d2412014610ad5578063dcd4aa8b14610aea578063df213e8a14610aff57600080fd5b8063c5815c4114610a40578063c87b56dd14610a60578063caa0f92a14610a80578063cfc86f7b14610a9557600080fd5b80639231ab2a116101a6578063b40ebceb11610175578063b40ebceb146109b6578063b88d4fde146109d6578063bb1876a8146109f6578063bbd8556b14610a0b578063bc05748e14610a2b57600080fd5b80639231ab2a1461091f57806395d89b411461096c578063a22cb46514610981578063afe5608b146109a157600080fd5b80638da5cb5b116101ed5780638da5cb5b146108885780638f4bb497146108a65780638ff4013f146108c057806391b7f5ed146108e057806391c4b5741461090057600080fd5b806379ab3c8914610828578063853828b61461083d578063891bbe73146108525780638d859f3e1461087257600080fd5b80633e3e0b121161032457806355228ca7116102ac5780636ba9fd381161027b5780636ba9fd38146107b65780636d3de806146107cb57806370a08231146107e0578063715018a614610800578063755edd171461081557600080fd5b806355228ca71461074757806355f804b31461076157806358feaa59146107815780636352211e1461079657600080fd5b806345c0f533116102f357806345c0f5331461069d5780634783f0ef146106d15780634ab8b5dd146106f15780634f6ccce714610707578063547520fe1461072757600080fd5b80633e3e0b121461063257806340ccc0821461064757806342842e0e1461066757806344eed8811461068757600080fd5b806323b872dd116103a75780632f745c59116103765780632f745c591461059d57806333006786146105bd57806338b90333146105dd5780633c003254146106095780633e07311c1461061c57600080fd5b806323b872dd14610531578063286c8137146105515780632913daa0146105715780632eb4a7ab1461058757600080fd5b8063081812fc116103ee578063081812fc146104ae578063095ea7b3146104e65780630c863bb61461050657806318160ddd1461041f5780631aa4ba671461051b57600080fd5b80629a9b7b1461041f57806301ffc9a7146104475780630644cefa1461047757806306fdde031461048c575b600080fd5b34801561042b57600080fd5b50610434610c3f565b6040519081526020015b60405180910390f35b34801561045357600080fd5b506104676104623660046134ac565b610c53565b604051901515815260200161043e565b61048a6104853660046134e5565b610cc0565b005b34801561049857600080fd5b506104a1610e76565b60405161043e9190613567565b3480156104ba57600080fd5b506104ce6104c936600461357a565b610f08565b6040516001600160a01b03909116815260200161043e565b3480156104f257600080fd5b5061048a6105013660046134e5565b610f91565b34801561051257600080fd5b506104676110a9565b34801561052757600080fd5b5061043460145481565b34801561053d57600080fd5b5061048a61054c366004613593565b6110cb565b34801561055d57600080fd5b5061043461056c36600461357a565b6110d6565b34801561057d57600080fd5b5061043460025481565b34801561059357600080fd5b5061043460105481565b3480156105a957600080fd5b506104346105b83660046134e5565b6110f7565b3480156105c957600080fd5b506104676105d836600461361a565b61126e565b3480156105e957600080fd5b506015546105f79060ff1681565b60405160ff909116815260200161043e565b61048a61061736600461366c565b611344565b34801561062857600080fd5b50610434600d5481565b34801561063e57600080fd5b5061048a611552565b34801561065357600080fd5b5061048a6106623660046134e5565b611588565b34801561067357600080fd5b5061048a610682366004613593565b611660565b34801561069357600080fd5b5061043460125481565b3480156106a957600080fd5b506104347f000000000000000000000000000000000000000000000000000000000000000081565b3480156106dd57600080fd5b5061048a6106ec36600461357a565b61167b565b3480156106fd57600080fd5b5061043460185481565b34801561071357600080fd5b5061043461072236600461357a565b6116fc565b34801561073357600080fd5b5061048a61074236600461357a565b611764565b34801561075357600080fd5b506013546104679060ff1681565b34801561076d57600080fd5b5061048a61077c3660046136c5565b6117e4565b34801561078d57600080fd5b5061048a61181a565b3480156107a257600080fd5b506104ce6107b136600461357a565b611851565b3480156107c257600080fd5b5061048a611863565b3480156107d757600080fd5b5061048a61189c565b3480156107ec57600080fd5b506104346107fb366004613736565b6118d2565b34801561080c57600080fd5b5061048a611963565b61048a610823366004613736565b611999565b34801561083457600080fd5b5061048a611ace565b34801561084957600080fd5b5061048a611b07565b34801561085e57600080fd5b506104ce61086d36600461357a565b611b46565b34801561087e57600080fd5b50610434600f5481565b34801561089457600080fd5b506000546001600160a01b03166104ce565b3480156108b257600080fd5b506017546104679060ff1681565b3480156108cc57600080fd5b5061048a6108db36600461357a565b611b70565b3480156108ec57600080fd5b5061048a6108fb36600461357a565b611c00565b34801561090c57600080fd5b5060115461046790610100900460ff1681565b34801561092b57600080fd5b5061093f61093a36600461357a565b611c2f565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161043e565b34801561097857600080fd5b506104a1611c4c565b34801561098d57600080fd5b5061048a61099c36600461375f565b611c5b565b3480156109ad57600080fd5b5061048a611d20565b3480156109c257600080fd5b5061048a6109d13660046134e5565b611d52565b3480156109e257600080fd5b5061048a6109f13660046137ac565b611f71565b348015610a0257600080fd5b5061048a611fa4565b348015610a1757600080fd5b5061048a610a26366004613736565b611fda565b348015610a3757600080fd5b5061048a612107565b348015610a4c57600080fd5b50600a546104ce906001600160a01b031681565b348015610a6c57600080fd5b506104a1610a7b36600461357a565b612142565b348015610a8c57600080fd5b506104346121a0565b348015610aa157600080fd5b506104a16121ba565b348015610ab657600080fd5b506104a1612248565b348015610acb57600080fd5b5061043460095481565b348015610ae157600080fd5b50610467612257565b348015610af657600080fd5b5061048a612274565b61048a610b0d36600461361a565b6122ce565b348015610b1e57600080fd5b5061048a61245b565b348015610b3357600080fd5b506011546104679060ff1681565b348015610b4d57600080fd5b50610434610b5c36600461357a565b612494565b348015610b6d57600080fd5b50610467610b7c366004613887565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610bb657600080fd5b5061048a610bc536600461357a565b6124a4565b348015610bd657600080fd5b5061048a610be5366004613736565b612553565b348015610bf657600080fd5b5061048a610c0536600461357a565b6125eb565b348015610c1657600080fd5b5061048a61269d565b348015610c2b57600080fd5b50610467610c3a3660046134e5565b6126cf565b6000610c4e6001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610c8457506001600160e01b03198216635b5e139f60e01b145b80610c9f57506001600160e01b0319821663780e9d6360e01b145b80610cba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610d165760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600254811115610d385760405162461bcd60e51b8152600401610d0d906138ba565b60175460ff1615156001148015610d52575060115460ff16155b610d6e5760405162461bcd60e51b8152600401610d0d90613908565b610d766110a9565b1515600114610dc75760405162461bcd60e51b815260206004820181905260248201527f5075626c69632064726f702074696d6520686173206e6f7420706173736564216044820152606401610d0d565b610dd182826126cf565b610ded5760405162461bcd60e51b8152600401610d0d9061394d565b7f000000000000000000000000000000000000000000000000000000000000000081610e17610c3f565b610e2191906139b3565b1115610e3f5760405162461bcd60e51b8152600401610d0d906139cb565b610e4881612494565b3414610e665760405162461bcd60e51b8152600401610d0d90613a0f565b610e7282826000612754565b5050565b606060038054610e8590613a57565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190613a57565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b6000610f138261276f565b610f755760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610d0d565b506000908152600760205260409020546001600160a01b031690565b6000610f9c82611851565b9050806001600160a01b0316836001600160a01b0316141561100b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610d0d565b336001600160a01b038216148061102757506110278133610b7c565b6110995760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610d0d565b6110a4838383612785565b505050565b601154600090610100900460ff166110c15750600190565b5060125442101590565b6110a48383836127e1565b600c81815481106110e657600080fd5b600091825260209091200154905081565b6000611102836118d2565b821061115b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610d0d565b6000611165610c3f565b905060008060005b8381101561120e576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156111bf57805192505b876001600160a01b0316836001600160a01b031614156111fb57868414156111ed57509350610cba92505050565b836111f781613a92565b9450505b508061120681613a92565b91505061116d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610d0d565b6010546000906112c05760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610d0d565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061133b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050612b64565b95945050505050565b60115460ff1615156001148015611362575060175460ff1615156001145b6113ae5760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610d0d565b6113b984838361126e565b6114055760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610d0d565b60018310156114565760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610d0d565b6002548311156114785760405162461bcd60e51b8152600401610d0d906138ba565b61148284846126cf565b61149e5760405162461bcd60e51b8152600401610d0d9061394d565b7f0000000000000000000000000000000000000000000000000000000000000000836114c8610c3f565b6114d291906139b3565b11156114f05760405162461bcd60e51b8152600401610d0d906139cb565b6114f983612494565b34146115175760405162461bcd60e51b8152600401610d0d90613a0f565b61151f612257565b15156001146115405760405162461bcd60e51b8152600401610d0d90613aad565b61154c84846000612754565b50505050565b6000546001600160a01b0316331461157c5760405162461bcd60e51b8152600401610d0d90613af0565b6017805460ff19169055565b6000546001600160a01b031633146115b25760405162461bcd60e51b8152600401610d0d90613af0565b600081116116025760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610d0d565b7f00000000000000000000000000000000000000000000000000000000000000008161162c610c3f565b61163691906139b3565b11156116545760405162461bcd60e51b8152600401610d0d906139cb565b610e7282826001612754565b6110a483838360405180602001604052806000815250611f71565b6000546001600160a01b031633146116a55760405162461bcd60e51b8152600401610d0d90613af0565b6010548114156116f75760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610d0d565b601055565b6000611706610c3f565b82106117605760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610d0d565b5090565b6000546001600160a01b0316331461178e5760405162461bcd60e51b8152600401610d0d90613af0565b60018110156117df5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610d0d565b600255565b6000546001600160a01b0316331461180e5760405162461bcd60e51b8152600401610d0d90613af0565b6110a460168383613406565b6000546001600160a01b031633146118445760405162461bcd60e51b8152600401610d0d90613af0565b6011805461ff0019169055565b600061185c82612b7a565b5192915050565b6000546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610d0d90613af0565b6017805460ff19166001179055565b6000546001600160a01b031633146118c65760405162461bcd60e51b8152600401610d0d90613af0565b6011805460ff19169055565b60006001600160a01b03821661193e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610d0d565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b0316331461198d5760405162461bcd60e51b8152600401610d0d90613af0565b6119976000612ca8565b565b7f00000000000000000000000000000000000000000000000000000000000000006119c26121a0565b11156119e05760405162461bcd60e51b8152600401610d0d906139cb565b60175460ff16151560011480156119fa575060115460ff16155b611a165760405162461bcd60e51b8152600401610d0d90613908565b611a1e6110a9565b1515600114611a6f5760405162461bcd60e51b815260206004820181905260248201527f5075626c69632064726f702074696d6520686173206e6f7420706173736564216044820152606401610d0d565b611a7a8160016126cf565b611a965760405162461bcd60e51b8152600401610d0d9061394d565b611aa06001612494565b3414611abe5760405162461bcd60e51b8152600401610d0d90613b25565b611acb8160016000612754565b50565b6000546001600160a01b03163314611af85760405162461bcd60e51b8152600401610d0d90613af0565b6011805460ff19166001179055565b6000546001600160a01b03163314611b315760405162461bcd60e51b8152600401610d0d90613af0565b60004711611b3e57600080fd5b611997612cf8565b600b8181548110611b5657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314611b9a5760405162461bcd60e51b8152600401610d0d90613af0565b6001811015611bfb5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610d0d565b601855565b6000546001600160a01b03163314611c2a5760405162461bcd60e51b8152600401610d0d90613af0565b600f55565b6040805180820190915260008082526020820152610cba82612b7a565b606060048054610e8590613a57565b6001600160a01b038216331415611cb45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610d0d565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611d4a5760405162461bcd60e51b8152600401610d0d90613af0565b61157c61189c565b6000546001600160a01b03163314611d7c5760405162461bcd60e51b8152600401610d0d90613af0565b60008111611d8957600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611dcc57600080fd5b505afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190613b6c565b1015611e5e5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610d0d565b60005b600d5481101561154c57816001600160a01b031663a9059cbb600b8381548110611e8d57611e8d613b85565b9060005260206000200160009054906101000a90046001600160a01b03166064600c8581548110611ec057611ec0613b85565b906000526020600020015487611ed69190613b9b565b611ee09190613bd0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611f2657600080fd5b505af1158015611f3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5e9190613be4565b5080611f6981613a92565b915050611e61565b611f7c8484846127e1565b611f8884848484612d86565b61154c5760405162461bcd60e51b8152600401610d0d90613c01565b6000546001600160a01b03163314611fce5760405162461bcd60e51b8152600401610d0d90613af0565b6013805460ff19169055565b600a546001600160a01b031633146120345760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610d0d565b600a546001600160a01b03828116911614156120a55760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610d0d565b600a80546001600160a01b0319166001600160a01b038316179055600b80548291906000906120d6576120d6613b85565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000546001600160a01b031633146121315760405162461bcd60e51b8152600401610d0d90613af0565b6011805461ff001916610100179055565b6060600061214e612248565b9050600081511161216e5760405180602001604052806000815250612199565b8061217884612e94565b604051602001612189929190613c54565b6040516020818303038152906040525b9392505050565b60006121af6001546000190190565b610c4e9060016139b3565b601680546121c790613a57565b80601f01602080910402602001604051908101604052809291908181526020018280546121f390613a57565b80156122405780601f1061221557610100808354040283529160200191612240565b820191906000526020600020905b81548152906001019060200180831161222357829003601f168201915b505050505081565b606060168054610e8590613a57565b60135460009060ff1661226a5750600190565b5060145442101590565b600a546001600160a01b03163314611b315760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610d0d565b60115460ff16151560011480156122ec575060175460ff1615156001145b6123385760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610d0d565b61234383838361126e565b61238f5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610d0d565b7f00000000000000000000000000000000000000000000000000000000000000006123b86121a0565b11156123d65760405162461bcd60e51b8152600401610d0d906139cb565b6123e18360016126cf565b6123fd5760405162461bcd60e51b8152600401610d0d9061394d565b6124076001612494565b34146124255760405162461bcd60e51b8152600401610d0d90613b25565b61242d612257565b151560011461244e5760405162461bcd60e51b8152600401610d0d90613aad565b6110a48360016000612754565b6000546001600160a01b031633146124855760405162461bcd60e51b8152600401610d0d90613af0565b6013805460ff19166001179055565b600081600f54610cba9190613b9b565b6000546001600160a01b031633146124ce5760405162461bcd60e51b8152600401610d0d90613af0565b42811161254e5760405162461bcd60e51b815260206004820152604260248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c655075626c696344726f7054696d606482015261652160f01b608482015260a401610d0d565b601255565b6000546001600160a01b0316331461257d5760405162461bcd60e51b8152600401610d0d90613af0565b6001600160a01b0381166125e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d0d565b611acb81612ca8565b6000546001600160a01b031633146126155760405162461bcd60e51b8152600401610d0d90613af0565b4281116126985760405162461bcd60e51b815260206004820152604560248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c65416c6c6f776c69737444726f7060648201526454696d652160d81b608482015260a401610d0d565b601455565b6000546001600160a01b031633146126c75760405162461bcd60e51b8152600401610d0d90613af0565b61188d611ace565b600060018210156127345760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610d0d565b6018548261274185612f91565b61274b91906139b3565b11159392505050565b6110a48383836040518060200160405280600081525061302f565b600081600111158015610cba5750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006127ec82612b7a565b80519091506000906001600160a01b0316336001600160a01b0316148061282357503361281884610f08565b6001600160a01b0316145b80612835575081516128359033610b7c565b90508061289f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610d0d565b846001600160a01b031682600001516001600160a01b0316146129135760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610d0d565b6001600160a01b0384166129775760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610d0d565b6129876000848460000151612785565b6001600160a01b03851660009081526006602052604081208054600192906129b99084906001600160801b0316613c83565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092612a0591859116613cab565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a8c8460016139b3565b6000818152600560205260409020549091506001600160a01b0316612b1b57612ab48161276f565b15612b1b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600082612b7185846132fc565b14949350505050565b60408051808201909152600080825260208201528180600111158015612ba1575060015481105b15612c48576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612bf2579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612c43579392505050565b612bf2565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610d0d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610e7257612d74600b8281548110612d1c57612d1c613b85565b9060005260206000200160009054906101000a90046001600160a01b03166064600c8481548110612d4f57612d4f613b85565b906000526020600020015485612d659190613b9b565b612d6f9190613bd0565b613370565b80612d7e81613a92565b915050612cfc565b60006001600160a01b0384163b15612e8857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dca903390899088908890600401613ccd565b602060405180830381600087803b158015612de457600080fd5b505af1925050508015612e14575060408051601f3d908101601f19168201909252612e1191810190613d0a565b60015b612e6e573d808015612e42576040519150601f19603f3d011682016040523d82523d6000602084013e612e47565b606091505b508051612e665760405162461bcd60e51b8152600401610d0d90613c01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e8c565b5060015b949350505050565b606081612eb85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ee25780612ecc81613a92565b9150612edb9050600a83613bd0565b9150612ebc565b6000816001600160401b03811115612efc57612efc613796565b6040519080825280601f01601f191660200182016040528015612f26576020820181803683370190505b5090505b8415612e8c57612f3b600183613d27565b9150612f48600a86613d3e565b612f539060306139b3565b60f81b818381518110612f6857612f68613b85565b60200101906001600160f81b031916908160001a905350612f8a600a86613bd0565b9450612f2a565b60006001600160a01b0382166130035760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610d0d565b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0385166130925760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610d0d565b61309b8161276f565b156130e85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610d0d565b8261314a5760025484111561314a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610d0d565b6001600160a01b0385166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906131a6908890613cab565b6001600160801b03168152602001856131bf57866131c2565b60005b83602001516131d19190613cab565b6001600160801b039081169091526001600160a01b0380891660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156132f05760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132b46000898488612d86565b6132d05760405162461bcd60e51b8152600401610d0d90613c01565b816132da81613a92565b92505080806132e890613a92565b915050613267565b50600155505050505050565b600081815b845181101561336857600085828151811061331e5761331e613b85565b602002602001015190508083116133445760008381526020829052604090209250613355565b600081815260208490526040902092505b508061336081613a92565b915050613301565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146133bd576040519150601f19603f3d011682016040523d82523d6000602084013e6133c2565b606091505b50509050806110a45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610d0d565b82805461341290613a57565b90600052602060002090601f016020900481019282613434576000855561347a565b82601f1061344d5782800160ff1982351617855561347a565b8280016001018555821561347a579182015b8281111561347a57823582559160200191906001019061345f565b506117609291505b808211156117605760008155600101613482565b6001600160e01b031981168114611acb57600080fd5b6000602082840312156134be57600080fd5b813561219981613496565b80356001600160a01b03811681146134e057600080fd5b919050565b600080604083850312156134f857600080fd5b613501836134c9565b946020939093013593505050565b60005b8381101561352a578181015183820152602001613512565b8381111561154c5750506000910152565b6000815180845261355381602086016020860161350f565b601f01601f19169290920160200192915050565b602081526000612199602083018461353b565b60006020828403121561358c57600080fd5b5035919050565b6000806000606084860312156135a857600080fd5b6135b1846134c9565b92506135bf602085016134c9565b9150604084013590509250925092565b60008083601f8401126135e157600080fd5b5081356001600160401b038111156135f857600080fd5b6020830191508360208260051b850101111561361357600080fd5b9250929050565b60008060006040848603121561362f57600080fd5b613638846134c9565b925060208401356001600160401b0381111561365357600080fd5b61365f868287016135cf565b9497909650939450505050565b6000806000806060858703121561368257600080fd5b61368b856134c9565b93506020850135925060408501356001600160401b038111156136ad57600080fd5b6136b9878288016135cf565b95989497509550505050565b600080602083850312156136d857600080fd5b82356001600160401b03808211156136ef57600080fd5b818501915085601f83011261370357600080fd5b81358181111561371257600080fd5b86602082850101111561372457600080fd5b60209290920196919550909350505050565b60006020828403121561374857600080fd5b612199826134c9565b8015158114611acb57600080fd5b6000806040838503121561377257600080fd5b61377b836134c9565b9150602083013561378b81613751565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156137c257600080fd5b6137cb856134c9565b93506137d9602086016134c9565b92506040850135915060608501356001600160401b03808211156137fc57600080fd5b818701915087601f83011261381057600080fd5b81358181111561382257613822613796565b604051601f8201601f19908116603f0116810190838211818310171561384a5761384a613796565b816040528281528a602084870101111561386357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561389a57600080fd5b6138a3836134c9565b91506138b1602084016134c9565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156139c6576139c661399d565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316040820152630303030360e41b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c90821680613a6b57607f821691505b60208210811415613a8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613aa657613aa661399d565b5060010190565b60208082526023908201527f416c6c6f776c6973742064726f702074696d6520686173206e6f74207061737360408201526265642160e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b7e57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613bb557613bb561399d565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bdf57613bdf613bba565b500490565b600060208284031215613bf657600080fd5b815161219981613751565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c6681846020880161350f565b835190830190613c7a81836020880161350f565b01949350505050565b60006001600160801b0383811690831681811015613ca357613ca361399d565b039392505050565b60006001600160801b03808316818516808303821115613c7a57613c7a61399d565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d009083018461353b565b9695505050505050565b600060208284031215613d1c57600080fd5b815161219981613496565b600082821015613d3957613d3961399d565b500390565b600082613d4d57613d4d613bba565b50069056fea2646970667358221220fc43bc979de1c588fb7937a9f2115ed5a5491af87f3e8d842f621abaaddc0f2264736f6c63430008090033697066733a2f2f516d63446875314c553453687448697931624a53684a465833446f62335736334e775438474b32474b65526f36412f0000000000000000000000002b0661f429202961b764572cbfa5c367b3dcf3a9
Deployed Bytecode
0x60806040526004361061041a5760003560e01c806379ab3c891161021e578063c5815c4111610123578063e6928933116100ab578063ee54be961161007a578063ee54be9614610baa578063f2fde38b14610bca578063f703166314610bea578063f8c0fd2014610c0a578063fd19eaf014610c1f57600080fd5b8063e692893314610b12578063e6c6990a14610b27578063e757223014610b41578063e985e9c514610b6157600080fd5b8063d547cfb7116100f2578063d547cfb714610aaa578063d7224ba014610abf578063d8d2412014610ad5578063dcd4aa8b14610aea578063df213e8a14610aff57600080fd5b8063c5815c4114610a40578063c87b56dd14610a60578063caa0f92a14610a80578063cfc86f7b14610a9557600080fd5b80639231ab2a116101a6578063b40ebceb11610175578063b40ebceb146109b6578063b88d4fde146109d6578063bb1876a8146109f6578063bbd8556b14610a0b578063bc05748e14610a2b57600080fd5b80639231ab2a1461091f57806395d89b411461096c578063a22cb46514610981578063afe5608b146109a157600080fd5b80638da5cb5b116101ed5780638da5cb5b146108885780638f4bb497146108a65780638ff4013f146108c057806391b7f5ed146108e057806391c4b5741461090057600080fd5b806379ab3c8914610828578063853828b61461083d578063891bbe73146108525780638d859f3e1461087257600080fd5b80633e3e0b121161032457806355228ca7116102ac5780636ba9fd381161027b5780636ba9fd38146107b65780636d3de806146107cb57806370a08231146107e0578063715018a614610800578063755edd171461081557600080fd5b806355228ca71461074757806355f804b31461076157806358feaa59146107815780636352211e1461079657600080fd5b806345c0f533116102f357806345c0f5331461069d5780634783f0ef146106d15780634ab8b5dd146106f15780634f6ccce714610707578063547520fe1461072757600080fd5b80633e3e0b121461063257806340ccc0821461064757806342842e0e1461066757806344eed8811461068757600080fd5b806323b872dd116103a75780632f745c59116103765780632f745c591461059d57806333006786146105bd57806338b90333146105dd5780633c003254146106095780633e07311c1461061c57600080fd5b806323b872dd14610531578063286c8137146105515780632913daa0146105715780632eb4a7ab1461058757600080fd5b8063081812fc116103ee578063081812fc146104ae578063095ea7b3146104e65780630c863bb61461050657806318160ddd1461041f5780631aa4ba671461051b57600080fd5b80629a9b7b1461041f57806301ffc9a7146104475780630644cefa1461047757806306fdde031461048c575b600080fd5b34801561042b57600080fd5b50610434610c3f565b6040519081526020015b60405180910390f35b34801561045357600080fd5b506104676104623660046134ac565b610c53565b604051901515815260200161043e565b61048a6104853660046134e5565b610cc0565b005b34801561049857600080fd5b506104a1610e76565b60405161043e9190613567565b3480156104ba57600080fd5b506104ce6104c936600461357a565b610f08565b6040516001600160a01b03909116815260200161043e565b3480156104f257600080fd5b5061048a6105013660046134e5565b610f91565b34801561051257600080fd5b506104676110a9565b34801561052757600080fd5b5061043460145481565b34801561053d57600080fd5b5061048a61054c366004613593565b6110cb565b34801561055d57600080fd5b5061043461056c36600461357a565b6110d6565b34801561057d57600080fd5b5061043460025481565b34801561059357600080fd5b5061043460105481565b3480156105a957600080fd5b506104346105b83660046134e5565b6110f7565b3480156105c957600080fd5b506104676105d836600461361a565b61126e565b3480156105e957600080fd5b506015546105f79060ff1681565b60405160ff909116815260200161043e565b61048a61061736600461366c565b611344565b34801561062857600080fd5b50610434600d5481565b34801561063e57600080fd5b5061048a611552565b34801561065357600080fd5b5061048a6106623660046134e5565b611588565b34801561067357600080fd5b5061048a610682366004613593565b611660565b34801561069357600080fd5b5061043460125481565b3480156106a957600080fd5b506104347f000000000000000000000000000000000000000000000000000000000000271081565b3480156106dd57600080fd5b5061048a6106ec36600461357a565b61167b565b3480156106fd57600080fd5b5061043460185481565b34801561071357600080fd5b5061043461072236600461357a565b6116fc565b34801561073357600080fd5b5061048a61074236600461357a565b611764565b34801561075357600080fd5b506013546104679060ff1681565b34801561076d57600080fd5b5061048a61077c3660046136c5565b6117e4565b34801561078d57600080fd5b5061048a61181a565b3480156107a257600080fd5b506104ce6107b136600461357a565b611851565b3480156107c257600080fd5b5061048a611863565b3480156107d757600080fd5b5061048a61189c565b3480156107ec57600080fd5b506104346107fb366004613736565b6118d2565b34801561080c57600080fd5b5061048a611963565b61048a610823366004613736565b611999565b34801561083457600080fd5b5061048a611ace565b34801561084957600080fd5b5061048a611b07565b34801561085e57600080fd5b506104ce61086d36600461357a565b611b46565b34801561087e57600080fd5b50610434600f5481565b34801561089457600080fd5b506000546001600160a01b03166104ce565b3480156108b257600080fd5b506017546104679060ff1681565b3480156108cc57600080fd5b5061048a6108db36600461357a565b611b70565b3480156108ec57600080fd5b5061048a6108fb36600461357a565b611c00565b34801561090c57600080fd5b5060115461046790610100900460ff1681565b34801561092b57600080fd5b5061093f61093a36600461357a565b611c2f565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161043e565b34801561097857600080fd5b506104a1611c4c565b34801561098d57600080fd5b5061048a61099c36600461375f565b611c5b565b3480156109ad57600080fd5b5061048a611d20565b3480156109c257600080fd5b5061048a6109d13660046134e5565b611d52565b3480156109e257600080fd5b5061048a6109f13660046137ac565b611f71565b348015610a0257600080fd5b5061048a611fa4565b348015610a1757600080fd5b5061048a610a26366004613736565b611fda565b348015610a3757600080fd5b5061048a612107565b348015610a4c57600080fd5b50600a546104ce906001600160a01b031681565b348015610a6c57600080fd5b506104a1610a7b36600461357a565b612142565b348015610a8c57600080fd5b506104346121a0565b348015610aa157600080fd5b506104a16121ba565b348015610ab657600080fd5b506104a1612248565b348015610acb57600080fd5b5061043460095481565b348015610ae157600080fd5b50610467612257565b348015610af657600080fd5b5061048a612274565b61048a610b0d36600461361a565b6122ce565b348015610b1e57600080fd5b5061048a61245b565b348015610b3357600080fd5b506011546104679060ff1681565b348015610b4d57600080fd5b50610434610b5c36600461357a565b612494565b348015610b6d57600080fd5b50610467610b7c366004613887565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610bb657600080fd5b5061048a610bc536600461357a565b6124a4565b348015610bd657600080fd5b5061048a610be5366004613736565b612553565b348015610bf657600080fd5b5061048a610c0536600461357a565b6125eb565b348015610c1657600080fd5b5061048a61269d565b348015610c2b57600080fd5b50610467610c3a3660046134e5565b6126cf565b6000610c4e6001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610c8457506001600160e01b03198216635b5e139f60e01b145b80610c9f57506001600160e01b0319821663780e9d6360e01b145b80610cba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610d165760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600254811115610d385760405162461bcd60e51b8152600401610d0d906138ba565b60175460ff1615156001148015610d52575060115460ff16155b610d6e5760405162461bcd60e51b8152600401610d0d90613908565b610d766110a9565b1515600114610dc75760405162461bcd60e51b815260206004820181905260248201527f5075626c69632064726f702074696d6520686173206e6f7420706173736564216044820152606401610d0d565b610dd182826126cf565b610ded5760405162461bcd60e51b8152600401610d0d9061394d565b7f000000000000000000000000000000000000000000000000000000000000271081610e17610c3f565b610e2191906139b3565b1115610e3f5760405162461bcd60e51b8152600401610d0d906139cb565b610e4881612494565b3414610e665760405162461bcd60e51b8152600401610d0d90613a0f565b610e7282826000612754565b5050565b606060038054610e8590613a57565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190613a57565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b6000610f138261276f565b610f755760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610d0d565b506000908152600760205260409020546001600160a01b031690565b6000610f9c82611851565b9050806001600160a01b0316836001600160a01b0316141561100b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610d0d565b336001600160a01b038216148061102757506110278133610b7c565b6110995760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610d0d565b6110a4838383612785565b505050565b601154600090610100900460ff166110c15750600190565b5060125442101590565b6110a48383836127e1565b600c81815481106110e657600080fd5b600091825260209091200154905081565b6000611102836118d2565b821061115b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610d0d565b6000611165610c3f565b905060008060005b8381101561120e576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156111bf57805192505b876001600160a01b0316836001600160a01b031614156111fb57868414156111ed57509350610cba92505050565b836111f781613a92565b9450505b508061120681613a92565b91505061116d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610d0d565b6010546000906112c05760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610d0d565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061133b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050612b64565b95945050505050565b60115460ff1615156001148015611362575060175460ff1615156001145b6113ae5760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610d0d565b6113b984838361126e565b6114055760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610d0d565b60018310156114565760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610d0d565b6002548311156114785760405162461bcd60e51b8152600401610d0d906138ba565b61148284846126cf565b61149e5760405162461bcd60e51b8152600401610d0d9061394d565b7f0000000000000000000000000000000000000000000000000000000000002710836114c8610c3f565b6114d291906139b3565b11156114f05760405162461bcd60e51b8152600401610d0d906139cb565b6114f983612494565b34146115175760405162461bcd60e51b8152600401610d0d90613a0f565b61151f612257565b15156001146115405760405162461bcd60e51b8152600401610d0d90613aad565b61154c84846000612754565b50505050565b6000546001600160a01b0316331461157c5760405162461bcd60e51b8152600401610d0d90613af0565b6017805460ff19169055565b6000546001600160a01b031633146115b25760405162461bcd60e51b8152600401610d0d90613af0565b600081116116025760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610d0d565b7f00000000000000000000000000000000000000000000000000000000000027108161162c610c3f565b61163691906139b3565b11156116545760405162461bcd60e51b8152600401610d0d906139cb565b610e7282826001612754565b6110a483838360405180602001604052806000815250611f71565b6000546001600160a01b031633146116a55760405162461bcd60e51b8152600401610d0d90613af0565b6010548114156116f75760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610d0d565b601055565b6000611706610c3f565b82106117605760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610d0d565b5090565b6000546001600160a01b0316331461178e5760405162461bcd60e51b8152600401610d0d90613af0565b60018110156117df5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610d0d565b600255565b6000546001600160a01b0316331461180e5760405162461bcd60e51b8152600401610d0d90613af0565b6110a460168383613406565b6000546001600160a01b031633146118445760405162461bcd60e51b8152600401610d0d90613af0565b6011805461ff0019169055565b600061185c82612b7a565b5192915050565b6000546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610d0d90613af0565b6017805460ff19166001179055565b6000546001600160a01b031633146118c65760405162461bcd60e51b8152600401610d0d90613af0565b6011805460ff19169055565b60006001600160a01b03821661193e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610d0d565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b0316331461198d5760405162461bcd60e51b8152600401610d0d90613af0565b6119976000612ca8565b565b7f00000000000000000000000000000000000000000000000000000000000027106119c26121a0565b11156119e05760405162461bcd60e51b8152600401610d0d906139cb565b60175460ff16151560011480156119fa575060115460ff16155b611a165760405162461bcd60e51b8152600401610d0d90613908565b611a1e6110a9565b1515600114611a6f5760405162461bcd60e51b815260206004820181905260248201527f5075626c69632064726f702074696d6520686173206e6f7420706173736564216044820152606401610d0d565b611a7a8160016126cf565b611a965760405162461bcd60e51b8152600401610d0d9061394d565b611aa06001612494565b3414611abe5760405162461bcd60e51b8152600401610d0d90613b25565b611acb8160016000612754565b50565b6000546001600160a01b03163314611af85760405162461bcd60e51b8152600401610d0d90613af0565b6011805460ff19166001179055565b6000546001600160a01b03163314611b315760405162461bcd60e51b8152600401610d0d90613af0565b60004711611b3e57600080fd5b611997612cf8565b600b8181548110611b5657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314611b9a5760405162461bcd60e51b8152600401610d0d90613af0565b6001811015611bfb5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610d0d565b601855565b6000546001600160a01b03163314611c2a5760405162461bcd60e51b8152600401610d0d90613af0565b600f55565b6040805180820190915260008082526020820152610cba82612b7a565b606060048054610e8590613a57565b6001600160a01b038216331415611cb45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610d0d565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611d4a5760405162461bcd60e51b8152600401610d0d90613af0565b61157c61189c565b6000546001600160a01b03163314611d7c5760405162461bcd60e51b8152600401610d0d90613af0565b60008111611d8957600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611dcc57600080fd5b505afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190613b6c565b1015611e5e5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610d0d565b60005b600d5481101561154c57816001600160a01b031663a9059cbb600b8381548110611e8d57611e8d613b85565b9060005260206000200160009054906101000a90046001600160a01b03166064600c8581548110611ec057611ec0613b85565b906000526020600020015487611ed69190613b9b565b611ee09190613bd0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611f2657600080fd5b505af1158015611f3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5e9190613be4565b5080611f6981613a92565b915050611e61565b611f7c8484846127e1565b611f8884848484612d86565b61154c5760405162461bcd60e51b8152600401610d0d90613c01565b6000546001600160a01b03163314611fce5760405162461bcd60e51b8152600401610d0d90613af0565b6013805460ff19169055565b600a546001600160a01b031633146120345760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610d0d565b600a546001600160a01b03828116911614156120a55760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610d0d565b600a80546001600160a01b0319166001600160a01b038316179055600b80548291906000906120d6576120d6613b85565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000546001600160a01b031633146121315760405162461bcd60e51b8152600401610d0d90613af0565b6011805461ff001916610100179055565b6060600061214e612248565b9050600081511161216e5760405180602001604052806000815250612199565b8061217884612e94565b604051602001612189929190613c54565b6040516020818303038152906040525b9392505050565b60006121af6001546000190190565b610c4e9060016139b3565b601680546121c790613a57565b80601f01602080910402602001604051908101604052809291908181526020018280546121f390613a57565b80156122405780601f1061221557610100808354040283529160200191612240565b820191906000526020600020905b81548152906001019060200180831161222357829003601f168201915b505050505081565b606060168054610e8590613a57565b60135460009060ff1661226a5750600190565b5060145442101590565b600a546001600160a01b03163314611b315760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610d0d565b60115460ff16151560011480156122ec575060175460ff1615156001145b6123385760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610d0d565b61234383838361126e565b61238f5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610d0d565b7f00000000000000000000000000000000000000000000000000000000000027106123b86121a0565b11156123d65760405162461bcd60e51b8152600401610d0d906139cb565b6123e18360016126cf565b6123fd5760405162461bcd60e51b8152600401610d0d9061394d565b6124076001612494565b34146124255760405162461bcd60e51b8152600401610d0d90613b25565b61242d612257565b151560011461244e5760405162461bcd60e51b8152600401610d0d90613aad565b6110a48360016000612754565b6000546001600160a01b031633146124855760405162461bcd60e51b8152600401610d0d90613af0565b6013805460ff19166001179055565b600081600f54610cba9190613b9b565b6000546001600160a01b031633146124ce5760405162461bcd60e51b8152600401610d0d90613af0565b42811161254e5760405162461bcd60e51b815260206004820152604260248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c655075626c696344726f7054696d606482015261652160f01b608482015260a401610d0d565b601255565b6000546001600160a01b0316331461257d5760405162461bcd60e51b8152600401610d0d90613af0565b6001600160a01b0381166125e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d0d565b611acb81612ca8565b6000546001600160a01b031633146126155760405162461bcd60e51b8152600401610d0d90613af0565b4281116126985760405162461bcd60e51b815260206004820152604560248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c65416c6c6f776c69737444726f7060648201526454696d652160d81b608482015260a401610d0d565b601455565b6000546001600160a01b031633146126c75760405162461bcd60e51b8152600401610d0d90613af0565b61188d611ace565b600060018210156127345760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610d0d565b6018548261274185612f91565b61274b91906139b3565b11159392505050565b6110a48383836040518060200160405280600081525061302f565b600081600111158015610cba5750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006127ec82612b7a565b80519091506000906001600160a01b0316336001600160a01b0316148061282357503361281884610f08565b6001600160a01b0316145b80612835575081516128359033610b7c565b90508061289f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610d0d565b846001600160a01b031682600001516001600160a01b0316146129135760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610d0d565b6001600160a01b0384166129775760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610d0d565b6129876000848460000151612785565b6001600160a01b03851660009081526006602052604081208054600192906129b99084906001600160801b0316613c83565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092612a0591859116613cab565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a8c8460016139b3565b6000818152600560205260409020549091506001600160a01b0316612b1b57612ab48161276f565b15612b1b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600082612b7185846132fc565b14949350505050565b60408051808201909152600080825260208201528180600111158015612ba1575060015481105b15612c48576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612bf2579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612c43579392505050565b612bf2565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610d0d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610e7257612d74600b8281548110612d1c57612d1c613b85565b9060005260206000200160009054906101000a90046001600160a01b03166064600c8481548110612d4f57612d4f613b85565b906000526020600020015485612d659190613b9b565b612d6f9190613bd0565b613370565b80612d7e81613a92565b915050612cfc565b60006001600160a01b0384163b15612e8857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dca903390899088908890600401613ccd565b602060405180830381600087803b158015612de457600080fd5b505af1925050508015612e14575060408051601f3d908101601f19168201909252612e1191810190613d0a565b60015b612e6e573d808015612e42576040519150601f19603f3d011682016040523d82523d6000602084013e612e47565b606091505b508051612e665760405162461bcd60e51b8152600401610d0d90613c01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e8c565b5060015b949350505050565b606081612eb85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ee25780612ecc81613a92565b9150612edb9050600a83613bd0565b9150612ebc565b6000816001600160401b03811115612efc57612efc613796565b6040519080825280601f01601f191660200182016040528015612f26576020820181803683370190505b5090505b8415612e8c57612f3b600183613d27565b9150612f48600a86613d3e565b612f539060306139b3565b60f81b818381518110612f6857612f68613b85565b60200101906001600160f81b031916908160001a905350612f8a600a86613bd0565b9450612f2a565b60006001600160a01b0382166130035760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610d0d565b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0385166130925760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610d0d565b61309b8161276f565b156130e85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610d0d565b8261314a5760025484111561314a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610d0d565b6001600160a01b0385166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906131a6908890613cab565b6001600160801b03168152602001856131bf57866131c2565b60005b83602001516131d19190613cab565b6001600160801b039081169091526001600160a01b0380891660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156132f05760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132b46000898488612d86565b6132d05760405162461bcd60e51b8152600401610d0d90613c01565b816132da81613a92565b92505080806132e890613a92565b915050613267565b50600155505050505050565b600081815b845181101561336857600085828151811061331e5761331e613b85565b602002602001015190508083116133445760008381526020829052604090209250613355565b600081815260208490526040902092505b508061336081613a92565b915050613301565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146133bd576040519150601f19603f3d011682016040523d82523d6000602084013e6133c2565b606091505b50509050806110a45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610d0d565b82805461341290613a57565b90600052602060002090601f016020900481019282613434576000855561347a565b82601f1061344d5782800160ff1982351617855561347a565b8280016001018555821561347a579182015b8281111561347a57823582559160200191906001019061345f565b506117609291505b808211156117605760008155600101613482565b6001600160e01b031981168114611acb57600080fd5b6000602082840312156134be57600080fd5b813561219981613496565b80356001600160a01b03811681146134e057600080fd5b919050565b600080604083850312156134f857600080fd5b613501836134c9565b946020939093013593505050565b60005b8381101561352a578181015183820152602001613512565b8381111561154c5750506000910152565b6000815180845261355381602086016020860161350f565b601f01601f19169290920160200192915050565b602081526000612199602083018461353b565b60006020828403121561358c57600080fd5b5035919050565b6000806000606084860312156135a857600080fd5b6135b1846134c9565b92506135bf602085016134c9565b9150604084013590509250925092565b60008083601f8401126135e157600080fd5b5081356001600160401b038111156135f857600080fd5b6020830191508360208260051b850101111561361357600080fd5b9250929050565b60008060006040848603121561362f57600080fd5b613638846134c9565b925060208401356001600160401b0381111561365357600080fd5b61365f868287016135cf565b9497909650939450505050565b6000806000806060858703121561368257600080fd5b61368b856134c9565b93506020850135925060408501356001600160401b038111156136ad57600080fd5b6136b9878288016135cf565b95989497509550505050565b600080602083850312156136d857600080fd5b82356001600160401b03808211156136ef57600080fd5b818501915085601f83011261370357600080fd5b81358181111561371257600080fd5b86602082850101111561372457600080fd5b60209290920196919550909350505050565b60006020828403121561374857600080fd5b612199826134c9565b8015158114611acb57600080fd5b6000806040838503121561377257600080fd5b61377b836134c9565b9150602083013561378b81613751565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156137c257600080fd5b6137cb856134c9565b93506137d9602086016134c9565b92506040850135915060608501356001600160401b03808211156137fc57600080fd5b818701915087601f83011261381057600080fd5b81358181111561382257613822613796565b604051601f8201601f19908116603f0116810190838211818310171561384a5761384a613796565b816040528281528a602084870101111561386357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561389a57600080fd5b6138a3836134c9565b91506138b1602084016134c9565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156139c6576139c661399d565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316040820152630303030360e41b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c90821680613a6b57607f821691505b60208210811415613a8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613aa657613aa661399d565b5060010190565b60208082526023908201527f416c6c6f776c6973742064726f702074696d6520686173206e6f74207061737360408201526265642160e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b7e57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613bb557613bb561399d565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bdf57613bdf613bba565b500490565b600060208284031215613bf657600080fd5b815161219981613751565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c6681846020880161350f565b835190830190613c7a81836020880161350f565b01949350505050565b60006001600160801b0383811690831681811015613ca357613ca361399d565b039392505050565b60006001600160801b03808316818516808303821115613c7a57613c7a61399d565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d009083018461353b565b9695505050505050565b600060208284031215613d1c57600080fd5b815161219981613496565b600082821015613d3957613d3961399d565b500390565b600082613d4d57613d4d613bba565b50069056fea2646970667358221220fc43bc979de1c588fb7937a9f2115ed5a5491af87f3e8d842f621abaaddc0f2264736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002b0661f429202961b764572cbfa5c367b3dcf3a9
-----Decoded View---------------
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002b0661f429202961b764572cbfa5c367b3dcf3a9
Deployed Bytecode Sourcemap
60227:96:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32811:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;32811:90:0;;;;;;;;34563:370;;;;;;;;;;-1:-1:-1;34563:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;34563:370:0;582:187:1;54985:768:0;;;;;;:::i;:::-;;:::i;:::-;;36628:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38043:204::-;;;;;;;;;;-1:-1:-1;38043:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2311:32:1;;;2293:51;;2281:2;2266:18;38043:204:0;2147:203:1;37606:379:0;;;;;;;;;;-1:-1:-1;37606:379:0;;;;;:::i;:::-;;:::i;48933:180::-;;;;;;;;;;;;;:::i;49226:45::-;;;;;;;;;;;;;;;;38893:142;;;;;;;;;;-1:-1:-1;38893:142:0;;;;;:::i;:::-;;:::i;50423:37::-;;;;;;;;;;-1:-1:-1;50423:37:0;;;;;:::i;:::-;;:::i;31143:27::-;;;;;;;;;;;;;;;;29089:25;;;;;;;;;;;;;;;;33755:744;;;;;;;;;;-1:-1:-1;33755:744:0;;;;;:::i;:::-;;:::i;29742:287::-;;;;;;;;;;-1:-1:-1;29742:287:0;;;;;:::i;:::-;;:::i;53175:33::-;;;;;;;;;;-1:-1:-1;53175:33:0;;;;;;;;;;;3930:4:1;3918:17;;;3900:36;;3888:2;3873:18;53175:33:0;3758:184:1;57085:884:0;;;;;;:::i;:::-;;:::i;50465:38::-;;;;;;;;;;;;;;;;55846:78;;;;;;;;;;;;;:::i;53697:275::-;;;;;;;;;;-1:-1:-1;53697:275:0;;;;;:::i;:::-;;:::i;39098:157::-;;;;;;;;;;-1:-1:-1;39098:157:0;;;;;:::i;:::-;;:::i;48159:42::-;;;;;;;;;;;;;;;;31099:39;;;;;;;;;;;;;;;29328:191;;;;;;;;;;-1:-1:-1;29328:191:0;;;;;:::i;:::-;;:::i;53360:36::-;;;;;;;;;;;;;;;;33287:177;;;;;;;;;;-1:-1:-1;33287:177:0;;;;;:::i;:::-;;:::i;59478:173::-;;;;;;;;;;-1:-1:-1;59478:173:0;;;;;:::i;:::-;;:::i;49178:43::-;;;;;;;;;;-1:-1:-1;49178:43:0;;;;;;;;59880:100;;;;;;;;;;-1:-1:-1;59880:100:0;;;;;:::i;:::-;;:::i;48702:92::-;;;;;;;;;;;;;:::i;36451:118::-;;;;;;;;;;-1:-1:-1;36451:118:0;;;;;:::i;:::-;;:::i;55761:77::-;;;;;;;;;;;;;:::i;30144:97::-;;;;;;;;;;;;;:::i;34989:211::-;;;;;;;;;;-1:-1:-1;34989:211:0;;;;;:::i;:::-;;:::i;25561:103::-;;;;;;;;;;;;;:::i;54191:567::-;;;;;;:::i;:::-;;:::i;30043:93::-;;;;;;;;;;;;;:::i;50510:112::-;;;;;;;;;;;;;:::i;50325:93::-;;;;;;;;;;-1:-1:-1;50325:93:0;;;;;:::i;:::-;;:::i;52643:30::-;;;;;;;;;;;;;;;;24912:87;;;;;;;;;;-1:-1:-1;24958:7:0;24985:6;-1:-1:-1;;;;;24985:6:0;24912:87;;53310:31;;;;;;;;;;-1:-1:-1;53310:31:0;;;;;;;;59108:194;;;;;;;;;;-1:-1:-1;59108:194:0;;;;;:::i;:::-;;:::i;52680:84::-;;;;;;;;;;-1:-1:-1;52680:84:0;;;;;:::i;:::-;;:::i;48114:40::-;;;;;;;;;;-1:-1:-1;48114:40:0;;;;;;;;;;;59986:128;;;;;;;;;;-1:-1:-1;59986: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;59986:128:0;5504:362:1;36783:98:0;;;;;;;;;;;;;:::i;38311:274::-;;;;;;;;;;-1:-1:-1;38311:274:0;;;;;:::i;:::-;;:::i;58390:122::-;;;;;;;;;;;;;:::i;51587:422::-;;;;;;;;;;-1:-1:-1;51587:422:0;;;;;:::i;:::-;;:::i;39318:311::-;;;;;;;;;;-1:-1:-1;39318:311:0;;;;;:::i;:::-;;:::i;49788:98::-;;;;;;;;;;;;;:::i;52335:229::-;;;;;;;;;;-1:-1:-1;52335:229:0;;;;;:::i;:::-;;:::i;48609:87::-;;;;;;;;;;;;;:::i;47378:72::-;;;;;;;;;;-1:-1:-1;47378:72:0;;;;-1:-1:-1;;;;;47378:72:0;;;36944:288;;;;;;;;;;-1:-1:-1;36944:288:0;;;;;:::i;:::-;;:::i;32907:96::-;;;;;;;;;;;;;:::i;53215:86::-;;;;;;;;;;;;;:::i;59782:92::-;;;;;;;;;;;;;:::i;43926:43::-;;;;;;;;;;;;;;;;49892:191;;;;;;;;;;;;;:::i;50630:115::-;;;;;;;;;;;;;:::i;56171:673::-;;;;;;:::i;:::-;;:::i;49689:93::-;;;;;;;;;;;;;:::i;29121:37::-;;;;;;;;;;-1:-1:-1;29121:37:0;;;;;;;;52770:98;;;;;;;;;;-1:-1:-1;52770:98:0;;;;;:::i;:::-;;:::i;38648:186::-;;;;;;;;;;-1:-1:-1;38648:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;38793:25:0;;;38770:4;38793:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38648:186;48379:224;;;;;;;;;;-1:-1:-1;48379:224:0;;;;;:::i;:::-;;:::i;25817:201::-;;;;;;;;;;-1:-1:-1;25817:201:0;;;;;:::i;:::-;;:::i;49450:233::-;;;;;;;;;;-1:-1:-1;49450:233:0;;;;;:::i;:::-;;:::i;58120:119::-;;;;;;;;;;;;;:::i;58673:242::-;;;;;;;;;;-1:-1:-1;58673:242:0;;;;;:::i;:::-;;:::i;32811:90::-;32858:7;32881:14;32634:1;33175:12;-1:-1:-1;;33175:30:0;;33086:132;32881:14;32874:21;;32811:90;:::o;34563:370::-;34690:4;-1:-1:-1;;;;;;34720:40:0;;-1:-1:-1;;;34720:40:0;;:99;;-1:-1:-1;;;;;;;34771:48:0;;-1:-1:-1;;;34771:48:0;34720:99;:160;;;-1:-1:-1;;;;;;;34830:50:0;;-1:-1:-1;;;34830:50:0;34720:160;:207;;;-1:-1:-1;;;;;;;;;;11406:40:0;;;34891:36;34706:221;34563:370;-1:-1:-1;;34563:370:0:o;54985:768::-;55084:1;55073:7;:12;;55065:51;;;;-1:-1:-1;;;55065:51:0;;8056:2:1;55065:51:0;;;8038:21:1;8095:2;8075:18;;;8068:30;8134:28;8114:18;;;8107:56;8180:18;;55065:51:0;;;;;;;;;55146:12;;55135:7;:23;;55127:82;;;;-1:-1:-1;;;55127:82:0;;;;;;;:::i;:::-;55228:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;55251:17:0;;;;:26;55228:49;55220:99;;;;-1:-1:-1;;;55220:99:0;;;;;;;:::i;:::-;55338:22;:20;:22::i;:::-;:30;;55364:4;55338:30;55330:75;;;;-1:-1:-1;;;55330:75:0;;9232:2:1;55330:75:0;;;9214:21:1;;;9251:18;;;9244:30;9310:34;9290:18;;;9283:62;9362:18;;55330:75:0;9030:356:1;55330:75:0;55424:27;55438:3;55443:7;55424:13;:27::i;:::-;55416:88;;;;-1:-1:-1;;;55416:88:0;;;;;;;:::i;:::-;55553:14;55542:7;55523:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;55515:93;;;;-1:-1:-1;;;55515:93:0;;;;;;;:::i;:::-;55640:17;55649:7;55640:8;:17::i;:::-;55627:9;:30;55619:83;;;;-1:-1:-1;;;55619:83:0;;;;;;;:::i;:::-;55715:30;55725:3;55730:7;55739:5;55715:9;:30::i;:::-;54985:768;;:::o;36628:94::-;36682:13;36711:5;36704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36628:94;:::o;38043:204::-;38111:7;38135:16;38143:7;38135;:16::i;:::-;38127:74;;;;-1:-1:-1;;;38127:74:0;;11474:2:1;38127:74:0;;;11456:21:1;11513:2;11493:18;;;11486:30;11552:34;11532:18;;;11525:62;-1:-1:-1;;;11603:18:1;;;11596:43;11656:19;;38127:74:0;11272:409:1;38127:74:0;-1:-1:-1;38217:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38217:24:0;;38043:204::o;37606:379::-;37675:13;37691:24;37707:7;37691:15;:24::i;:::-;37675:40;;37736:5;-1:-1:-1;;;;;37730:11:0;:2;-1:-1:-1;;;;;37730:11:0;;;37722:58;;;;-1:-1:-1;;;37722:58:0;;11888:2:1;37722:58:0;;;11870:21:1;11927:2;11907:18;;;11900:30;11966:34;11946:18;;;11939:62;-1:-1:-1;;;12017:18:1;;;12010:32;12059:19;;37722:58:0;11686:398:1;37722:58:0;23718:10;-1:-1:-1;;;;;37805:21:0;;;;:62;;-1:-1:-1;37830:37:0;37847:5;23718:10;38648:186;:::i;37830:37::-;37789:153;;;;-1:-1:-1;;;37789:153:0;;12291:2:1;37789:153:0;;;12273:21:1;12330:2;12310:18;;;12303:30;12369:34;12349:18;;;12342:62;12440:27;12420:18;;;12413:55;12485:19;;37789:153:0;12089:421:1;37789:153:0;37951:28;37960:2;37964:7;37973:5;37951:8;:28::i;:::-;37668:317;37606:379;;:::o;48933:180::-;49001:21;;48985:4;;49001:21;;;;;48998:63;;-1:-1:-1;49049:4:0;;48933:180::o;48998:63::-;-1:-1:-1;49093:14:0;;49074:15;:33;;;48933:180::o;38893:142::-;39001:28;39011:4;39017:2;39021:7;39001:9;:28::i;50423:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50423:37:0;:::o;33755:744::-;33864:7;33899:16;33909:5;33899:9;:16::i;:::-;33891:5;:24;33883:71;;;;-1:-1:-1;;;33883:71:0;;12717:2:1;33883:71:0;;;12699:21:1;12756:2;12736:18;;;12729:30;12795:34;12775:18;;;12768:62;-1:-1:-1;;;12846:18:1;;;12839:32;12888:19;;33883:71:0;12515:398:1;33883:71:0;33961:22;33986:13;:11;:13::i;:::-;33961:38;;34006:19;34036:25;34086:9;34081:350;34105:14;34101:1;:18;34081:350;;;34135:31;34169:14;;;:11;:14;;;;;;;;;34135:48;;;;;;;;;-1:-1:-1;;;;;34135:48:0;;;;;-1:-1:-1;;;34135:48:0;;;-1:-1:-1;;;;;34135:48:0;;;;;;;;34196:28;34192:89;;34257:14;;;-1:-1:-1;34192:89:0;34314:5;-1:-1:-1;;;;;34293:26:0;:17;-1:-1:-1;;;;;34293:26:0;;34289:135;;;34351:5;34336:11;:20;34332:59;;;-1:-1:-1;34378:1:0;-1:-1:-1;34371:8:0;;-1:-1:-1;;;34371:8:0;34332:59;34401:13;;;;:::i;:::-;;;;34289:135;-1:-1:-1;34121:3:0;;;;:::i;:::-;;;;34081:350;;;-1:-1:-1;34437:56:0;;-1:-1:-1;;;34437:56:0;;13260:2:1;34437:56:0;;;13242:21:1;13299:2;13279:18;;;13272:30;13338:34;13318:18;;;13311:62;-1:-1:-1;;;13389:18:1;;;13382:44;13443:19;;34437:56:0;13058:410:1;29742:287:0;29854:10;;29831:4;;29846:51;;;;-1:-1:-1;;;29846:51:0;;13675:2:1;29846:51:0;;;13657:21:1;13714:2;13694:18;;;13687:30;13753:25;13733:18;;;13726:53;13796:18;;29846:51:0;13473:347:1;29846:51:0;29931:21;;-1:-1:-1;;13974:2:1;13970:15;;;13966:53;29931:21:0;;;13954:66:1;29906:12:0;;14036::1;;29931:21:0;;;;;;;;;;;;29921:32;;;;;;29906:47;;29971:50;29990:12;;29971:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30004:10:0;;;-1:-1:-1;30016:4:0;;-1:-1:-1;29971:18:0;:50::i;:::-;29964:57;29742:287;-1:-1:-1;;;;;29742:287:0:o;57085:884::-;57208:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;57237:11:0;;;;:19;;:11;:19;57208:48;57200:88;;;;-1:-1:-1;;;57200:88:0;;14261:2:1;57200:88:0;;;14243:21:1;14300:2;14280:18;;;14273:30;14339:29;14319:18;;;14312:57;14386:18;;57200:88:0;14059:351:1;57200:88:0;57307:32;57321:3;57326:12;;57307:13;:32::i;:::-;57299:73;;;;-1:-1:-1;;;57299:73:0;;14617:2:1;57299:73:0;;;14599:21:1;14656:2;14636:18;;;14629:30;14695;14675:18;;;14668:58;14743:18;;57299:73:0;14415:352:1;57299:73:0;57402:1;57391:7;:12;;57383:51;;;;-1:-1:-1;;;57383:51:0;;8056:2:1;57383:51:0;;;8038:21:1;8095:2;8075:18;;;8068:30;8134:28;8114:18;;;8107:56;8180:18;;57383:51:0;7854:350:1;57383:51:0;57464:12;;57453:7;:23;;57445:82;;;;-1:-1:-1;;;57445:82:0;;;;;;;:::i;:::-;57548:27;57562:3;57567:7;57548:13;:27::i;:::-;57540:88;;;;-1:-1:-1;;;57540:88:0;;;;;;;:::i;:::-;57677:14;57666:7;57647:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;57639:93;;;;-1:-1:-1;;;57639:93:0;;;;;;;:::i;:::-;57764:17;57773:7;57764:8;:17::i;:::-;57751:9;:30;57743:83;;;;-1:-1:-1;;;57743:83:0;;;;;;;:::i;:::-;57845:25;:23;:25::i;:::-;:33;;57874:4;57845:33;57837:81;;;;-1:-1:-1;;;57837:81:0;;;;;;;:::i;:::-;57931:30;57941:3;57946:7;57955:5;57931:9;:30::i;:::-;57085:884;;;;:::o;55846:78::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;55897:11:::1;:19:::0;;-1:-1:-1;;55897:19:0::1;::::0;;55846:78::o;53697:275::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;53790:1:::1;53783:4;:8;53775:48;;;::::0;-1:-1:-1;;;53775:48:0;;15739:2:1;53775:48:0::1;::::0;::::1;15721:21:1::0;15778:2;15758:18;;;15751:30;15817:29;15797:18;;;15790:57;15864:18;;53775:48:0::1;15537:351:1::0;53775:48:0::1;53870:14;53862:4;53843:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;53835:90;;;;-1:-1:-1::0;;;53835:90:0::1;;;;;;;:::i;:::-;53937:26;53947:3;53952:4;53958;53937:9;:26::i;39098:157::-:0;39210:39;39227:4;39233:2;39237:7;39210:39;;;;;;;;;;;;:16;:39::i;29328:191::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;29430:10:::1;;29412:14;:28;;29404:71;;;::::0;-1:-1:-1;;;29404:71:0;;16095:2:1;29404:71:0::1;::::0;::::1;16077:21:1::0;16134:2;16114:18;;;16107:30;16173:32;16153:18;;;16146:60;16223:18;;29404:71:0::1;15893:354:1::0;29404:71:0::1;29484:10;:27:::0;29328:191::o;33287:177::-;33354:7;33386:13;:11;:13::i;:::-;33378:5;:21;33370:69;;;;-1:-1:-1;;;33370:69:0;;16454:2:1;33370:69:0;;;16436:21:1;16493:2;16473:18;;;16466:30;16532:34;16512:18;;;16505:62;-1:-1:-1;;;16583:18:1;;;16576:33;16626:19;;33370:69:0;16252:399:1;33370:69:0;-1:-1:-1;33453:5:0;33287:177::o;59478:173::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;59571:1:::1;59556:11;:16;;59548:56;;;::::0;-1:-1:-1;;;59548:56:0;;16858:2:1;59548:56:0::1;::::0;::::1;16840:21:1::0;16897:2;16877:18;;;16870:30;16936:29;16916:18;;;16909:57;16983:18;;59548:56:0::1;16656:351:1::0;59548:56:0::1;59616:12;:26:::0;59478:173::o;59880:100::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;59951:23:::1;:13;59967:7:::0;;59951:23:::1;:::i;48702:92::-:0;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;48759:21:::1;:29:::0;;-1:-1:-1;;48759:29:0::1;::::0;;48702:92::o;36451:118::-;36515:7;36538:20;36550:7;36538:11;:20::i;:::-;:25;;36451:118;-1:-1:-1;;36451:118:0:o;55761:77::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;55812:11:::1;:18:::0;;-1:-1:-1;;55812:18:0::1;55826:4;55812:18;::::0;;55761:77::o;30144:97::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;30208:17:::1;:25:::0;;-1:-1:-1;;30208:25:0::1;::::0;;30144:97::o;34989:211::-;35053:7;-1:-1:-1;;;;;35077:19:0;;35069:75;;;;-1:-1:-1;;;35069:75:0;;17214:2:1;35069:75:0;;;17196:21:1;17253:2;17233:18;;;17226:30;17292:34;17272:18;;;17265:62;-1:-1:-1;;;17343:18:1;;;17336:41;17394:19;;35069:75:0;17012:407:1;35069:75:0;-1:-1:-1;;;;;;35166:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35166:27:0;;34989:211::o;25561:103::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;25626:30:::1;25653:1;25626:18;:30::i;:::-;25561:103::o:0;54191:567::-;54274:14;54254:16;:14;:16::i;:::-;:34;;54246:83;;;;-1:-1:-1;;;54246:83:0;;;;;;;:::i;:::-;54348:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;54371:17:0;;;;:26;54348:49;54340:99;;;;-1:-1:-1;;;54340:99:0;;;;;;;:::i;:::-;54458:22;:20;:22::i;:::-;:30;;54484:4;54458:30;54450:75;;;;-1:-1:-1;;;54450:75:0;;9232:2:1;54450:75:0;;;9214:21:1;;;9251:18;;;9244:30;9310:34;9290:18;;;9283:62;9362:18;;54450:75:0;9030:356:1;54450:75:0;54544:21;54558:3;54563:1;54544:13;:21::i;:::-;54536:82;;;;-1:-1:-1;;;54536:82:0;;;;;;;:::i;:::-;54650:11;54659:1;54650:8;:11::i;:::-;54637:9;:24;54629:76;;;;-1:-1:-1;;;54629:76:0;;;;;;;:::i;:::-;54726:24;54736:3;54741:1;54744:5;54726:9;:24::i;:::-;54191:567;:::o;30043:93::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;30104:17:::1;:24:::0;;-1:-1:-1;;30104:24:0::1;30124:4;30104:24;::::0;;30043:93::o;50510:112::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;50591:1:::1;50567:21;:25;50559:34;;;::::0;::::1;;50602:14;:12;:14::i;50325:93::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50325:93:0;;-1:-1:-1;50325:93:0;:::o;59108:194::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;59206:1:::1;59189:13;:18;;59181:70;;;::::0;-1:-1:-1;;;59181:70:0;;18034:2:1;59181:70:0::1;::::0;::::1;18016:21:1::0;18073:2;18053:18;;;18046:30;18112:34;18092:18;;;18085:62;-1:-1:-1;;;18163:18:1;;;18156:37;18210:19;;59181:70:0::1;17832:403:1::0;59181:70:0::1;59262:16;:32:::0;59108:194::o;52680:84::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;52741:5:::1;:17:::0;52680:84::o;59986:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;60088:20:0;60100:7;60088:11;:20::i;36783:98::-;36839:13;36868:7;36861:14;;;;;:::i;38311:274::-;-1:-1:-1;;;;;38402:24:0;;23718:10;38402:24;;38394:63;;;;-1:-1:-1;;;38394:63:0;;18442:2:1;38394:63:0;;;18424:21:1;18481:2;18461:18;;;18454:30;18520:28;18500:18;;;18493:56;18566:18;;38394:63:0;18240:350:1;38394:63:0;23718:10;38466:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38466:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38466:53:0;;;;;;;;;;38531:48;;722:41:1;;;38466:42:0;;23718:10;38531:48;;695:18:1;38531:48:0;;;;;;;38311:274;;:::o;58390:122::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;58448:26:::1;:24;:26::i;51587:422::-:0;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;51696:1:::1;51686:7;:11;51678:20;;;::::0;::::1;;51765:38;::::0;-1:-1:-1;;;51765:38:0;;51797:4:::1;51765:38;::::0;::::1;2293:51:1::0;51735:14:0;;51807:7;;-1:-1:-1;;;;;51765:23:0;::::1;::::0;::::1;::::0;2266:18:1;;51765:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;51757:97;;;::::0;-1:-1:-1;;;51757:97:0;;18986:2:1;51757:97:0::1;::::0;::::1;18968:21:1::0;19025:2;19005:18;;;18998:30;19064:34;19044:18;;;19037:62;-1:-1:-1;;;19115:18:1;;;19108:33;19158:19;;51757:97:0::1;18784:399:1::0;51757:97:0::1;51867:6;51863:141;51881:19;;51877:1;:23;51863:141;;;51919:13;-1:-1:-1::0;;;;;51919:22:0::1;;51942:16;51959:1;51942:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51942:19:0::1;51992:3;51974:11;51986:1;51974:14;;;;;;;;:::i;:::-;;;;;;;;;51964:7;:24;;;;:::i;:::-;51963:32;;;;:::i;:::-;51919:77;::::0;-1:-1:-1;;;;;;51919:77:0::1;::::0;;;;;;-1:-1:-1;;;;;19942:32:1;;;51919:77:0::1;::::0;::::1;19924:51:1::0;19991:18;;;19984:34;19897:18;;51919:77:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;51902:3:0;::::1;::::0;::::1;:::i;:::-;;;;51863:141;;39318:311:::0;39455:28;39465:4;39471:2;39475:7;39455:9;:28::i;:::-;39506:48;39529:4;39535:2;39539:7;39548:5;39506:22;:48::i;:::-;39490:133;;;;-1:-1:-1;;;39490:133:0;;;;;;;:::i;49788:98::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;49848:24:::1;:32:::0;;-1:-1:-1;;49848:32:0::1;::::0;;49788:98::o;52335:229::-;47507:12;;-1:-1:-1;;;;;47507:12:0;47493:10;:26;47485:67;;;;-1:-1:-1;;;47485:67:0;;20901:2:1;47485:67:0;;;20883:21:1;20940:2;20920:18;;;20913:30;20979;20959:18;;;20952:58;21027:18;;47485:67:0;20699:352:1;47485:67:0;52426:12:::1;::::0;-1:-1:-1;;;;;52411:27:0;;::::1;52426:12:::0;::::1;52411:27;;52403:82;;;::::0;-1:-1:-1;;;52403:82:0;;21258:2:1;52403:82:0::1;::::0;::::1;21240:21:1::0;21297:2;21277:18;;;21270:30;21336:34;21316:18;;;21309:62;-1:-1:-1;;;21387:18:1;;;21380:40;21437:19;;52403:82:0::1;21056:406:1::0;52403:82:0::1;52492:12;:26:::0;;-1:-1:-1;;;;;;52492:26:0::1;-1:-1:-1::0;;;;;52492:26:0;::::1;;::::0;;52525:16:::1;:19:::0;;52492:26;;52525:16;-1:-1:-1;;52525:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;52525:33:0::1;;;;;-1:-1:-1::0;;;;;52525:33:0::1;;;;;;52335:229:::0;:::o;48609:87::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;48662:21:::1;:28:::0;;-1:-1:-1;;48662:28:0::1;;;::::0;;48609:87::o;36944:288::-;37042:13;37067:21;37091:10;:8;:10::i;:::-;37067:34;;37146:1;37128:7;37122:21;:25;:104;;;;;;;;;;;;;;;;;37183:7;37192:18;:7;:16;:18::i;:::-;37166:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37122:104;37108:118;36944:288;-1:-1:-1;;;36944:288:0:o;32907:96::-;32954:7;32979:14;32634:1;33175:12;-1:-1:-1;;33175:30:0;;33086:132;32979:14;:18;;32996:1;32979:18;:::i;53215:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59782:92::-;59826:13;59855;59848:20;;;;;:::i;49892:191::-;49963:24;;49947:4;;49963:24;;49960:66;;-1:-1:-1;50014:4:0;;49892:191::o;49960:66::-;-1:-1:-1;50060:17:0;;50041:15;:36;;;49892:191::o;50630:115::-;47507:12;;-1:-1:-1;;;;;47507:12:0;47493:10;:26;47485:67;;;;-1:-1:-1;;;47485:67:0;;20901:2:1;47485:67:0;;;20883:21:1;20940:2;20920:18;;;20913:30;20979;20959:18;;;20952:58;21027:18;;47485:67:0;20699:352:1;56171:673:0;56269:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;56298:11:0;;;;:19;;:11;:19;56269:48;56261:88;;;;-1:-1:-1;;;56261:88:0;;14261:2:1;56261:88:0;;;14243:21:1;14300:2;14280:18;;;14273:30;14339:29;14319:18;;;14312:57;14386:18;;56261:88:0;14059:351:1;56261:88:0;56368:32;56382:3;56387:12;;56368:13;:32::i;:::-;56360:73;;;;-1:-1:-1;;;56360:73:0;;14617:2:1;56360:73:0;;;14599:21:1;14656:2;14636:18;;;14629:30;14695;14675:18;;;14668:58;14743:18;;56360:73:0;14415:352:1;56360:73:0;56472:14;56452:16;:14;:16::i;:::-;:34;;56444:83;;;;-1:-1:-1;;;56444:83:0;;;;;;;:::i;:::-;56546:21;56560:3;56565:1;56546:13;:21::i;:::-;56538:82;;;;-1:-1:-1;;;56538:82:0;;;;;;;:::i;:::-;56652:11;56661:1;56652:8;:11::i;:::-;56639:9;:24;56631:76;;;;-1:-1:-1;;;56631:76:0;;;;;;;:::i;:::-;56726:25;:23;:25::i;:::-;:33;;56755:4;56726:33;56718:81;;;;-1:-1:-1;;;56718:81:0;;;;;;;:::i;:::-;56812:24;56822:3;56827:1;56830:5;56812:9;:24::i;49689:93::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;49745:24:::1;:31:::0;;-1:-1:-1;;49745:31:0::1;49772:4;49745:31;::::0;;49689:93::o;52770:98::-;52825:7;52856:6;52848:5;;:14;;;;:::i;48379:224::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;48475:15:::1;48460:12;:30;48452:109;;;::::0;-1:-1:-1;;;48452:109:0;;22144:2:1;48452:109:0::1;::::0;::::1;22126:21:1::0;22183:2;22163:18;;;22156:30;22222:34;22202:18;;;22195:62;22293:34;22273:18;;;22266:62;-1:-1:-1;;;22344:19:1;;;22337:33;22387:19;;48452:109:0::1;21942:470:1::0;48452:109:0::1;48568:14;:29:::0;48379:224::o;25817:201::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25906:22:0;::::1;25898:73;;;::::0;-1:-1:-1;;;25898:73:0;;22619:2:1;25898:73:0::1;::::0;::::1;22601:21:1::0;22658:2;22638:18;;;22631:30;22697:34;22677:18;;;22670:62;-1:-1:-1;;;22748:18:1;;;22741:36;22794:19;;25898:73:0::1;22417:402:1::0;25898:73:0::1;25982:28;26001:8;25982:18;:28::i;49450:233::-:0;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;49549:15:::1;49534:12;:30;49526:112;;;::::0;-1:-1:-1;;;49526:112:0;;23026:2:1;49526:112:0::1;::::0;::::1;23008:21:1::0;23065:2;23045:18;;;23038:30;23104:34;23084:18;;;23077:62;23175:34;23155:18;;;23148:62;-1:-1:-1;;;23226:19:1;;;23219:36;23272:19;;49526:112:0::1;22824:473:1::0;49526:112:0::1;49645:17;:32:::0;49450:233::o;58120:119::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;58177:25:::1;:23;:25::i;58673:242::-:0;58751:4;58787:1;58776:7;:12;;58768:66;;;;-1:-1:-1;;;58768:66:0;;23504:2:1;58768:66:0;;;23486:21:1;23543:2;23523:18;;;23516:30;23582:34;23562:18;;;23555:62;-1:-1:-1;;;23633:18:1;;;23626:39;23682:19;;58768:66:0;23302:405:1;58768:66:0;58891:16;;58879:7;58853:23;58867:8;58853:13;:23::i;:::-;:33;;;;:::i;:::-;58852:55;;;58673:242;-1:-1:-1;;;58673:242:0:o;40005:129::-;40088:40;40098:2;40102:8;40112:11;40088:40;;;;;;;;;;;;:9;:40::i;39864:135::-;39921:4;39960:7;32634:1;39941:26;;:52;;;;-1:-1:-1;;39981:12:0;;-1:-1:-1;39971:22:0;39864:135::o;43748:172::-;43845:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43845:29:0;-1:-1:-1;;;;;43845:29:0;;;;;;;;;43886:28;;43845:24;;43886:28;;;;;;;43748:172;;;:::o;42117:1529::-;42214:35;42252:20;42264:7;42252:11;:20::i;:::-;42323:18;;42214:58;;-1:-1:-1;42281:22:0;;-1:-1:-1;;;;;42307:34:0;23718:10;-1:-1:-1;;;;;42307:34:0;;:81;;;-1:-1:-1;23718:10:0;42352:20;42364:7;42352:11;:20::i;:::-;-1:-1:-1;;;;;42352:36:0;;42307:81;:142;;;-1:-1:-1;42416:18:0;;42399:50;;23718:10;38648:186;:::i;42399:50::-;42281:169;;42475:17;42459:101;;;;-1:-1:-1;;;42459:101:0;;23914:2:1;42459:101:0;;;23896:21:1;23953:2;23933:18;;;23926:30;23992:34;23972:18;;;23965:62;-1:-1:-1;;;24043:18:1;;;24036:48;24101:19;;42459:101:0;23712:414:1;42459:101:0;42607:4;-1:-1:-1;;;;;42585:26:0;:13;:18;;;-1:-1:-1;;;;;42585:26:0;;42569:98;;;;-1:-1:-1;;;42569:98:0;;24333:2:1;42569:98:0;;;24315:21:1;24372:2;24352:18;;;24345:30;24411:34;24391:18;;;24384:62;-1:-1:-1;;;24462:18:1;;;24455:36;24508:19;;42569:98:0;24131:402:1;42569:98:0;-1:-1:-1;;;;;42682:16:0;;42674:66;;;;-1:-1:-1;;;42674:66:0;;24740:2:1;42674:66:0;;;24722:21:1;24779:2;24759:18;;;24752:30;24818:34;24798:18;;;24791:62;-1:-1:-1;;;24869:18:1;;;24862:35;24914:19;;42674:66:0;24538:401:1;42674:66:0;42849:49;42866:1;42870:7;42879:13;:18;;;42849:8;:49::i;:::-;-1:-1:-1;;;;;42907:18:0;;;;;;:12;:18;;;;;:31;;42937:1;;42907:18;:31;;42937:1;;-1:-1:-1;;;;;42907:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;42907:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42945:16:0;;-1:-1:-1;42945:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;42945:16:0;;:29;;-1:-1:-1;;42945:29:0;;:::i;:::-;;;-1:-1:-1;;;;;42945:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43004:43:0;;;;;;;;-1:-1:-1;;;;;43004:43:0;;;;;-1:-1:-1;;;;;43030:15:0;43004:43;;;;;;;;;-1:-1:-1;42981:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;42981:66:0;-1:-1:-1;;;;;;42981:66:0;;;;;;;;;;;43297:11;42993:7;-1:-1:-1;43297:11:0;:::i;:::-;43360:1;43319:24;;;:11;:24;;;;;:29;43275:33;;-1:-1:-1;;;;;;43319:29:0;43315:236;;43377:20;43385:11;43377:7;:20::i;:::-;43373:171;;;43437:97;;;;;;;;43464:18;;-1:-1:-1;;;;;43437:97:0;;;;;;43495:28;;;;-1:-1:-1;;;;;43437:97:0;;;;;;;;;-1:-1:-1;43410:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;43410:124:0;-1:-1:-1;;;;;;43410:124:0;;;;;;;;;;;;43373:171;43583:7;43579:2;-1:-1:-1;;;;;43564:27:0;43573:4;-1:-1:-1;;;;;43564:27:0;;;;;;;;;;;42207:1439;;;42117:1529;;;:::o;27452:202::-;27585:4;27640;27611:25;27624:5;27631:4;27611:12;:25::i;:::-;:33;;27452:202;-1:-1:-1;;;;27452:202:0:o;35452:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;35576:7:0;;32634:1;35617:23;;:46;;;;;35651:12;;35644:4;:19;35617:46;35613:706;;;35680:31;35714:17;;;:11;:17;;;;;;;;;35680:51;;;;;;;;;-1:-1:-1;;;;;35680:51:0;;;;;-1:-1:-1;;;35680:51:0;;;-1:-1:-1;;;;;35680:51:0;;;;;;;;35750:28;35746:85;;35806:9;35452:945;-1:-1:-1;;;35452:945:0:o;35746:85::-;-1:-1:-1;;;36127:6:0;36164:17;;;;:11;:17;;;;;;;;;36152:29;;;;;;;;;-1:-1:-1;;;;;36152:29:0;;;;;-1:-1:-1;;;36152:29:0;;;-1:-1:-1;;;;;36152:29:0;;;;;;;;36204:28;36200:93;;36264:9;35452:945;-1:-1:-1;;;35452:945:0:o;36200:93::-;36095:213;;35613:706;36334:57;;-1:-1:-1;;;36334:57:0;;25655:2:1;36334:57:0;;;25637:21:1;25694:2;25674:18;;;25667:30;25733:34;25713:18;;;25706:62;-1:-1:-1;;;25784:18:1;;;25777:45;25839:19;;36334:57:0;25453:411:1;26176:191:0;26250:16;26269:6;;-1:-1:-1;;;;;26286:17:0;;;-1:-1:-1;;;;;;26286:17:0;;;;;;26319:40;;26269:6;;;;;;;26319:40;;26250:16;26319:40;26239:128;26176:191;:::o;50751:278::-;50810:21;50792:15;50848:176;50866:19;;50862:1;:23;50848:176;;;50906:108;50933:16;50950:1;50933:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50933:19:0;50998:3;50980:11;50992:1;50980:14;;;;;;;;:::i;:::-;;;;;;;;;50970:7;:24;;;;:::i;:::-;50969:32;;;;:::i;:::-;50906:10;:108::i;:::-;50887:3;;;;:::i;:::-;;;;50848:176;;45537:690;45674:4;-1:-1:-1;;;;;45691:13:0;;1581:19;:23;45687:535;;45730:72;;-1:-1:-1;;;45730:72:0;;-1:-1:-1;;;;;45730:36:0;;;;;:72;;23718:10;;45781:4;;45787:7;;45796:5;;45730:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45730:72:0;;;;;;;;-1:-1:-1;;45730:72:0;;;;;;;;;;;;:::i;:::-;;;45717:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45961:13:0;;45957:215;;45994:61;;-1:-1:-1;;;45994:61:0;;;;;;;:::i;45957:215::-;46140:6;46134:13;46125:6;46121:2;46117:15;46110:38;45717:464;-1:-1:-1;;;;;;45852:55:0;-1:-1:-1;;;45852:55:0;;-1:-1:-1;45845:62:0;;45687:535;-1:-1:-1;46210:4:0;45687:535;45537:690;;;;;;:::o;18469:723::-;18525:13;18746:10;18742:53;;-1:-1:-1;;18773:10:0;;;;;;;;;;;;-1:-1:-1;;;18773:10:0;;;;;18469:723::o;18742:53::-;18820:5;18805:12;18861:78;18868:9;;18861:78;;18894:8;;;;:::i;:::-;;-1:-1:-1;18917:10:0;;-1:-1:-1;18925:2:0;18917:10;;:::i;:::-;;;18861:78;;;18949:19;18981:6;-1:-1:-1;;;;;18971:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18971:17:0;;18949:39;;18999:154;19006:10;;18999:154;;19033:11;19043:1;19033:11;;:::i;:::-;;-1:-1:-1;19102:10:0;19110:2;19102:5;:10;:::i;:::-;19089:24;;:2;:24;:::i;:::-;19076:39;;19059:6;19066;19059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19059:56:0;;;;;;;;-1:-1:-1;19130:11:0;19139:2;19130:11;;:::i;:::-;;;18999:154;;35206:240;35267:7;-1:-1:-1;;;;;35299:19:0;;35283:102;;;;-1:-1:-1;;;35283:102:0;;27066:2:1;35283:102:0;;;27048:21:1;27105:2;27085:18;;;27078:30;27144:34;27124:18;;;27117:62;-1:-1:-1;;;27195:18:1;;;27188:47;27252:19;;35283:102:0;26864:413:1;35283:102:0;-1:-1:-1;;;;;;35407:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;35407:32:0;;-1:-1:-1;;;;;35407:32:0;;35206:240::o;40463:1434::-;40614:12;;-1:-1:-1;;;;;40641:16:0;;40633:62;;;;-1:-1:-1;;;40633:62:0;;27484:2:1;40633:62:0;;;27466:21:1;27523:2;27503:18;;;27496:30;27562:34;27542:18;;;27535:62;-1:-1:-1;;;27613:18:1;;;27606:31;27654:19;;40633:62:0;27282:397:1;40633:62:0;40832:21;40840:12;40832:7;:21::i;:::-;40831:22;40823:64;;;;-1:-1:-1;;;40823:64:0;;27886:2:1;40823:64:0;;;27868:21:1;27925:2;27905:18;;;27898:30;27964:31;27944:18;;;27937:59;28013:18;;40823:64:0;27684:353:1;40823:64:0;40973:20;40969:116;;41026:12;;41014:8;:24;;41006:71;;;;-1:-1:-1;;;41006:71:0;;28244:2:1;41006:71:0;;;28226:21:1;28283:2;28263:18;;;28256:30;28322:34;28302:18;;;28295:62;-1:-1:-1;;;28373:18:1;;;28366:32;28415:19;;41006:71:0;28042:398:1;41006:71:0;-1:-1:-1;;;;;41196:16:0;;41163:30;41196:16;;;:12;:16;;;;;;;;;41163:49;;;;;;;;;-1:-1:-1;;;;;41163:49:0;;;;;-1:-1:-1;;;41163:49:0;;;;;;;;;;;41238:139;;;;;;;;41258:19;;41163:49;;41238:139;;;41258:39;;41288:8;;41258:39;:::i;:::-;-1:-1:-1;;;;;41238:139:0;;;;;41334:11;:35;;41360:8;41334:35;;;41348:1;41334:35;41306:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;41238:139:0;;;;;;-1:-1:-1;;;;;41219:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;41219:158:0;;;;;;;;;;;;41412:43;;;;;;;;;;-1:-1:-1;;;;;41438:15:0;41412:43;;;;;;;;41384:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41384:71:0;-1:-1:-1;;;;;;41384:71:0;;;;;;;;;;;;;;;;;;41396:12;;41508:281;41532:8;41528:1;:12;41508:281;;;41561:38;;41586:12;;-1:-1:-1;;;;;41561:38:0;;;41578:1;;41561:38;;41578:1;;41561:38;41626:59;41657:1;41661:2;41665:12;41679:5;41626:22;:59::i;:::-;41608:150;;;;-1:-1:-1;;;41608:150:0;;;;;;;:::i;:::-;41767:14;;;;:::i;:::-;;;;41542:3;;;;;:::i;:::-;;;;41508:281;;;-1:-1:-1;41797:12:0;:27;-1:-1:-1;;;;;;40463:1434:0:o;28026:701::-;28109:7;28154:4;28109:7;28171:515;28195:5;:12;28191:1;:16;28171:515;;;28231:20;28254:5;28260:1;28254:8;;;;;;;;:::i;:::-;;;;;;;28231:31;;28299:12;28283;:28;28279:394;;28805:13;28859:15;;;28897:4;28890:15;;;28946:4;28930:21;;28415:57;;28279:394;;;28805:13;28859:15;;;28897:4;28890:15;;;28946:4;28930:21;;28598:57;;28279:394;-1:-1:-1;28209:3:0;;;;:::i;:::-;;;;28171:515;;;-1:-1:-1;28705:12:0;28026:701;-1:-1:-1;;;28026:701:0:o;51037:175::-;51110:12;51128:8;-1:-1:-1;;;;;51128:13:0;51149:7;51128:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51109:52;;;51178:7;51170:36;;;;-1:-1:-1;;;51170:36:0;;28857:2:1;51170:36:0;;;28839:21:1;28896:2;28876:18;;;28869:30;-1:-1:-1;;;28915:18:1;;;28908:46;28971:18;;51170:36:0;28655:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-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;4716:592::-;4787:6;4795;4848:2;4836:9;4827:7;4823:23;4819:32;4816:52;;;4864:1;4861;4854:12;4816:52;4904:9;4891:23;-1:-1:-1;;;;;4974:2:1;4966:6;4963:14;4960:34;;;4990:1;4987;4980:12;4960:34;5028:6;5017:9;5013:22;5003:32;;5073:7;5066:4;5062:2;5058:13;5054:27;5044:55;;5095:1;5092;5085:12;5044:55;5135:2;5122:16;5161:2;5153:6;5150:14;5147:34;;;5177:1;5174;5167:12;5147:34;5222:7;5217:2;5208:6;5204:2;5200:15;5196:24;5193:37;5190:57;;;5243:1;5240;5233:12;5190:57;5274:2;5266:11;;;;;5296:6;;-1:-1:-1;4716:592:1;;-1:-1:-1;;;;4716:592:1:o;5313:186::-;5372:6;5425:2;5413:9;5404:7;5400:23;5396:32;5393:52;;;5441:1;5438;5431:12;5393:52;5464:29;5483:9;5464:29;:::i;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;9391:412::-;9593:2;9575:21;;;9632:2;9612:18;;;9605:30;9671:34;9666:2;9651:18;;9644:62;-1:-1:-1;;;9737:2:1;9722:18;;9715:46;9793:3;9778:19;;9391:412::o;9808:127::-;9869:10;9864:3;9860:20;9857:1;9850:31;9900:4;9897:1;9890:15;9924:4;9921:1;9914:15;9940:128;9980:3;10011:1;10007:6;10004:1;10001:13;9998:39;;;10017:18;;:::i;:::-;-1:-1:-1;10053:9:1;;9940:128::o;10073:400::-;10275:2;10257:21;;;10314:2;10294:18;;;10287:30;10353:34;10348:2;10333:18;;10326:62;-1:-1:-1;;;10419:2:1;10404:18;;10397:34;10463:3;10448:19;;10073:400::o;10478:404::-;10680:2;10662:21;;;10719:2;10699:18;;;10692:30;10758:34;10753:2;10738:18;;10731:62;-1:-1:-1;;;10824:2:1;10809:18;;10802:38;10872:3;10857:19;;10478:404::o;10887:380::-;10966:1;10962:12;;;;11009;;;11030:61;;11084:4;11076:6;11072:17;11062:27;;11030:61;11137:2;11129:6;11126:14;11106:18;11103:38;11100:161;;;11183:10;11178:3;11174:20;11171:1;11164:31;11218:4;11215:1;11208:15;11246:4;11243:1;11236:15;11100:161;;10887:380;;;:::o;12918:135::-;12957:3;-1:-1:-1;;12978:17:1;;12975:43;;;12998:18;;:::i;:::-;-1:-1:-1;13045:1:1;13034:13;;12918:135::o;14772:399::-;14974:2;14956:21;;;15013:2;14993:18;;;14986:30;15052:34;15047:2;15032:18;;15025:62;-1:-1:-1;;;15118:2:1;15103:18;;15096:33;15161:3;15146:19;;14772:399::o;15176:356::-;15378:2;15360:21;;;15397:18;;;15390:30;15456:34;15451:2;15436:18;;15429:62;15523:2;15508:18;;15176:356::o;17424:403::-;17626:2;17608:21;;;17665:2;17645:18;;;17638:30;17704:34;17699:2;17684:18;;17677:62;-1:-1:-1;;;17770:2:1;17755:18;;17748:37;17817:3;17802:19;;17424:403::o;18595:184::-;18665:6;18718:2;18706:9;18697:7;18693:23;18689:32;18686:52;;;18734:1;18731;18724:12;18686:52;-1:-1:-1;18757:16:1;;18595:184;-1:-1:-1;18595:184:1:o;19188:127::-;19249:10;19244:3;19240:20;19237:1;19230:31;19280:4;19277:1;19270:15;19304:4;19301:1;19294:15;19320:168;19360:7;19426:1;19422;19418:6;19414:14;19411:1;19408:21;19403:1;19396:9;19389:17;19385:45;19382:71;;;19433:18;;:::i;:::-;-1:-1:-1;19473:9:1;;19320:168::o;19493:127::-;19554:10;19549:3;19545:20;19542:1;19535:31;19585:4;19582:1;19575:15;19609:4;19606:1;19599:15;19625:120;19665:1;19691;19681:35;;19696:18;;:::i;:::-;-1:-1:-1;19730:9:1;;19625:120::o;20029:245::-;20096:6;20149:2;20137:9;20128:7;20124:23;20120:32;20117:52;;;20165:1;20162;20155:12;20117:52;20197:9;20191:16;20216:28;20238:5;20216:28;:::i;20279:415::-;20481:2;20463:21;;;20520:2;20500:18;;;20493:30;20559:34;20554:2;20539:18;;20532:62;-1:-1:-1;;;20625:2:1;20610:18;;20603:49;20684:3;20669:19;;20279:415::o;21467:470::-;21646:3;21684:6;21678:13;21700:53;21746:6;21741:3;21734:4;21726:6;21722:17;21700:53;:::i;:::-;21816:13;;21775:16;;;;21838:57;21816:13;21775:16;21872:4;21860:17;;21838:57;:::i;:::-;21911:20;;21467:470;-1:-1:-1;;;;21467:470:1:o;24944:246::-;24984:4;-1:-1:-1;;;;;25097:10:1;;;;25067;;25119:12;;;25116:38;;;25134:18;;:::i;:::-;25171:13;;24944:246;-1:-1:-1;;;24944:246:1:o;25195:253::-;25235:3;-1:-1:-1;;;;;25324:2:1;25321:1;25317:10;25354:2;25351:1;25347:10;25385:3;25381:2;25377:12;25372:3;25369:21;25366:47;;;25393:18;;:::i;25869:489::-;-1:-1:-1;;;;;26138:15:1;;;26120:34;;26190:15;;26185:2;26170:18;;26163:43;26237:2;26222:18;;26215:34;;;26285:3;26280:2;26265:18;;26258:31;;;26063:4;;26306:46;;26332:19;;26324:6;26306:46;:::i;:::-;26298:54;25869:489;-1:-1:-1;;;;;;25869:489:1:o;26363:249::-;26432:6;26485:2;26473:9;26464:7;26460:23;26456:32;26453:52;;;26501:1;26498;26491:12;26453:52;26533:9;26527:16;26552:30;26576:5;26552:30;:::i;26617:125::-;26657:4;26685:1;26682;26679:8;26676:34;;;26690:18;;:::i;:::-;-1:-1:-1;26727:9:1;;26617:125::o;26747:112::-;26779:1;26805;26795:35;;26810:18;;:::i;:::-;-1:-1:-1;26844:9:1;;26747:112::o
Swarm Source
ipfs://fc43bc979de1c588fb7937a9f2115ed5a5491af87f3e8d842f621abaaddc0f22
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.