ERC-721
Overview
Max Total Supply
1,559 mfmigo
Holders
104
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 mfmigoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MfermigosContract
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-12 */ //*********************************************************************// //*********************************************************************// // // ................................................................................ // ................................................................................ // ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(((((((((((((((((,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(((,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, // ..............................^v^v^v^v^v^v^v^v^v^v^............................. // ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@(((((((,,,,,,,%%%%%%%@@@,,,%%%%%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,@@@@(((&&&&,,,,,,,,,,,,,%%%%%%%@@@,,,,%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,@@@@&&&,,,,,,,,,,,,,,,,,,,,,%%%&&&,,,,%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,@@@@&&&,,,,,,,,,,,,,,,,,,,,,%%%&&&,,,,%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@@#######################@@@@%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,&&&@&@@ @@@&&&&%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,&&&&&&& . . . . . . @@@&&&&%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,&&&&&&& ...... ...... @@@&&&&%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,&&&&&&& *** *** @@@&&&&%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,&&&&&&& @@@&&&&%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,@@@@ @@@,,,,%%%,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,@@@@ @@@,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,@@@@ mfermigos ///,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@ .@@@,,,,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@ ,,,,,,,@@@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@ ,,,,,,,@@@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@@@@ ...@@@@@@@,,,,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,,,,@@@@@@@ v v @@@,,,,,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,@@@ V @@@@,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,,,,,@@@ @@@@,,,,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,@@@@ @@@,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,@@@@ ------- @@@,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,@@@@ @@@,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,@@@@ &&&& &&& @@@,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,@@@@ &&&& &&& @@@,,,,,,,,,,,,,,,, // ,,,,,,,,,,,,,@@@@ &&&& &&& @@@,,,,,,,,,,,,,,,, // //*********************************************************************// //*********************************************************************// //-------------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. */ function _onlyOwner() private view { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } modifier onlyOwner() { _onlyOwner(); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * onlyOwner functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (newOwner). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (newOwner). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/OperatorFilter/IOperatorFilterRegistry.sol pragma solidity ^0.8.9; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File contracts/OperatorFilter/OperatorFilterer.sol pragma solidity ^0.8.9; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } function _onlyAllowedOperator(address from) private view { if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } _onlyAllowedOperator(from); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } //-------------END DEPENDENCIES------------------------// error TransactionCapExceeded(); error PublicMintingClosed(); error ExcessiveOwnedMints(); error MintZeroQuantity(); error InvalidPayment(); error CapExceeded(); error IsAlreadyUnveiled(); error ValueCannotBeZero(); error CannotBeNullAddress(); error NoStateChange(); error PublicMintClosed(); error AllowlistMintClosed(); error AddressNotAllowlisted(); error AllowlistDropTimeHasNotPassed(); error PublicDropTimeHasNotPassed(); error DropTimeNotInFuture(); error OnlyERC20MintingEnabled(); error ERC20TokenNotApproved(); error ERC20InsufficientBalance(); error ERC20InsufficientAllowance(); error ERC20TransferFailed(); error ClaimModeDisabled(); error IneligibleRedemptionContract(); error TokenAlreadyRedeemed(); error InvalidOwnerForRedemption(); error InvalidApprovalForRedemption(); error ERC721RestrictedApprovalAddressRestricted(); error NotMaintainer(); // Rampp Contracts v2.1 (Teams.sol) error InvalidTeamAddress(); error DuplicateTeamAddress(); pragma solidity ^0.8.0; /** * Teams is a contract implementation to extend upon Ownable that allows multiple controllers * of a single contract to modify specific mint settings but not have overall ownership of the contract. * This will easily allow cross-collaboration via Mintplex.xyz. **/ abstract contract Teams is Ownable{ mapping (address => bool) internal team; /** * @dev Adds an address to the team. Allows them to execute protected functions * @param _address the ETH address to add, cannot be 0x and cannot be in team already **/ function addToTeam(address _address) public onlyOwner { if(_address == address(0)) revert InvalidTeamAddress(); if(inTeam(_address)) revert DuplicateTeamAddress(); team[_address] = true; } /** * @dev Removes an address to the team. * @param _address the ETH address to remove, cannot be 0x and must be in team **/ function removeFromTeam(address _address) public onlyOwner { if(_address == address(0)) revert InvalidTeamAddress(); if(!inTeam(_address)) revert InvalidTeamAddress(); team[_address] = false; } /** * @dev Check if an address is valid and active in the team * @param _address ETH address to check for truthiness **/ function inTeam(address _address) public view returns (bool) { if(_address == address(0)) revert InvalidTeamAddress(); return team[_address] == true; } /** * @dev Throws if called by any account other than the owner or team member. */ function _onlyTeamOrOwner() private view { bool _isOwner = owner() == _msgSender(); bool _isTeam = inTeam(_msgSender()); require(_isOwner || _isTeam, "Team: caller is not the owner or in Team."); } modifier onlyTeamOrOwner() { _onlyTeamOrOwner(); _; } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree * defined by 'root'. For this, a 'proof' must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: Allowlist.sol pragma solidity ^0.8.0; abstract contract Allowlist is Teams { bytes32 public merkleRoot; bool public onlyAllowlistMode = false; /** * @dev Update merkle root to reflect changes in Allowlist * @param _newMerkleRoot new merkle root to reflect most recent Allowlist */ function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyTeamOrOwner { if(_newMerkleRoot == merkleRoot) revert NoStateChange(); 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) { if(merkleRoot == 0) revert ValueCannotBeZero(); bytes32 leaf = keccak256(abi.encodePacked(_to)); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } function enableAllowlistOnlyMode() public onlyTeamOrOwner { onlyAllowlistMode = true; } function disableAllowlistOnlyMode() public onlyTeamOrOwner { onlyAllowlistMode = false; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, Teams , OperatorFilterer { 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 Mapping of restricted operator approvals set by contract Owner * This serves as an optional addition to ERC-721 so * that the contract owner can elect to prevent specific addresses/contracts * from being marked as the approver for a token. The reason for this * is that some projects may want to retain control of where their tokens can/can not be listed * either due to ethics, loyalty, or wanting trades to only occur on their personal marketplace. * By default, there are no restrictions. The contract owner must deliberatly block an address */ mapping(address => bool) public restrictedApprovalAddresses; /** * @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_ ) OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true) { 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(); string memory extension = _baseURIExtension(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), extension)) : ""; } /** * @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 Base URI extension used for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the baseURI, tokenId, and this value. Empty * by default, can be overriden in child contracts. */ function _baseURIExtension() internal view virtual returns (string memory) { return ""; } /** * @dev Sets the value for an address to be in the restricted approval address pool. * Setting an address to true will disable token owners from being able to mark the address * for approval for trading. This would be used in theory to prevent token owners from listing * on specific marketplaces or protcols. Only modifible by the contract owner/team. * @param _address the marketplace/user to modify restriction status of * @param _isRestricted restriction status of the _address to be set. true => Restricted, false => Open */ function setApprovalRestriction(address _address, bool _isRestricted) public onlyTeamOrOwner { restrictedApprovalAddresses[_address] = _isRestricted; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override onlyAllowedOperatorApproval(to) { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); if(restrictedApprovalAddresses[to]) revert ERC721RestrictedApprovalAddressRestricted(); 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 onlyAllowedOperatorApproval(operator) { require(operator != _msgSender(), "ERC721A: approve to caller"); if(restrictedApprovalAddresses[operator]) revert ERC721RestrictedApprovalAddressRestricted(); _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 onlyAllowedOperator(from) { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override onlyAllowedOperator(from) { _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 ProviderFees is Context { address private constant PROVIDER = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1; uint256 public PROVIDER_FEE = 0.000777 ether; function sendProviderFee() internal { payable(PROVIDER).transfer(PROVIDER_FEE); } function setProviderFee(uint256 _fee) public { if(_msgSender() != PROVIDER) revert NotMaintainer(); PROVIDER_FEE = _fee; } } // @title An implementation of ERC-721A with additonal context for 1:1 redemption with another ERC-721 // @author Mintplex.xyz (Mintplex Labs Inc) (Twitter: @MintplexNFT) // @notice -- See Medium article -- // @custom:experimental This is an experimental contract interface. Mintplex assumes no responsibility for functionality or security. abstract contract ERC721ARedemption is ERC721A, ProviderFees { // @dev Emitted when someone exchanges an NFT for this contracts NFT via token redemption swap event Redeemed(address indexed from, uint256 indexed tokenId, address indexed contractAddress); // @dev Emitted when someone proves ownership of an NFT for this contracts NFT via token redemption swap event VerifiedClaim(address indexed from, uint256 indexed tokenId, address indexed contractAddress); uint256 public redemptionSurcharge = 0 ether; bool public redemptionModeEnabled; bool public verifiedClaimModeEnabled; address public redemptionAddress = 0x000000000000000000000000000000000000dEaD; // address burned tokens are sent, default is dEaD. mapping(address => bool) public redemptionContracts; mapping(address => mapping(uint256 => bool)) public tokenRedemptions; // @dev Allow owner/team to set the contract as eligable for redemption for this contract function setRedeemableContract(address _contractAddress, bool _status) public onlyTeamOrOwner { redemptionContracts[_contractAddress] = _status; } // @dev Allow owner/team to determine if contract is accepting redemption mints function setRedemptionMode(bool _newStatus) public onlyTeamOrOwner { redemptionModeEnabled = _newStatus; } // @dev Allow owner/team to determine if contract is accepting verified claim mints function setVerifiedClaimMode(bool _newStatus) public onlyTeamOrOwner { verifiedClaimModeEnabled = _newStatus; } // @dev Set the fee that it would cost a minter to be able to burn/validtion mint a token on this contract. function setRedemptionSurcharge(uint256 _newSurchargeInWei) public onlyTeamOrOwner { redemptionSurcharge = _newSurchargeInWei; } // @dev Set the redemption address where redeemed NFTs will be transferred when "burned". // @notice Must be a wallet address or implement IERC721Receiver. // Cannot be null address as this will break any ERC-721A implementation without a proper // burn mechanic as ownershipOf cannot handle 0x00 holdings mid batch. function setRedemptionAddress(address _newRedemptionAddress) public onlyTeamOrOwner { if(_newRedemptionAddress == address(0)) revert CannotBeNullAddress(); redemptionAddress = _newRedemptionAddress; } /** * @dev allows redemption or "burning" of a single tokenID. Must be owned by the owner * @notice this does not impact the total supply of the burned token and the transfer destination address may be set by * the contract owner or Team => redemptionAddress. * @param tokenId the token to be redeemed. * Emits a {Redeemed} event. **/ function redeem(address redemptionContract, uint256 tokenId) public payable { if(getNextTokenId() > collectionSize) revert CapExceeded(); if(!redemptionModeEnabled) revert ClaimModeDisabled(); if(redemptionContract == address(0)) revert CannotBeNullAddress(); if(!redemptionContracts[redemptionContract]) revert IneligibleRedemptionContract(); if(msg.value != (redemptionSurcharge + PROVIDER_FEE)) revert InvalidPayment(); if(tokenRedemptions[redemptionContract][tokenId]) revert TokenAlreadyRedeemed(); IERC721 _targetContract = IERC721(redemptionContract); if(_targetContract.ownerOf(tokenId) != _msgSender()) revert InvalidOwnerForRedemption(); if(_targetContract.getApproved(tokenId) != address(this)) revert InvalidApprovalForRedemption(); // Warning: Since there is no standarized return value for transfers of ERC-721 // It is possible this function silently fails and a mint still occurs. The owner of the contract is // responsible for ensuring that the redemption contract does not lock or have staked controls preventing // movement of the token. As an added measure we keep a mapping of tokens redeemed to prevent multiple single-token redemptions, // but the NFT may not have been sent to the redemptionAddress. _targetContract.safeTransferFrom(_msgSender(), redemptionAddress, tokenId); tokenRedemptions[redemptionContract][tokenId] = true; emit Redeemed(_msgSender(), tokenId, redemptionContract); sendProviderFee(); _safeMint(_msgSender(), 1, false); } /** * @dev allows for verified claim mint against a single tokenID. Must be owned by the owner * @notice this mint action allows the original NFT to remain in the holders wallet, but its claim is logged. * @param tokenId the token to be redeemed. * Emits a {VerifiedClaim} event. **/ function verifedClaim(address redemptionContract, uint256 tokenId) public payable { if(getNextTokenId() > collectionSize) revert CapExceeded(); if(!verifiedClaimModeEnabled) revert ClaimModeDisabled(); if(redemptionContract == address(0)) revert CannotBeNullAddress(); if(!redemptionContracts[redemptionContract]) revert IneligibleRedemptionContract(); if(msg.value != (redemptionSurcharge + PROVIDER_FEE)) revert InvalidPayment(); if(tokenRedemptions[redemptionContract][tokenId]) revert TokenAlreadyRedeemed(); tokenRedemptions[redemptionContract][tokenId] = true; emit VerifiedClaim(_msgSender(), tokenId, redemptionContract); sendProviderFee(); _safeMint(_msgSender(), 1, false); } } /** 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 Teams { bool public enforcePublicDropTime = true; uint256 public publicDropTime = 1704085200; /** * @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 onlyTeamOrOwner { if(_newDropTime < block.timestamp) revert DropTimeNotInFuture(); publicDropTime = _newDropTime; } function usePublicDropTime() public onlyTeamOrOwner { enforcePublicDropTime = true; } function disablePublicDropTime() public onlyTeamOrOwner { 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 = 1703998800; /** * @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 onlyTeamOrOwner { if(_newDropTime < block.timestamp) revert DropTimeNotInFuture(); allowlistDropTime = _newDropTime; } function useAllowlistDropTime() public onlyTeamOrOwner { enforceAllowlistDropTime = true; } function disableAllowlistDropTime() public onlyTeamOrOwner { enforceAllowlistDropTime = false; } function allowlistDropTimePassed() public view returns(bool) { if(enforceAllowlistDropTime == false) { return true; } return block.timestamp >= allowlistDropTime; } } interface IERC20 { function allowance(address owner, address spender) external view returns (uint256); function transfer(address _to, uint256 _amount) external returns (bool); function balanceOf(address account) external view returns (uint256); function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: WithdrawableV2 // This abstract allows the contract to be able to mint and ingest ERC-20 payments for mints. // ERC-20 Payouts are limited to a single payout address. This feature // will charge a small flat fee in native currency that is not subject to regular rev sharing. // This contract also covers the normal functionality of accepting native base currency rev-sharing abstract contract WithdrawableV2 is Teams { struct acceptedERC20 { bool isActive; uint256 chargeAmount; } mapping(address => acceptedERC20) private allowedTokenContracts; address[] public payableAddresses = [0x5cCa867939aA9CBbd8757339659bfDbf3948091B,0x677023E8C1224ea0133F6a1b3bD91C6052b17939]; address public erc20Payable = 0x677023E8C1224ea0133F6a1b3bD91C6052b17939; uint256[] public payableFees = [2,98]; uint256 public payableAddressCount = 2; bool public onlyERC20MintingMode; function withdrawAll() public onlyTeamOrOwner { if(address(this).balance == 0) revert ValueCannotBeZero(); _withdrawAll(address(this).balance); } function _withdrawAll(uint256 balance) private { 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 * in the event ERC-20 tokens are paid to the contract for mints. * @param _tokenContract contract of ERC-20 token to withdraw * @param _amountToWithdraw balance to withdraw according to balanceOf of ERC-20 token in wei */ function withdrawERC20(address _tokenContract, uint256 _amountToWithdraw) public onlyTeamOrOwner { if(_amountToWithdraw == 0) revert ValueCannotBeZero(); IERC20 tokenContract = IERC20(_tokenContract); if(tokenContract.balanceOf(address(this)) < _amountToWithdraw) revert ERC20InsufficientBalance(); tokenContract.transfer(erc20Payable, _amountToWithdraw); // Payout ERC-20 tokens to recipient } /** * @dev check if an ERC-20 contract is a valid payable contract for executing a mint. * @param _erc20TokenContract address of ERC-20 contract in question */ function isApprovedForERC20Payments(address _erc20TokenContract) public view returns(bool) { return allowedTokenContracts[_erc20TokenContract].isActive == true; } /** * @dev get the value of tokens to transfer for user of an ERC-20 * @param _erc20TokenContract address of ERC-20 contract in question */ function chargeAmountForERC20(address _erc20TokenContract) public view returns(uint256) { if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved(); return allowedTokenContracts[_erc20TokenContract].chargeAmount; } /** * @dev Explicity sets and ERC-20 contract as an allowed payment method for minting * @param _erc20TokenContract address of ERC-20 contract in question * @param _isActive default status of if contract should be allowed to accept payments * @param _chargeAmountInTokens fee (in tokens) to charge for mints for this specific ERC-20 token */ function addOrUpdateERC20ContractAsPayment(address _erc20TokenContract, bool _isActive, uint256 _chargeAmountInTokens) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = _isActive; allowedTokenContracts[_erc20TokenContract].chargeAmount = _chargeAmountInTokens; } /** * @dev Add an ERC-20 contract as being a valid payment method. If passed a contract which has not been added * it will assume the default value of zero. This should not be used to create new payment tokens. * @param _erc20TokenContract address of ERC-20 contract in question */ function enableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = true; } /** * @dev Disable an ERC-20 contract as being a valid payment method. If passed a contract which has not been added * it will assume the default value of zero. This should not be used to create new payment tokens. * @param _erc20TokenContract address of ERC-20 contract in question */ function disableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = false; } /** * @dev Enable only ERC-20 payments for minting on this contract */ function enableERC20OnlyMinting() public onlyTeamOrOwner { onlyERC20MintingMode = true; } /** * @dev Disable only ERC-20 payments for minting on this contract */ function disableERC20OnlyMinting() public onlyTeamOrOwner { onlyERC20MintingMode = false; } /** * @dev Set the payout of the ERC-20 token payout to a specific address * @param _newErc20Payable new payout addresses of ERC-20 tokens */ function setERC20PayableAddress(address _newErc20Payable) public onlyTeamOrOwner { if(_newErc20Payable == address(0)) revert CannotBeNullAddress(); if(_newErc20Payable == erc20Payable) revert NoStateChange(); erc20Payable = _newErc20Payable; } } /* File: Tippable.sol /* @dev Allows owner to set strict enforcement of payment to mint price. /* Would then allow buyers to pay _more_ than the mint fee - consider it as a tip /* when doing a free mint with opt-in pricing. /* When strict pricing is enabled => msg.value must extactly equal the expected value /* when strict pricing is disabled => msg.value must be _at least_ the expected value. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /* Pros - can take in gratituity payments during a mint. /* Cons - However if you decrease pricing during mint txn settlement /* it can result in mints landing who technically now have overpaid. */ abstract contract Tippable is Teams { bool public strictPricing = true; function setStrictPricing(bool _newStatus) public onlyTeamOrOwner { strictPricing = _newStatus; } // @dev check if msg.value is correct according to pricing enforcement // @param _msgValue -> passed in msg.value of tx // @param _expectedPrice -> result of getPrice(...args) function priceIsRight(uint256 _msgValue, uint256 _expectedPrice) internal view returns (bool) { return strictPricing ? _msgValue == _expectedPrice : _msgValue >= _expectedPrice; } } // File: EarlyMintIncentive.sol // Allows the contract to have the first x tokens have a discount or // zero fee that can be calculated on the fly. abstract contract EarlyMintIncentive is Teams, ERC721A, ProviderFees { uint256 public PRICE = 0.0069 ether; uint256 public EARLY_MINT_PRICE = 0.0042 ether; uint256 public earlyMintTokenIdCap = 1000; bool public usingEarlyMintIncentive = true; function enableEarlyMintIncentive() public onlyTeamOrOwner { usingEarlyMintIncentive = true; } function disableEarlyMintIncentive() public onlyTeamOrOwner { usingEarlyMintIncentive = false; } /** * @dev Set the max token ID in which the cost incentive will be applied. * @param _newTokenIdCap max tokenId in which incentive will be applied */ function setEarlyMintTokenIdCap(uint256 _newTokenIdCap) public onlyTeamOrOwner { if(_newTokenIdCap > collectionSize) revert CapExceeded(); if(_newTokenIdCap == 0) revert ValueCannotBeZero(); earlyMintTokenIdCap = _newTokenIdCap; } /** * @dev Set the incentive mint price * @param _feeInWei new price per token when in incentive range */ function setEarlyIncentivePrice(uint256 _feeInWei) public onlyTeamOrOwner { EARLY_MINT_PRICE = _feeInWei; } /** * @dev Set the primary mint price - the base price when not under incentive * @param _feeInWei new price per token */ function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) public view returns (uint256) { if(_count == 0) revert ValueCannotBeZero(); // short circuit function if we dont need to even calc incentive pricing // short circuit if the current tokenId is also already over cap if( usingEarlyMintIncentive == false || currentTokenId() > earlyMintTokenIdCap ) { return (PRICE * _count) + PROVIDER_FEE; } uint256 endingTokenId = currentTokenId() + _count; // If qty to mint results in a final token ID less than or equal to the cap then // the entire qty is within free mint. if(endingTokenId <= earlyMintTokenIdCap) { return (EARLY_MINT_PRICE * _count) + PROVIDER_FEE; } // If the current token id is less than the incentive cap // and the ending token ID is greater than the incentive cap // we will be straddling the cap so there will be some amount // that are incentive and some that are regular fee. uint256 incentiveTokenCount = earlyMintTokenIdCap - currentTokenId(); uint256 outsideIncentiveCount = endingTokenId - earlyMintTokenIdCap; return (EARLY_MINT_PRICE * incentiveTokenCount) + (PRICE * outsideIncentiveCount) + PROVIDER_FEE; } } abstract contract ERC721APlus is Ownable, Teams, ERC721ARedemption, WithdrawableV2, ReentrancyGuard , EarlyMintIncentive, Tippable , Allowlist , TimedDrop { constructor( string memory tokenName, string memory tokenSymbol ) ERC721A(tokenName, tokenSymbol, 20, 10000) { } uint8 constant public CONTRACT_VERSION = 2; string public _baseTokenURI = "ipfs://bafybeialel4xedov6po6hw2aha2v3q4nxsc6vxodsyled23vku7ktj4owq/"; string public _baseTokenExtension = ".json"; bool public mintingOpen = false; bool public isRevealed; 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 onlyTeamOrOwner{ if(_qty == 0) revert MintZeroQuantity(); if(currentTokenId() + _qty > collectionSize) revert CapExceeded(); _safeMint(_to, _qty, true); } /////////////// PUBLIC MINT FUNCTIONS /** * @dev Mints tokens to an address in batch. * 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 { if(onlyERC20MintingMode) revert OnlyERC20MintingEnabled(); if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!mintingOpen) revert PublicMintClosed(); if(mintingOpen && onlyAllowlistMode) revert PublicMintClosed(); if(!publicDropTimePassed()) revert PublicDropTimeHasNotPassed(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(!priceIsRight(msg.value, getPrice(_amount))) revert InvalidPayment(); sendProviderFee(); _safeMint(_to, _amount, false); } /** * @dev Mints tokens to an address in batch using an ERC-20 token for payment * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint * @param _erc20TokenContract erc-20 token contract to mint with */ function mintToMultipleERC20(address _to, uint256 _amount, address _erc20TokenContract) public payable { if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!mintingOpen) revert PublicMintClosed(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(mintingOpen && onlyAllowlistMode) revert PublicMintClosed(); if(!publicDropTimePassed()) revert PublicDropTimeHasNotPassed(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(msg.value != PROVIDER_FEE) revert InvalidPayment(); // ERC-20 Specific pre-flight checks if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved(); uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount; IERC20 payableToken = IERC20(_erc20TokenContract); if(payableToken.balanceOf(_to) < tokensQtyToTransfer) revert ERC20InsufficientBalance(); if(payableToken.allowance(_to, address(this)) < tokensQtyToTransfer) revert ERC20InsufficientAllowance(); bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer); if(!transferComplete) revert ERC20TransferFailed(); sendProviderFee(); _safeMint(_to, _amount, false); } function openMinting() public onlyTeamOrOwner { mintingOpen = true; } function stopMinting() public onlyTeamOrOwner { mintingOpen = false; } ///////////// ALLOWLIST MINTING FUNCTIONS /** * @dev Mints tokens to an address using an 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 * @param _merkleProof merkle proof array */ function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable { if(onlyERC20MintingMode) revert OnlyERC20MintingEnabled(); if(!onlyAllowlistMode || !mintingOpen) revert AllowlistMintClosed(); if(!isAllowlisted(_to, _merkleProof)) revert AddressNotAllowlisted(); if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(!priceIsRight(msg.value, getPrice(_amount))) revert InvalidPayment(); if(!allowlistDropTimePassed()) revert AllowlistDropTimeHasNotPassed(); sendProviderFee(); _safeMint(_to, _amount, false); } /** * @dev Mints tokens to an address using an 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 * @param _merkleProof merkle proof array * @param _erc20TokenContract erc-20 token contract to mint with */ function mintToMultipleERC20AL(address _to, uint256 _amount, bytes32[] calldata _merkleProof, address _erc20TokenContract) public payable { if(!onlyAllowlistMode || !mintingOpen) revert AllowlistMintClosed(); if(!isAllowlisted(_to, _merkleProof)) revert AddressNotAllowlisted(); if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(!allowlistDropTimePassed()) revert AllowlistDropTimeHasNotPassed(); if(msg.value != PROVIDER_FEE) revert InvalidPayment(); // ERC-20 Specific pre-flight checks if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved(); uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount; IERC20 payableToken = IERC20(_erc20TokenContract); if(payableToken.balanceOf(_to) < tokensQtyToTransfer) revert ERC20InsufficientBalance(); if(payableToken.allowance(_to, address(this)) < tokensQtyToTransfer) revert ERC20InsufficientAllowance(); bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer); if(!transferComplete) revert ERC20TransferFailed(); sendProviderFee(); _safeMint(_to, _amount, false); } /** * @dev Enable allowlist minting fully by enabling both flags * This is a convenience function for the Rampp user */ function openAllowlistMint() public onlyTeamOrOwner { enableAllowlistOnlyMode(); mintingOpen = true; } /** * @dev Close allowlist minting fully by disabling both flags * This is a convenience function for the Rampp user */ function closeAllowlistMint() public onlyTeamOrOwner { disableAllowlistOnlyMode(); mintingOpen = false; } /** * @dev Check if wallet over MAX_WALLET_MINTS * @param _address address in question to check if minted count exceeds max */ function canMintAmount(address _address, uint256 _amount) public view returns(bool) { if(_amount == 0) revert ValueCannotBeZero(); return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS; } /** * @dev Update the maximum amount of tokens that can be minted by a unique wallet * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1 */ function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner { if(_newWalletMax == 0) revert ValueCannotBeZero(); MAX_WALLET_MINTS = _newWalletMax; } /** * @dev Allows owner to set Max mints per tx * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1 */ function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner { if(_newMaxMint == 0) revert ValueCannotBeZero(); maxBatchSize = _newMaxMint; } function unveil(string memory _updatedTokenURI) public onlyTeamOrOwner { if(isRevealed) revert IsAlreadyUnveiled(); _baseTokenURI = _updatedTokenURI; isRevealed = true; } function contractURI() public pure returns (string memory) { return "https://metadata.mintplex.xyz/ZJIct2SXOsvLHW3RtIgR/contract-metadata"; } function _baseURI() internal view virtual override returns(string memory) { return _baseTokenURI; } function _baseURIExtension() internal view virtual override returns(string memory) { return _baseTokenExtension; } function baseTokenURI() public view returns(string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyTeamOrOwner { _baseTokenURI = baseURI; } function setBaseTokenExtension(string calldata baseExtension) external onlyTeamOrOwner { _baseTokenExtension = baseExtension; } } // File: contracts/MfermigosContract.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract MfermigosContract is ERC721APlus { constructor() ERC721APlus("mfermigos", "mfmigo"){} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressNotAllowlisted","type":"error"},{"inputs":[],"name":"AllowlistDropTimeHasNotPassed","type":"error"},{"inputs":[],"name":"AllowlistMintClosed","type":"error"},{"inputs":[],"name":"CannotBeNullAddress","type":"error"},{"inputs":[],"name":"CapExceeded","type":"error"},{"inputs":[],"name":"ClaimModeDisabled","type":"error"},{"inputs":[],"name":"DropTimeNotInFuture","type":"error"},{"inputs":[],"name":"DuplicateTeamAddress","type":"error"},{"inputs":[],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[],"name":"ERC20TokenNotApproved","type":"error"},{"inputs":[],"name":"ERC20TransferFailed","type":"error"},{"inputs":[],"name":"ERC721RestrictedApprovalAddressRestricted","type":"error"},{"inputs":[],"name":"ExcessiveOwnedMints","type":"error"},{"inputs":[],"name":"IneligibleRedemptionContract","type":"error"},{"inputs":[],"name":"InvalidApprovalForRedemption","type":"error"},{"inputs":[],"name":"InvalidOwnerForRedemption","type":"error"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[],"name":"InvalidTeamAddress","type":"error"},{"inputs":[],"name":"IsAlreadyUnveiled","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoStateChange","type":"error"},{"inputs":[],"name":"NotMaintainer","type":"error"},{"inputs":[],"name":"OnlyERC20MintingEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"PublicDropTimeHasNotPassed","type":"error"},{"inputs":[],"name":"PublicMintClosed","type":"error"},{"inputs":[],"name":"TokenAlreadyRedeemed","type":"error"},{"inputs":[],"name":"TransactionCapExceeded","type":"error"},{"inputs":[],"name":"ValueCannotBeZero","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"}],"name":"Redeemed","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"}],"name":"VerifiedClaim","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"PROVIDER_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"},{"internalType":"uint256","name":"_chargeAmountInTokens","type":"uint256"}],"name":"addOrUpdateERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"chargeAmountForERC20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"disableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableEarlyMintIncentive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyMintTokenIdCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"enableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableEarlyMintIncentive","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":[],"name":"erc20Payable","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"isApprovedForERC20Payments","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","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"},{"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20AL","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":"onlyERC20MintingMode","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":[{"internalType":"address","name":"redemptionContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"redemptionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"redemptionContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redemptionModeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redemptionSurcharge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restrictedApprovalAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isRestricted","type":"bool"}],"name":"setApprovalRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseExtension","type":"string"}],"name":"setBaseTokenExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newErc20Payable","type":"address"}],"name":"setERC20PayableAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setEarlyIncentivePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokenIdCap","type":"uint256"}],"name":"setEarlyMintTokenIdCap","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":"_fee","type":"uint256"}],"name":"setProviderFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setPublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setRedeemableContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRedemptionAddress","type":"address"}],"name":"setRedemptionAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setRedemptionMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSurchargeInWei","type":"uint256"}],"name":"setRedemptionSurcharge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setStrictPricing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setVerifiedClaimMode","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":[],"name":"strictPricing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenRedemptions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","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":"usingEarlyMintIncentive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"redemptionContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"verifedClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"verifiedClaimModeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amountToWithdraw","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6000600b8190556602c2ad68fd9000600c55600d55600e805462010000600160b01b03191663dead000017905560e0604052735cca867939aa9cbbd8757339659bfdbf3948091b60a090815273677023e8c1224ea0133f6a1b3bd91c6052b1793960c05262000073906012906002620004c8565b50601380546001600160a01b03191673677023e8c1224ea0133f6a1b3bd91c6052b1793917905560408051808201909152600280825260626020830152620000be9160149162000532565b5060026015556618838370f34000601855660eebe0b40e80006019556103e8601a55601b805461010161ffff1991821617909155601d805490911661010017905563659246d0601e55601f805460ff19166001179055636590f5506020908155604080516080810190915260438082529091620058d89083013980516200014e9160219160209091019062000575565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200017d9160229162000575565b506023805460ff19169055600a6024553480156200019a57600080fd5b50604051806040016040528060098152602001686d6665726d69676f7360b81b815250604051806040016040528060068152602001656d666d69676f60d01b81525081816014612710733cc6cdda760b79bafa08df41ecfa224f810dceb66001620002146200020e6200047460201b60201c565b62000478565b6daaeb6d7670e522a718067333cd4e3b1562000359578015620002a757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200028857600080fd5b505af11580156200029d573d6000803e3d6000fd5b5050505062000359565b6001600160a01b03821615620002f85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200026d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200033f57600080fd5b505af115801562000354573d6000803e3d6000fd5b505050505b505060008111620003c85760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200042a5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620003bf565b83516200043f90600490602087019062000575565b5082516200045590600590602086019062000575565b5060039190915560805250506001600281905560175550620006469050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805482825590600052602060002090810192821562000520579160200282015b828111156200052057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620004e9565b506200052e929150620005f2565b5090565b82805482825590600052602060002090810192821562000520579160200282015b8281111562000520578251829060ff1690559160200191906001019062000553565b828054620005839062000609565b90600052602060002090601f016020900481019282620005a7576000855562000520565b82601f10620005c257805160ff191683800117855562000520565b8280016001018555821562000520579182015b8281111562000520578251825591602001919060010190620005d5565b5b808211156200052e5760008155600101620005f3565b600181811c908216806200061e57607f821691505b602082108114156200064057634e487b7160e01b600052602260045260246000fd5b50919050565b60805161523e6200069a60003960008181610a6701528181611501015281816118fd01528181611bde015281816122f80152818161240b015281816126d501528181612be2015261317a015261523e6000f3fe6080604052600436106106d25760003560e01c8063853828b61161037a578063caa0f92a116101d1578063e6c6990a11610102578063f2fde38b116100a0578063f70316631161007a578063f703166314611304578063f8c0fd2014611324578063fd19eaf014611339578063fe6757a11461135957600080fd5b8063f2fde38b146112b4578063f4637a15146112d4578063f623bb8b146112ee57600080fd5b8063e985e9c5116100dc578063e985e9c514611216578063ec3408261461125f578063ed77e19f14611274578063ee54be961461129457600080fd5b8063e6c6990a146111c7578063e7572230146111e1578063e8a3d4851461120157600080fd5b8063d547cfb71161016f578063d8d2412011610149578063d8d2412014611167578063dfdedf691461117c578063e0eddd911461119c578063e6928933146111b257600080fd5b8063d547cfb71461111c578063d7224ba014611131578063d83ae3321461114757600080fd5b8063cfc86f7b116101ab578063cfc86f7b146110b1578063cff44923146110c6578063d266f3a9146110e6578063d2e0297f1461110657600080fd5b8063caa0f92a1461105c578063cacf084214611071578063cc7e1b9a1461109157600080fd5b8063a1db9782116102ab578063b4835e0711610249578063bb1876a811610223578063bb1876a814610ffd578063bc05748e14611012578063c54826ab14611027578063c87b56dd1461103c57600080fd5b8063b4835e0714610fa8578063b88d4fde14610fc8578063b94b237614610fe857600080fd5b8063a91bd1a911610285578063a91bd1a914610f33578063ab523c6814610f53578063afe5608b14610f73578063aff3e10b14610f8857600080fd5b8063a1db978214610ed3578063a22cb46514610ef3578063a7593fb714610f1357600080fd5b80638ff4013f1161031857806395d89b41116102f257806395d89b4114610e4357806399e48d9714610e585780639b9f6e5614610e93578063a1af10ca14610eb357600080fd5b80638ff4013f14610de457806391b7f5ed14610e0457806391c4b57414610e2457600080fd5b80638b86b646116103545780638b86b64614610d835780638d859f3e14610d965780638da5cb5b14610dac5780638f4bb49714610dca57600080fd5b8063853828b614610d39578063891bbe7314610d4e57806389f26d5814610d6e57600080fd5b806343696f181161052e57806355f804b31161045f57806370a08231116103fd57806379ab3c89116103d757806379ab3c8914610ccf5780637fb8c6d314610ce4578063817c0d9c14610d0457806383c81c4114610d1957600080fd5b806370a0823114610c7a578063715018a614610c9a578063791f24db14610caf57600080fd5b80636352211e116104395780636352211e14610c1a57806367dec67814610c3a5780636ba9fd3814610c505780636d3de80614610c6557600080fd5b806355f804b314610bd257806358feaa5914610bf257806360986a7114610c0757600080fd5b806348b54eb3116104cc5780634f6ccce7116104a65780634f6ccce714610b5957806354214f6914610b79578063547520fe14610b9857806355228ca714610bb857600080fd5b806348b54eb314610b035780634ab8b5dd14610b1d5780634dde3fe114610b3357600080fd5b806345db6f7a1161050857806345db6f7a14610a89578063464c342814610aa957806346f41ed514610ac95780634783f0ef14610ae357600080fd5b806343696f1814610a1f57806344eed88114610a3f57806345c0f53314610a5557600080fd5b8063286c81371161060857806338f74162116105a65780633e07311c116105805780633e07311c146109b45780633e3e0b12146109ca57806340ccc082146109df57806342842e0e146109ff57600080fd5b806338f74162146109625780633c003254146109815780633d3f9c571461099457600080fd5b80632f745c59116105e25780632f745c59146108db57806333006786146108fb57806337912c1b1461091b57806338b903331461093b57600080fd5b8063286c81371461088f5780632913daa0146108af5780632eb4a7ab146108c557600080fd5b80630c863bb61161067557806318160ddd1161064f57806318160ddd146106d75780631aa4ba67146108465780631e9a69501461085c57806323b872dd1461086f57600080fd5b80630c863bb6146107ee57806310f05cb01461080357806316b88a1d1461083357600080fd5b80630644cefa116106b15780630644cefa1461075f57806306fdde0314610774578063081812fc14610796578063095ea7b3146107ce57600080fd5b80629a9b7b146106d757806301ffc9a7146106ff578063043a2a401461072f575b600080fd5b3480156106e357600080fd5b506106ec611378565b6040519081526020015b60405180910390f35b34801561070b57600080fd5b5061071f61071a3660046149ac565b61138c565b60405190151581526020016106f6565b34801561073b57600080fd5b5061071f61074a3660046149de565b600a6020526000908152604090205460ff1681565b61077261076d3660046149fb565b6113f9565b005b34801561078057600080fd5b50610789611599565b6040516106f69190614a7f565b3480156107a257600080fd5b506107b66107b1366004614a92565b61162b565b6040516001600160a01b0390911681526020016106f6565b3480156107da57600080fd5b506107726107e93660046149fb565b6116b9565b3480156107fa57600080fd5b5061071f611816565b34801561080f57600080fd5b5061071f61081e3660046149de565b600f6020526000908152604090205460ff1681565b610772610841366004614af6565b611838565b34801561085257600080fd5b506106ec60205481565b61077261086a3660046149fb565b611bdc565b34801561087b57600080fd5b5061077261088a366004614b69565b611f6a565b34801561089b57600080fd5b506106ec6108aa366004614a92565b611fb5565b3480156108bb57600080fd5b506106ec60035481565b3480156108d157600080fd5b506106ec601c5481565b3480156108e757600080fd5b506106ec6108f63660046149fb565b611fd6565b34801561090757600080fd5b5061071f610916366004614baa565b61214d565b34801561092757600080fd5b50610772610936366004614c0c565b6121f4565b34801561094757600080fd5b50610950600281565b60405160ff90911681526020016106f6565b34801561096e57600080fd5b50600e5461071f90610100900460ff1681565b61077261098f366004614c29565b61220f565b3480156109a057600080fd5b5061071f6109af3660046149de565b6123ac565b3480156109c057600080fd5b506106ec60155481565b3480156109d657600080fd5b506107726123cf565b3480156109eb57600080fd5b506107726109fa3660046149fb565b6123e3565b348015610a0b57600080fd5b50610772610a1a366004614b69565b612468565b348015610a2b57600080fd5b50610772610a3a3660046149de565b6124ce565b348015610a4b57600080fd5b506106ec601e5481565b348015610a6157600080fd5b506106ec7f000000000000000000000000000000000000000000000000000000000000000081565b348015610a9557600080fd5b50610772610aa4366004614a92565b61254a565b348015610ab557600080fd5b50610772610ac43660046149de565b612557565b348015610ad557600080fd5b5060165461071f9060ff1681565b348015610aef57600080fd5b50610772610afe366004614a92565b612583565b348015610b0f57600080fd5b50600e5461071f9060ff1681565b348015610b2957600080fd5b506106ec60245481565b348015610b3f57600080fd5b50600e546107b6906201000090046001600160a01b031681565b348015610b6557600080fd5b506106ec610b74366004614a92565b6125b3565b348015610b8557600080fd5b5060235461071f90610100900460ff1681565b348015610ba457600080fd5b50610772610bb3366004614a92565b61261b565b348015610bc457600080fd5b50601f5461071f9060ff1681565b348015610bde57600080fd5b50610772610bed366004614c84565b612646565b348015610bfe57600080fd5b5061077261265a565b610772610c15366004614cf5565b61266f565b348015610c2657600080fd5b506107b6610c35366004614a92565b612a0b565b348015610c4657600080fd5b506106ec60195481565b348015610c5c57600080fd5b50610772612a1d565b348015610c7157600080fd5b50610772612a34565b348015610c8657600080fd5b506106ec610c953660046149de565b612a48565b348015610ca657600080fd5b50610772612ad9565b348015610cbb57600080fd5b50610772610cca366004614c0c565b612aed565b348015610cdb57600080fd5b50610772612b0f565b348015610cf057600080fd5b506013546107b6906001600160a01b031681565b348015610d1057600080fd5b50610772612b26565b348015610d2557600080fd5b50610772610d34366004614d37565b612b3d565b348015610d4557600080fd5b50610772612b70565b348015610d5a57600080fd5b506107b6610d69366004614a92565b612b9f565b348015610d7a57600080fd5b50610772612bc9565b610772610d913660046149fb565b612be0565b348015610da257600080fd5b506106ec60185481565b348015610db857600080fd5b506000546001600160a01b03166107b6565b348015610dd657600080fd5b5060235461071f9060ff1681565b348015610df057600080fd5b50610772610dff366004614a92565b612da0565b348015610e1057600080fd5b50610772610e1f366004614a92565b612dcb565b348015610e3057600080fd5b50601d5461071f90610100900460ff1681565b348015610e4f57600080fd5b50610789612dd8565b348015610e6457600080fd5b5061071f610e733660046149fb565b601060209081526000928352604080842090915290825290205460ff1681565b348015610e9f57600080fd5b50610772610eae366004614d37565b612de7565b348015610ebf57600080fd5b5061071f610ece3660046149de565b612e1a565b348015610edf57600080fd5b50610772610eee3660046149fb565b612e67565b348015610eff57600080fd5b50610772610f0e366004614d37565b612fad565b348015610f1f57600080fd5b50610772610f2e366004614a92565b6130b7565b348015610f3f57600080fd5b50610772610f4e3660046149de565b6130f0565b348015610f5f57600080fd5b50610772610f6e366004614a92565b613170565b348015610f7f57600080fd5b506107726131dc565b348015610f9457600080fd5b50610772610fa3366004614c84565b6131ec565b348015610fb457600080fd5b50610772610fc3366004614a92565b613200565b348015610fd457600080fd5b50610772610fe3366004614dfb565b61320d565b348015610ff457600080fd5b506107726132af565b34801561100957600080fd5b506107726132c3565b34801561101e57600080fd5b506107726132d7565b34801561103357600080fd5b506107726132f0565b34801561104857600080fd5b50610789611057366004614a92565b613304565b34801561106857600080fd5b506106ec613371565b34801561107d57600080fd5b5061077261108c3660046149de565b61338b565b34801561109d57600080fd5b506107726110ac3660046149de565b6133b4565b3480156110bd57600080fd5b5061078961340d565b3480156110d257600080fd5b506107726110e1366004614e7a565b61349b565b3480156110f257600080fd5b506106ec6111013660046149de565b6134f2565b34801561111257600080fd5b506106ec600d5481565b34801561112857600080fd5b50610789613539565b34801561113d57600080fd5b506106ec600b5481565b34801561115357600080fd5b50610772611162366004614ec2565b613548565b34801561117357600080fd5b5061071f61357f565b34801561118857600080fd5b506107726111973660046149de565b61359c565b3480156111a857600080fd5b506106ec601a5481565b3480156111be57600080fd5b50610772613610565b3480156111d357600080fd5b50601d5461071f9060ff1681565b3480156111ed57600080fd5b506106ec6111fc366004614a92565b613627565b34801561120d57600080fd5b50610789613721565b34801561122257600080fd5b5061071f611231366004614ef2565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561126b57600080fd5b50610789613741565b34801561128057600080fd5b5061077261128f366004614c0c565b61374e565b3480156112a057600080fd5b506107726112af366004614a92565b613770565b3480156112c057600080fd5b506107726112cf3660046149de565b61379e565b3480156112e057600080fd5b50601b5461071f9060ff1681565b3480156112fa57600080fd5b506106ec600c5481565b34801561131057600080fd5b5061077261131f366004614a92565b613817565b34801561133057600080fd5b50610772613845565b34801561134557600080fd5b5061071f6113543660046149fb565b613855565b34801561136557600080fd5b50601b5461071f90610100900460ff1681565b60006113876002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806113bd57506001600160e01b03198216635b5e139f60e01b145b806113d857506001600160e01b0319821663780e9d6360e01b145b806113f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60165460ff161561141d5760405163380ea98360e21b815260040160405180910390fd5b8061143b5760405163b562e8dd60e01b815260040160405180910390fd5b60035481111561145e576040516393eeb41560e01b815260040160405180910390fd5b60235460ff16611481576040516316851fc760e11b815260040160405180910390fd5b60235460ff1680156114955750601d5460ff165b156114b3576040516316851fc760e11b815260040160405180910390fd5b6114bb611816565b6114d85760405163cb4a4a8560e01b815260040160405180910390fd5b6114e28282613855565b6114ff576040516366be767160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611529611378565b6115339190614f36565b11156115525760405163a4875a4960e01b815260040160405180910390fd5b6115643461155f83613627565b613895565b6115815760405163078d696560e31b815260040160405180910390fd5b6115896138b5565b611595828260006138f7565b5050565b6060600480546115a890614f4e565b80601f01602080910402602001604051908101604052809291908181526020018280546115d490614f4e565b80156116215780601f106115f657610100808354040283529160200191611621565b820191906000526020600020905b81548152906001019060200180831161160457829003601f168201915b5050505050905090565b600061163682613912565b61169d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b816116c381613928565b60006116ce83612a0b565b9050806001600160a01b0316846001600160a01b0316141561173d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401611694565b6001600160a01b0384166000908152600a602052604090205460ff16156117775760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061179357506117938133611231565b6118055760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401611694565b6118108484836139f0565b50505050565b601d54600090610100900460ff1661182e5750600190565b50601e5442101590565b601d5460ff16158061184d575060235460ff16155b1561186b576040516309c7220160e31b815260040160405180910390fd5b61187685848461214d565b6118935760405163097b24df60e41b815260040160405180910390fd5b836118b15760405163b562e8dd60e01b815260040160405180910390fd5b6003548411156118d4576040516393eeb41560e01b815260040160405180910390fd5b6118de8585613855565b6118fb576040516366be767160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084611925611378565b61192f9190614f36565b111561194e5760405163a4875a4960e01b815260040160405180910390fd5b61195661357f565b6119735760405163010450c160e31b815260040160405180910390fd5b600c5434146119955760405163078d696560e31b815260040160405180910390fd5b61199e816123ac565b6119bb57604051636c501c9960e11b815260040160405180910390fd5b6000846119c7836134f2565b6119d19190614f89565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b158015611a1a57600080fd5b505afa158015611a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a529190614fa8565b1015611a7157604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015611abb57600080fd5b505afa158015611acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af39190614fa8565b1015611b125760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b158015611b6657600080fd5b505af1158015611b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9e9190614fc1565b905080611bbe57604051633c9fd93960e21b815260040160405180910390fd5b611bc66138b5565b611bd2888860006138f7565b5050505050505050565b7f0000000000000000000000000000000000000000000000000000000000000000611c05613371565b1115611c245760405163a4875a4960e01b815260040160405180910390fd5b600e5460ff16611c4757604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b038216611c6e576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600f602052604090205460ff16611ca757604051638c9f128f60e01b815260040160405180910390fd5b600c54600d54611cb79190614f36565b3414611cd65760405163078d696560e31b815260040160405180910390fd5b6001600160a01b038216600090815260106020908152604080832084845290915290205460ff1615611d1b57604051631bd64ea560e01b815260040160405180910390fd5b81336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611d6157600080fd5b505afa158015611d75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d999190614fde565b6001600160a01b031614611dc057604051630a82879560e11b815260040160405180910390fd5b60405163020604bf60e21b81526004810183905230906001600160a01b0383169063081812fc9060240160206040518083038186803b158015611e0257600080fd5b505afa158015611e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3a9190614fde565b6001600160a01b031614611e61576040516392395ac160e01b815260040160405180910390fd5b6001600160a01b0381166342842e0e33600e5460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015262010000909104909116602482015260448101859052606401600060405180830381600087803b158015611ecb57600080fd5b505af1158015611edf573d6000803e3d6000fd5b5050506001600160a01b03841660008181526010602090815260408083208784529091529020805460ff19166001179055905082611f1a3390565b6001600160a01b03167f753fa485a7db01b79a5bf240795c914378b8fb5fcb2a848f2acd51aa6804adbf60405160405180910390a4611f576138b5565b611f65335b600160006138f7565b505050565b826daaeb6d7670e522a718067333cd4e3b15611faa576001600160a01b038116331415611fa157611f9c848484613a4c565b611810565b611faa81613dcc565b611810848484613a4c565b60148181548110611fc557600080fd5b600091825260209091200154905081565b6000611fe183612a48565b821061203a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401611694565b6000612044611378565b905060008060005b838110156120ed576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561209e57805192505b876001600160a01b0316836001600160a01b031614156120da57868414156120cc575093506113f392505050565b836120d681614ffb565b9450505b50806120e581614ffb565b91505061204c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401611694565b601c54600090612170576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506121eb84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601c549150849050613eff565b95945050505050565b6121fc613f15565b600e805460ff1916911515919091179055565b60165460ff16156122335760405163380ea98360e21b815260040160405180910390fd5b601d5460ff161580612248575060235460ff16155b15612266576040516309c7220160e31b815260040160405180910390fd5b61227184838361214d565b61228e5760405163097b24df60e41b815260040160405180910390fd5b826122ac5760405163b562e8dd60e01b815260040160405180910390fd5b6003548311156122cf576040516393eeb41560e01b815260040160405180910390fd5b6122d98484613855565b6122f6576040516366be767160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083612320611378565b61232a9190614f36565b11156123495760405163a4875a4960e01b815260040160405180910390fd5b6123563461155f85613627565b6123735760405163078d696560e31b815260040160405180910390fd5b61237b61357f565b6123985760405163010450c160e31b815260040160405180910390fd5b6123a06138b5565b611810848460006138f7565b6001600160a01b031660009081526011602052604090205460ff16151560011490565b6123d7613f15565b6023805460ff19169055565b6123eb613f15565b806124095760405163b562e8dd60e01b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081612433611378565b61243d9190614f36565b111561245c5760405163a4875a4960e01b815260040160405180910390fd5b611595828260016138f7565b826daaeb6d7670e522a718067333cd4e3b156124b3576001600160a01b0381163314156124aa57611f9c8484846040518060200160405280600081525061320d565b6124b381613dcc565b6118108484846040518060200160405280600081525061320d565b6124d6613f9a565b6001600160a01b0381166124fc5760405162afb37360e31b815260040160405180910390fd5b61250581612e1a565b1561252357604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b612552613f15565b600d55565b61255f613f15565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b61258b613f15565b601c548114156125ae5760405163a28a88c160e01b815260040160405180910390fd5b601c55565b60006125bd611378565b82106126175760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401611694565b5090565b612623613f15565b80612641576040516363868c5560e11b815260040160405180910390fd5b600355565b61264e613f15565b611f656021838361488d565b612662613f15565b601d805461ff0019169055565b8161268d5760405163b562e8dd60e01b815260040160405180910390fd5b6003548211156126b0576040516393eeb41560e01b815260040160405180910390fd5b60235460ff166126d3576040516316851fc760e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000826126fd611378565b6127079190614f36565b11156127265760405163a4875a4960e01b815260040160405180910390fd5b60235460ff16801561273a5750601d5460ff165b15612758576040516316851fc760e11b815260040160405180910390fd5b612760611816565b61277d5760405163cb4a4a8560e01b815260040160405180910390fd5b6127878383613855565b6127a4576040516366be767160e11b815260040160405180910390fd5b600c5434146127c65760405163078d696560e31b815260040160405180910390fd5b6127cf816123ac565b6127ec57604051636c501c9960e11b815260040160405180910390fd5b6000826127f8836134f2565b6128029190614f89565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561284b57600080fd5b505afa15801561285f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128839190614fa8565b10156128a257604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156128ec57600080fd5b505afa158015612900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129249190614fa8565b10156129435760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561299757600080fd5b505af11580156129ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129cf9190614fc1565b9050806129ef57604051633c9fd93960e21b815260040160405180910390fd5b6129f76138b5565b612a03868660006138f7565b505050505050565b6000612a1682613ff4565b5192915050565b612a25613f15565b6023805460ff19166001179055565b612a3c613f15565b601d805460ff19169055565b60006001600160a01b038216612ab45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401611694565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b612ae1613f9a565b612aeb6000614122565b565b612af5613f15565b600e80549115156101000261ff0019909216919091179055565b612b17613f15565b601d805460ff19166001179055565b612b2e613f15565b601b805460ff19166001179055565b612b45613f15565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b612b78613f15565b47612b96576040516363868c5560e11b815260040160405180910390fd5b612aeb47614172565b60128181548110612baf57600080fd5b6000918252602090912001546001600160a01b0316905081565b612bd1613f15565b6016805460ff19166001179055565b7f0000000000000000000000000000000000000000000000000000000000000000612c09613371565b1115612c285760405163a4875a4960e01b815260040160405180910390fd5b600e54610100900460ff16612c5057604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b038216612c77576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600f602052604090205460ff16612cb057604051638c9f128f60e01b815260040160405180910390fd5b600c54600d54612cc09190614f36565b3414612cdf5760405163078d696560e31b815260040160405180910390fd5b6001600160a01b038216600090815260106020908152604080832084845290915290205460ff1615612d2457604051631bd64ea560e01b815260040160405180910390fd5b6001600160a01b03821660008181526010602090815260408083208584529091529020805460ff1916600117905581612d5a3390565b6001600160a01b03167fd51e3cd8003fe993628324a704bb284a9c42ae506e77f4f1ad1e80bca066dda560405160405180910390a4612d976138b5565b61159533611f5c565b612da8613f15565b80612dc6576040516363868c5560e11b815260040160405180910390fd5b602455565b612dd3613f15565b601855565b6060600580546115a890614f4e565b612def613f15565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001600160a01b038216612e425760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b612e6f613f15565b80612e8d576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015612ed057600080fd5b505afa158015612ee4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f089190614fa8565b1015612f2757604051631642df1760e21b815260040160405180910390fd5b60135460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b158015612f7557600080fd5b505af1158015612f89573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118109190614fc1565b81612fb781613928565b6001600160a01b0383163314156130105760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401611694565b6001600160a01b0383166000908152600a602052604090205460ff161561304a5760405163d947c35f60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e1146130eb57604051639b96b05160e01b815260040160405180910390fd5b600c55565b6130f8613f15565b6001600160a01b03811661311f576040516322646a9760e21b815260040160405180910390fd5b6013546001600160a01b038281169116141561314e5760405163a28a88c160e01b815260040160405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b613178613f15565b7f00000000000000000000000000000000000000000000000000000000000000008111156131b95760405163a4875a4960e01b815260040160405180910390fd5b806131d7576040516363868c5560e11b815260040160405180910390fd5b601a55565b6131e4613f15565b6123d7612a34565b6131f4613f15565b611f656022838361488d565b613208613f15565b601955565b836daaeb6d7670e522a718067333cd4e3b15613275576001600160a01b03811633141561326c5761323f858585613a4c565b61324b858585856141ff565b6132675760405162461bcd60e51b815260040161169490615016565b6132a8565b61327581613dcc565b613280858585613a4c565b61328c858585856141ff565b6132a85760405162461bcd60e51b815260040161169490615016565b5050505050565b6132b7613f15565b6016805460ff19169055565b6132cb613f15565b601f805460ff19169055565b6132df613f15565b601d805461ff001916610100179055565b6132f8613f15565b601b805460ff19169055565b60606000613310613539565b9050600061331c61430c565b9050600082511161333c5760405180602001604052806000815250613369565b816133468561431b565b8260405160200161335993929190615069565b6040516020818303038152906040525b949350505050565b60006133806002546000190190565b611387906001614f36565b613393613f15565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6133bc613f15565b6001600160a01b0381166133e3576040516322646a9760e21b815260040160405180910390fd5b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6021805461341a90614f4e565b80601f016020809104026020016040519081016040528092919081815260200182805461344690614f4e565b80156134935780601f1061346857610100808354040283529160200191613493565b820191906000526020600020905b81548152906001019060200180831161347657829003601f168201915b505050505081565b6134a3613f15565b602354610100900460ff16156134cc57604051635431b2e560e11b815260040160405180910390fd5b80516134df90602190602084019061490d565b50506023805461ff001916610100179055565b60006134fd826123ac565b61351a57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b031660009081526011602052604090206001015490565b6060602180546115a890614f4e565b613550613f15565b6001600160a01b03929092166000908152601160205260409020805460ff191691151591909117815560010155565b601f5460009060ff166135925750600190565b5060205442101590565b6135a4613f9a565b6001600160a01b0381166135ca5760405162afb37360e31b815260040160405180910390fd5b6135d381612e1a565b6135ef5760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b613618613f15565b601f805460ff19166001179055565b600081613647576040516363868c5560e11b815260040160405180910390fd5b601b5460ff1615806136615750601a5461365f611378565b115b1561368157600c54826018546136779190614f89565b6113f39190614f36565b60008261368c611378565b6136969190614f36565b9050601a5481116136c357600c54836019546136b29190614f89565b6136bc9190614f36565b9392505050565b60006136cd611378565b601a546136da91906150ac565b90506000601a54836136ec91906150ac565b9050600c54816018546136ff9190614f89565b8360195461370d9190614f89565b6137179190614f36565b6121eb9190614f36565b60606040518060800160405280604481526020016151c560449139905090565b6022805461341a90614f4e565b613756613f15565b601b80549115156101000261ff0019909216919091179055565b613778613f15565b4281101561379957604051639eea0a2f60e01b815260040160405180910390fd5b601e55565b6137a6613f9a565b6001600160a01b03811661380b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611694565b61381481614122565b50565b61381f613f15565b4281101561384057604051639eea0a2f60e01b815260040160405180910390fd5b602055565b61384d613f15565b612a25612b0f565b600081613875576040516363868c5560e11b815260040160405180910390fd5b6024548261388285614418565b61388c9190614f36565b11159392505050565b601b54600090610100900460ff166138b057818310156136bc565b501490565b600c5460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f19350505050158015613814573d6000803e3d6000fd5b611f65838383604051806020016040528060008152506144b6565b6000816001111580156113f35750506002541190565b6daaeb6d7670e522a718067333cd4e3b1561381457604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561399057600080fd5b505afa1580156139a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139c89190614fc1565b61381457604051633b79c77360e21b81526001600160a01b0382166004820152602401611694565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000613a5782613ff4565b80519091506000906001600160a01b0316336001600160a01b03161480613a8e575033613a838461162b565b6001600160a01b0316145b80613aa057508151613aa09033611231565b905080613b0a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401611694565b846001600160a01b031682600001516001600160a01b031614613b7e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401611694565b6001600160a01b038416613be25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401611694565b613bf260008484600001516139f0565b6001600160a01b0385166000908152600760205260408120805460019290613c249084906001600160801b03166150c3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526007602052604081208054600194509092613c70918591166150eb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055613cf7846001614f36565b6000818152600660205260409020549091506001600160a01b0316613d8657613d1f81613912565b15613d865760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a03565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015613e1657600080fd5b505afa158015613e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e4e9190614fc1565b8015613ee05750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015613ea857600080fd5b505afa158015613ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee09190614fc1565b61381457604051633b79c77360e21b8152336004820152602401611694565b600082613f0c8584614783565b14949350505050565b600080546001600160a01b0316339081149190613f3190612e1a565b90508180613f3c5750805b6115955760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401611694565b6000546001600160a01b03163314612aeb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611694565b6040805180820190915260008082526020820152818060011115801561401b575060025481105b156140c2576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561406c579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156140bd579392505050565b61406c565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401611694565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b601554811015611595576141ed6012828154811061419557614195615116565b9060005260206000200160009054906101000a90046001600160a01b03166064601484815481106141c8576141c8615116565b9060005260206000200154856141de9190614f89565b6141e89190615142565b6147f7565b806141f781614ffb565b915050614175565b60006001600160a01b0384163b1561430157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614243903390899088908890600401615156565b602060405180830381600087803b15801561425d57600080fd5b505af192505050801561428d575060408051601f3d908101601f1916820190925261428a91810190615193565b60015b6142e7573d8080156142bb576040519150601f19603f3d011682016040523d82523d6000602084013e6142c0565b606091505b5080516142df5760405162461bcd60e51b815260040161169490615016565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613369565b506001949350505050565b6060602280546115a890614f4e565b60608161433f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614369578061435381614ffb565b91506143629050600a83615142565b9150614343565b6000816001600160401b0381111561438357614383614d70565b6040519080825280601f01601f1916602001820160405280156143ad576020820181803683370190505b5090505b8415613369576143c26001836150ac565b91506143cf600a866151b0565b6143da906030614f36565b60f81b8183815181106143ef576143ef615116565b60200101906001600160f81b031916908160001a905350614411600a86615142565b94506143b1565b60006001600160a01b03821661448a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401611694565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166145195760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611694565b61452281613912565b1561456f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401611694565b826145d1576003548411156145d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401611694565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061462d9088906150eb565b6001600160801b03168152602001856146465786614649565b60005b836020015161465891906150eb565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156147775760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461473b60008984886141ff565b6147575760405162461bcd60e51b815260040161169490615016565b8161476181614ffb565b925050808061476f90614ffb565b9150506146ee565b50600255505050505050565b600081815b84518110156147ef5760008582815181106147a5576147a5615116565b602002602001015190508083116147cb57600083815260208290526040902092506147dc565b600081815260208490526040902092505b50806147e781614ffb565b915050614788565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614844576040519150601f19603f3d011682016040523d82523d6000602084013e614849565b606091505b5050905080611f655760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401611694565b82805461489990614f4e565b90600052602060002090601f0160209004810192826148bb5760008555614901565b82601f106148d45782800160ff19823516178555614901565b82800160010185558215614901579182015b828111156149015782358255916020019190600101906148e6565b50612617929150614981565b82805461491990614f4e565b90600052602060002090601f01602090048101928261493b5760008555614901565b82601f1061495457805160ff1916838001178555614901565b82800160010185558215614901579182015b82811115614901578251825591602001919060010190614966565b5b808211156126175760008155600101614982565b6001600160e01b03198116811461381457600080fd5b6000602082840312156149be57600080fd5b81356136bc81614996565b6001600160a01b038116811461381457600080fd5b6000602082840312156149f057600080fd5b81356136bc816149c9565b60008060408385031215614a0e57600080fd5b8235614a19816149c9565b946020939093013593505050565b60005b83811015614a42578181015183820152602001614a2a565b838111156118105750506000910152565b60008151808452614a6b816020860160208601614a27565b601f01601f19169290920160200192915050565b6020815260006136bc6020830184614a53565b600060208284031215614aa457600080fd5b5035919050565b60008083601f840112614abd57600080fd5b5081356001600160401b03811115614ad457600080fd5b6020830191508360208260051b8501011115614aef57600080fd5b9250929050565b600080600080600060808688031215614b0e57600080fd5b8535614b19816149c9565b94506020860135935060408601356001600160401b03811115614b3b57600080fd5b614b4788828901614aab565b9094509250506060860135614b5b816149c9565b809150509295509295909350565b600080600060608486031215614b7e57600080fd5b8335614b89816149c9565b92506020840135614b99816149c9565b929592945050506040919091013590565b600080600060408486031215614bbf57600080fd5b8335614bca816149c9565b925060208401356001600160401b03811115614be557600080fd5b614bf186828701614aab565b9497909650939450505050565b801515811461381457600080fd5b600060208284031215614c1e57600080fd5b81356136bc81614bfe565b60008060008060608587031215614c3f57600080fd5b8435614c4a816149c9565b93506020850135925060408501356001600160401b03811115614c6c57600080fd5b614c7887828801614aab565b95989497509550505050565b60008060208385031215614c9757600080fd5b82356001600160401b0380821115614cae57600080fd5b818501915085601f830112614cc257600080fd5b813581811115614cd157600080fd5b866020828501011115614ce357600080fd5b60209290920196919550909350505050565b600080600060608486031215614d0a57600080fd5b8335614d15816149c9565b9250602084013591506040840135614d2c816149c9565b809150509250925092565b60008060408385031215614d4a57600080fd5b8235614d55816149c9565b91506020830135614d6581614bfe565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115614da057614da0614d70565b604051601f8501601f19908116603f01168101908282118183101715614dc857614dc8614d70565b81604052809350858152868686011115614de157600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215614e1157600080fd5b8435614e1c816149c9565b93506020850135614e2c816149c9565b92506040850135915060608501356001600160401b03811115614e4e57600080fd5b8501601f81018713614e5f57600080fd5b614e6e87823560208401614d86565b91505092959194509250565b600060208284031215614e8c57600080fd5b81356001600160401b03811115614ea257600080fd5b8201601f81018413614eb357600080fd5b61336984823560208401614d86565b600080600060608486031215614ed757600080fd5b8335614ee2816149c9565b92506020840135614b9981614bfe565b60008060408385031215614f0557600080fd5b8235614f10816149c9565b91506020830135614d65816149c9565b634e487b7160e01b600052601160045260246000fd5b60008219821115614f4957614f49614f20565b500190565b600181811c90821680614f6257607f821691505b60208210811415614f8357634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615614fa357614fa3614f20565b500290565b600060208284031215614fba57600080fd5b5051919050565b600060208284031215614fd357600080fd5b81516136bc81614bfe565b600060208284031215614ff057600080fd5b81516136bc816149c9565b600060001982141561500f5761500f614f20565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845161507b818460208901614a27565b84519083019061508f818360208901614a27565b84519101906150a2818360208801614a27565b0195945050505050565b6000828210156150be576150be614f20565b500390565b60006001600160801b03838116908316818110156150e3576150e3614f20565b039392505050565b60006001600160801b0380831681851680830382111561510d5761510d614f20565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826151515761515161512c565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061518990830184614a53565b9695505050505050565b6000602082840312156151a557600080fd5b81516136bc81614996565b6000826151bf576151bf61512c565b50069056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f5a4a4963743253584f73764c48573352744967522f636f6e74726163742d6d65746164617461a2646970667358221220e9aa636bbef3d99fc92d3241fe727ba0ef308999a11679a7cf8621a9c76318b364736f6c63430008090033697066733a2f2f62616679626569616c656c347865646f7636706f3668773261686132763371346e7873633676786f6473796c65643233766b75376b746a346f77712f
Deployed Bytecode
0x6080604052600436106106d25760003560e01c8063853828b61161037a578063caa0f92a116101d1578063e6c6990a11610102578063f2fde38b116100a0578063f70316631161007a578063f703166314611304578063f8c0fd2014611324578063fd19eaf014611339578063fe6757a11461135957600080fd5b8063f2fde38b146112b4578063f4637a15146112d4578063f623bb8b146112ee57600080fd5b8063e985e9c5116100dc578063e985e9c514611216578063ec3408261461125f578063ed77e19f14611274578063ee54be961461129457600080fd5b8063e6c6990a146111c7578063e7572230146111e1578063e8a3d4851461120157600080fd5b8063d547cfb71161016f578063d8d2412011610149578063d8d2412014611167578063dfdedf691461117c578063e0eddd911461119c578063e6928933146111b257600080fd5b8063d547cfb71461111c578063d7224ba014611131578063d83ae3321461114757600080fd5b8063cfc86f7b116101ab578063cfc86f7b146110b1578063cff44923146110c6578063d266f3a9146110e6578063d2e0297f1461110657600080fd5b8063caa0f92a1461105c578063cacf084214611071578063cc7e1b9a1461109157600080fd5b8063a1db9782116102ab578063b4835e0711610249578063bb1876a811610223578063bb1876a814610ffd578063bc05748e14611012578063c54826ab14611027578063c87b56dd1461103c57600080fd5b8063b4835e0714610fa8578063b88d4fde14610fc8578063b94b237614610fe857600080fd5b8063a91bd1a911610285578063a91bd1a914610f33578063ab523c6814610f53578063afe5608b14610f73578063aff3e10b14610f8857600080fd5b8063a1db978214610ed3578063a22cb46514610ef3578063a7593fb714610f1357600080fd5b80638ff4013f1161031857806395d89b41116102f257806395d89b4114610e4357806399e48d9714610e585780639b9f6e5614610e93578063a1af10ca14610eb357600080fd5b80638ff4013f14610de457806391b7f5ed14610e0457806391c4b57414610e2457600080fd5b80638b86b646116103545780638b86b64614610d835780638d859f3e14610d965780638da5cb5b14610dac5780638f4bb49714610dca57600080fd5b8063853828b614610d39578063891bbe7314610d4e57806389f26d5814610d6e57600080fd5b806343696f181161052e57806355f804b31161045f57806370a08231116103fd57806379ab3c89116103d757806379ab3c8914610ccf5780637fb8c6d314610ce4578063817c0d9c14610d0457806383c81c4114610d1957600080fd5b806370a0823114610c7a578063715018a614610c9a578063791f24db14610caf57600080fd5b80636352211e116104395780636352211e14610c1a57806367dec67814610c3a5780636ba9fd3814610c505780636d3de80614610c6557600080fd5b806355f804b314610bd257806358feaa5914610bf257806360986a7114610c0757600080fd5b806348b54eb3116104cc5780634f6ccce7116104a65780634f6ccce714610b5957806354214f6914610b79578063547520fe14610b9857806355228ca714610bb857600080fd5b806348b54eb314610b035780634ab8b5dd14610b1d5780634dde3fe114610b3357600080fd5b806345db6f7a1161050857806345db6f7a14610a89578063464c342814610aa957806346f41ed514610ac95780634783f0ef14610ae357600080fd5b806343696f1814610a1f57806344eed88114610a3f57806345c0f53314610a5557600080fd5b8063286c81371161060857806338f74162116105a65780633e07311c116105805780633e07311c146109b45780633e3e0b12146109ca57806340ccc082146109df57806342842e0e146109ff57600080fd5b806338f74162146109625780633c003254146109815780633d3f9c571461099457600080fd5b80632f745c59116105e25780632f745c59146108db57806333006786146108fb57806337912c1b1461091b57806338b903331461093b57600080fd5b8063286c81371461088f5780632913daa0146108af5780632eb4a7ab146108c557600080fd5b80630c863bb61161067557806318160ddd1161064f57806318160ddd146106d75780631aa4ba67146108465780631e9a69501461085c57806323b872dd1461086f57600080fd5b80630c863bb6146107ee57806310f05cb01461080357806316b88a1d1461083357600080fd5b80630644cefa116106b15780630644cefa1461075f57806306fdde0314610774578063081812fc14610796578063095ea7b3146107ce57600080fd5b80629a9b7b146106d757806301ffc9a7146106ff578063043a2a401461072f575b600080fd5b3480156106e357600080fd5b506106ec611378565b6040519081526020015b60405180910390f35b34801561070b57600080fd5b5061071f61071a3660046149ac565b61138c565b60405190151581526020016106f6565b34801561073b57600080fd5b5061071f61074a3660046149de565b600a6020526000908152604090205460ff1681565b61077261076d3660046149fb565b6113f9565b005b34801561078057600080fd5b50610789611599565b6040516106f69190614a7f565b3480156107a257600080fd5b506107b66107b1366004614a92565b61162b565b6040516001600160a01b0390911681526020016106f6565b3480156107da57600080fd5b506107726107e93660046149fb565b6116b9565b3480156107fa57600080fd5b5061071f611816565b34801561080f57600080fd5b5061071f61081e3660046149de565b600f6020526000908152604090205460ff1681565b610772610841366004614af6565b611838565b34801561085257600080fd5b506106ec60205481565b61077261086a3660046149fb565b611bdc565b34801561087b57600080fd5b5061077261088a366004614b69565b611f6a565b34801561089b57600080fd5b506106ec6108aa366004614a92565b611fb5565b3480156108bb57600080fd5b506106ec60035481565b3480156108d157600080fd5b506106ec601c5481565b3480156108e757600080fd5b506106ec6108f63660046149fb565b611fd6565b34801561090757600080fd5b5061071f610916366004614baa565b61214d565b34801561092757600080fd5b50610772610936366004614c0c565b6121f4565b34801561094757600080fd5b50610950600281565b60405160ff90911681526020016106f6565b34801561096e57600080fd5b50600e5461071f90610100900460ff1681565b61077261098f366004614c29565b61220f565b3480156109a057600080fd5b5061071f6109af3660046149de565b6123ac565b3480156109c057600080fd5b506106ec60155481565b3480156109d657600080fd5b506107726123cf565b3480156109eb57600080fd5b506107726109fa3660046149fb565b6123e3565b348015610a0b57600080fd5b50610772610a1a366004614b69565b612468565b348015610a2b57600080fd5b50610772610a3a3660046149de565b6124ce565b348015610a4b57600080fd5b506106ec601e5481565b348015610a6157600080fd5b506106ec7f000000000000000000000000000000000000000000000000000000000000271081565b348015610a9557600080fd5b50610772610aa4366004614a92565b61254a565b348015610ab557600080fd5b50610772610ac43660046149de565b612557565b348015610ad557600080fd5b5060165461071f9060ff1681565b348015610aef57600080fd5b50610772610afe366004614a92565b612583565b348015610b0f57600080fd5b50600e5461071f9060ff1681565b348015610b2957600080fd5b506106ec60245481565b348015610b3f57600080fd5b50600e546107b6906201000090046001600160a01b031681565b348015610b6557600080fd5b506106ec610b74366004614a92565b6125b3565b348015610b8557600080fd5b5060235461071f90610100900460ff1681565b348015610ba457600080fd5b50610772610bb3366004614a92565b61261b565b348015610bc457600080fd5b50601f5461071f9060ff1681565b348015610bde57600080fd5b50610772610bed366004614c84565b612646565b348015610bfe57600080fd5b5061077261265a565b610772610c15366004614cf5565b61266f565b348015610c2657600080fd5b506107b6610c35366004614a92565b612a0b565b348015610c4657600080fd5b506106ec60195481565b348015610c5c57600080fd5b50610772612a1d565b348015610c7157600080fd5b50610772612a34565b348015610c8657600080fd5b506106ec610c953660046149de565b612a48565b348015610ca657600080fd5b50610772612ad9565b348015610cbb57600080fd5b50610772610cca366004614c0c565b612aed565b348015610cdb57600080fd5b50610772612b0f565b348015610cf057600080fd5b506013546107b6906001600160a01b031681565b348015610d1057600080fd5b50610772612b26565b348015610d2557600080fd5b50610772610d34366004614d37565b612b3d565b348015610d4557600080fd5b50610772612b70565b348015610d5a57600080fd5b506107b6610d69366004614a92565b612b9f565b348015610d7a57600080fd5b50610772612bc9565b610772610d913660046149fb565b612be0565b348015610da257600080fd5b506106ec60185481565b348015610db857600080fd5b506000546001600160a01b03166107b6565b348015610dd657600080fd5b5060235461071f9060ff1681565b348015610df057600080fd5b50610772610dff366004614a92565b612da0565b348015610e1057600080fd5b50610772610e1f366004614a92565b612dcb565b348015610e3057600080fd5b50601d5461071f90610100900460ff1681565b348015610e4f57600080fd5b50610789612dd8565b348015610e6457600080fd5b5061071f610e733660046149fb565b601060209081526000928352604080842090915290825290205460ff1681565b348015610e9f57600080fd5b50610772610eae366004614d37565b612de7565b348015610ebf57600080fd5b5061071f610ece3660046149de565b612e1a565b348015610edf57600080fd5b50610772610eee3660046149fb565b612e67565b348015610eff57600080fd5b50610772610f0e366004614d37565b612fad565b348015610f1f57600080fd5b50610772610f2e366004614a92565b6130b7565b348015610f3f57600080fd5b50610772610f4e3660046149de565b6130f0565b348015610f5f57600080fd5b50610772610f6e366004614a92565b613170565b348015610f7f57600080fd5b506107726131dc565b348015610f9457600080fd5b50610772610fa3366004614c84565b6131ec565b348015610fb457600080fd5b50610772610fc3366004614a92565b613200565b348015610fd457600080fd5b50610772610fe3366004614dfb565b61320d565b348015610ff457600080fd5b506107726132af565b34801561100957600080fd5b506107726132c3565b34801561101e57600080fd5b506107726132d7565b34801561103357600080fd5b506107726132f0565b34801561104857600080fd5b50610789611057366004614a92565b613304565b34801561106857600080fd5b506106ec613371565b34801561107d57600080fd5b5061077261108c3660046149de565b61338b565b34801561109d57600080fd5b506107726110ac3660046149de565b6133b4565b3480156110bd57600080fd5b5061078961340d565b3480156110d257600080fd5b506107726110e1366004614e7a565b61349b565b3480156110f257600080fd5b506106ec6111013660046149de565b6134f2565b34801561111257600080fd5b506106ec600d5481565b34801561112857600080fd5b50610789613539565b34801561113d57600080fd5b506106ec600b5481565b34801561115357600080fd5b50610772611162366004614ec2565b613548565b34801561117357600080fd5b5061071f61357f565b34801561118857600080fd5b506107726111973660046149de565b61359c565b3480156111a857600080fd5b506106ec601a5481565b3480156111be57600080fd5b50610772613610565b3480156111d357600080fd5b50601d5461071f9060ff1681565b3480156111ed57600080fd5b506106ec6111fc366004614a92565b613627565b34801561120d57600080fd5b50610789613721565b34801561122257600080fd5b5061071f611231366004614ef2565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561126b57600080fd5b50610789613741565b34801561128057600080fd5b5061077261128f366004614c0c565b61374e565b3480156112a057600080fd5b506107726112af366004614a92565b613770565b3480156112c057600080fd5b506107726112cf3660046149de565b61379e565b3480156112e057600080fd5b50601b5461071f9060ff1681565b3480156112fa57600080fd5b506106ec600c5481565b34801561131057600080fd5b5061077261131f366004614a92565b613817565b34801561133057600080fd5b50610772613845565b34801561134557600080fd5b5061071f6113543660046149fb565b613855565b34801561136557600080fd5b50601b5461071f90610100900460ff1681565b60006113876002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806113bd57506001600160e01b03198216635b5e139f60e01b145b806113d857506001600160e01b0319821663780e9d6360e01b145b806113f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60165460ff161561141d5760405163380ea98360e21b815260040160405180910390fd5b8061143b5760405163b562e8dd60e01b815260040160405180910390fd5b60035481111561145e576040516393eeb41560e01b815260040160405180910390fd5b60235460ff16611481576040516316851fc760e11b815260040160405180910390fd5b60235460ff1680156114955750601d5460ff165b156114b3576040516316851fc760e11b815260040160405180910390fd5b6114bb611816565b6114d85760405163cb4a4a8560e01b815260040160405180910390fd5b6114e28282613855565b6114ff576040516366be767160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271081611529611378565b6115339190614f36565b11156115525760405163a4875a4960e01b815260040160405180910390fd5b6115643461155f83613627565b613895565b6115815760405163078d696560e31b815260040160405180910390fd5b6115896138b5565b611595828260006138f7565b5050565b6060600480546115a890614f4e565b80601f01602080910402602001604051908101604052809291908181526020018280546115d490614f4e565b80156116215780601f106115f657610100808354040283529160200191611621565b820191906000526020600020905b81548152906001019060200180831161160457829003601f168201915b5050505050905090565b600061163682613912565b61169d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b816116c381613928565b60006116ce83612a0b565b9050806001600160a01b0316846001600160a01b0316141561173d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401611694565b6001600160a01b0384166000908152600a602052604090205460ff16156117775760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061179357506117938133611231565b6118055760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401611694565b6118108484836139f0565b50505050565b601d54600090610100900460ff1661182e5750600190565b50601e5442101590565b601d5460ff16158061184d575060235460ff16155b1561186b576040516309c7220160e31b815260040160405180910390fd5b61187685848461214d565b6118935760405163097b24df60e41b815260040160405180910390fd5b836118b15760405163b562e8dd60e01b815260040160405180910390fd5b6003548411156118d4576040516393eeb41560e01b815260040160405180910390fd5b6118de8585613855565b6118fb576040516366be767160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271084611925611378565b61192f9190614f36565b111561194e5760405163a4875a4960e01b815260040160405180910390fd5b61195661357f565b6119735760405163010450c160e31b815260040160405180910390fd5b600c5434146119955760405163078d696560e31b815260040160405180910390fd5b61199e816123ac565b6119bb57604051636c501c9960e11b815260040160405180910390fd5b6000846119c7836134f2565b6119d19190614f89565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b158015611a1a57600080fd5b505afa158015611a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a529190614fa8565b1015611a7157604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015611abb57600080fd5b505afa158015611acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af39190614fa8565b1015611b125760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b158015611b6657600080fd5b505af1158015611b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9e9190614fc1565b905080611bbe57604051633c9fd93960e21b815260040160405180910390fd5b611bc66138b5565b611bd2888860006138f7565b5050505050505050565b7f0000000000000000000000000000000000000000000000000000000000002710611c05613371565b1115611c245760405163a4875a4960e01b815260040160405180910390fd5b600e5460ff16611c4757604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b038216611c6e576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600f602052604090205460ff16611ca757604051638c9f128f60e01b815260040160405180910390fd5b600c54600d54611cb79190614f36565b3414611cd65760405163078d696560e31b815260040160405180910390fd5b6001600160a01b038216600090815260106020908152604080832084845290915290205460ff1615611d1b57604051631bd64ea560e01b815260040160405180910390fd5b81336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611d6157600080fd5b505afa158015611d75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d999190614fde565b6001600160a01b031614611dc057604051630a82879560e11b815260040160405180910390fd5b60405163020604bf60e21b81526004810183905230906001600160a01b0383169063081812fc9060240160206040518083038186803b158015611e0257600080fd5b505afa158015611e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3a9190614fde565b6001600160a01b031614611e61576040516392395ac160e01b815260040160405180910390fd5b6001600160a01b0381166342842e0e33600e5460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015262010000909104909116602482015260448101859052606401600060405180830381600087803b158015611ecb57600080fd5b505af1158015611edf573d6000803e3d6000fd5b5050506001600160a01b03841660008181526010602090815260408083208784529091529020805460ff19166001179055905082611f1a3390565b6001600160a01b03167f753fa485a7db01b79a5bf240795c914378b8fb5fcb2a848f2acd51aa6804adbf60405160405180910390a4611f576138b5565b611f65335b600160006138f7565b505050565b826daaeb6d7670e522a718067333cd4e3b15611faa576001600160a01b038116331415611fa157611f9c848484613a4c565b611810565b611faa81613dcc565b611810848484613a4c565b60148181548110611fc557600080fd5b600091825260209091200154905081565b6000611fe183612a48565b821061203a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401611694565b6000612044611378565b905060008060005b838110156120ed576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561209e57805192505b876001600160a01b0316836001600160a01b031614156120da57868414156120cc575093506113f392505050565b836120d681614ffb565b9450505b50806120e581614ffb565b91505061204c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401611694565b601c54600090612170576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506121eb84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601c549150849050613eff565b95945050505050565b6121fc613f15565b600e805460ff1916911515919091179055565b60165460ff16156122335760405163380ea98360e21b815260040160405180910390fd5b601d5460ff161580612248575060235460ff16155b15612266576040516309c7220160e31b815260040160405180910390fd5b61227184838361214d565b61228e5760405163097b24df60e41b815260040160405180910390fd5b826122ac5760405163b562e8dd60e01b815260040160405180910390fd5b6003548311156122cf576040516393eeb41560e01b815260040160405180910390fd5b6122d98484613855565b6122f6576040516366be767160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271083612320611378565b61232a9190614f36565b11156123495760405163a4875a4960e01b815260040160405180910390fd5b6123563461155f85613627565b6123735760405163078d696560e31b815260040160405180910390fd5b61237b61357f565b6123985760405163010450c160e31b815260040160405180910390fd5b6123a06138b5565b611810848460006138f7565b6001600160a01b031660009081526011602052604090205460ff16151560011490565b6123d7613f15565b6023805460ff19169055565b6123eb613f15565b806124095760405163b562e8dd60e01b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271081612433611378565b61243d9190614f36565b111561245c5760405163a4875a4960e01b815260040160405180910390fd5b611595828260016138f7565b826daaeb6d7670e522a718067333cd4e3b156124b3576001600160a01b0381163314156124aa57611f9c8484846040518060200160405280600081525061320d565b6124b381613dcc565b6118108484846040518060200160405280600081525061320d565b6124d6613f9a565b6001600160a01b0381166124fc5760405162afb37360e31b815260040160405180910390fd5b61250581612e1a565b1561252357604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b612552613f15565b600d55565b61255f613f15565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b61258b613f15565b601c548114156125ae5760405163a28a88c160e01b815260040160405180910390fd5b601c55565b60006125bd611378565b82106126175760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401611694565b5090565b612623613f15565b80612641576040516363868c5560e11b815260040160405180910390fd5b600355565b61264e613f15565b611f656021838361488d565b612662613f15565b601d805461ff0019169055565b8161268d5760405163b562e8dd60e01b815260040160405180910390fd5b6003548211156126b0576040516393eeb41560e01b815260040160405180910390fd5b60235460ff166126d3576040516316851fc760e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710826126fd611378565b6127079190614f36565b11156127265760405163a4875a4960e01b815260040160405180910390fd5b60235460ff16801561273a5750601d5460ff165b15612758576040516316851fc760e11b815260040160405180910390fd5b612760611816565b61277d5760405163cb4a4a8560e01b815260040160405180910390fd5b6127878383613855565b6127a4576040516366be767160e11b815260040160405180910390fd5b600c5434146127c65760405163078d696560e31b815260040160405180910390fd5b6127cf816123ac565b6127ec57604051636c501c9960e11b815260040160405180910390fd5b6000826127f8836134f2565b6128029190614f89565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561284b57600080fd5b505afa15801561285f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128839190614fa8565b10156128a257604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156128ec57600080fd5b505afa158015612900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129249190614fa8565b10156129435760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561299757600080fd5b505af11580156129ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129cf9190614fc1565b9050806129ef57604051633c9fd93960e21b815260040160405180910390fd5b6129f76138b5565b612a03868660006138f7565b505050505050565b6000612a1682613ff4565b5192915050565b612a25613f15565b6023805460ff19166001179055565b612a3c613f15565b601d805460ff19169055565b60006001600160a01b038216612ab45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401611694565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b612ae1613f9a565b612aeb6000614122565b565b612af5613f15565b600e80549115156101000261ff0019909216919091179055565b612b17613f15565b601d805460ff19166001179055565b612b2e613f15565b601b805460ff19166001179055565b612b45613f15565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b612b78613f15565b47612b96576040516363868c5560e11b815260040160405180910390fd5b612aeb47614172565b60128181548110612baf57600080fd5b6000918252602090912001546001600160a01b0316905081565b612bd1613f15565b6016805460ff19166001179055565b7f0000000000000000000000000000000000000000000000000000000000002710612c09613371565b1115612c285760405163a4875a4960e01b815260040160405180910390fd5b600e54610100900460ff16612c5057604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b038216612c77576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600f602052604090205460ff16612cb057604051638c9f128f60e01b815260040160405180910390fd5b600c54600d54612cc09190614f36565b3414612cdf5760405163078d696560e31b815260040160405180910390fd5b6001600160a01b038216600090815260106020908152604080832084845290915290205460ff1615612d2457604051631bd64ea560e01b815260040160405180910390fd5b6001600160a01b03821660008181526010602090815260408083208584529091529020805460ff1916600117905581612d5a3390565b6001600160a01b03167fd51e3cd8003fe993628324a704bb284a9c42ae506e77f4f1ad1e80bca066dda560405160405180910390a4612d976138b5565b61159533611f5c565b612da8613f15565b80612dc6576040516363868c5560e11b815260040160405180910390fd5b602455565b612dd3613f15565b601855565b6060600580546115a890614f4e565b612def613f15565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001600160a01b038216612e425760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b612e6f613f15565b80612e8d576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015612ed057600080fd5b505afa158015612ee4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f089190614fa8565b1015612f2757604051631642df1760e21b815260040160405180910390fd5b60135460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b158015612f7557600080fd5b505af1158015612f89573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118109190614fc1565b81612fb781613928565b6001600160a01b0383163314156130105760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401611694565b6001600160a01b0383166000908152600a602052604090205460ff161561304a5760405163d947c35f60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e1146130eb57604051639b96b05160e01b815260040160405180910390fd5b600c55565b6130f8613f15565b6001600160a01b03811661311f576040516322646a9760e21b815260040160405180910390fd5b6013546001600160a01b038281169116141561314e5760405163a28a88c160e01b815260040160405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b613178613f15565b7f00000000000000000000000000000000000000000000000000000000000027108111156131b95760405163a4875a4960e01b815260040160405180910390fd5b806131d7576040516363868c5560e11b815260040160405180910390fd5b601a55565b6131e4613f15565b6123d7612a34565b6131f4613f15565b611f656022838361488d565b613208613f15565b601955565b836daaeb6d7670e522a718067333cd4e3b15613275576001600160a01b03811633141561326c5761323f858585613a4c565b61324b858585856141ff565b6132675760405162461bcd60e51b815260040161169490615016565b6132a8565b61327581613dcc565b613280858585613a4c565b61328c858585856141ff565b6132a85760405162461bcd60e51b815260040161169490615016565b5050505050565b6132b7613f15565b6016805460ff19169055565b6132cb613f15565b601f805460ff19169055565b6132df613f15565b601d805461ff001916610100179055565b6132f8613f15565b601b805460ff19169055565b60606000613310613539565b9050600061331c61430c565b9050600082511161333c5760405180602001604052806000815250613369565b816133468561431b565b8260405160200161335993929190615069565b6040516020818303038152906040525b949350505050565b60006133806002546000190190565b611387906001614f36565b613393613f15565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6133bc613f15565b6001600160a01b0381166133e3576040516322646a9760e21b815260040160405180910390fd5b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6021805461341a90614f4e565b80601f016020809104026020016040519081016040528092919081815260200182805461344690614f4e565b80156134935780601f1061346857610100808354040283529160200191613493565b820191906000526020600020905b81548152906001019060200180831161347657829003601f168201915b505050505081565b6134a3613f15565b602354610100900460ff16156134cc57604051635431b2e560e11b815260040160405180910390fd5b80516134df90602190602084019061490d565b50506023805461ff001916610100179055565b60006134fd826123ac565b61351a57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b031660009081526011602052604090206001015490565b6060602180546115a890614f4e565b613550613f15565b6001600160a01b03929092166000908152601160205260409020805460ff191691151591909117815560010155565b601f5460009060ff166135925750600190565b5060205442101590565b6135a4613f9a565b6001600160a01b0381166135ca5760405162afb37360e31b815260040160405180910390fd5b6135d381612e1a565b6135ef5760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b613618613f15565b601f805460ff19166001179055565b600081613647576040516363868c5560e11b815260040160405180910390fd5b601b5460ff1615806136615750601a5461365f611378565b115b1561368157600c54826018546136779190614f89565b6113f39190614f36565b60008261368c611378565b6136969190614f36565b9050601a5481116136c357600c54836019546136b29190614f89565b6136bc9190614f36565b9392505050565b60006136cd611378565b601a546136da91906150ac565b90506000601a54836136ec91906150ac565b9050600c54816018546136ff9190614f89565b8360195461370d9190614f89565b6137179190614f36565b6121eb9190614f36565b60606040518060800160405280604481526020016151c560449139905090565b6022805461341a90614f4e565b613756613f15565b601b80549115156101000261ff0019909216919091179055565b613778613f15565b4281101561379957604051639eea0a2f60e01b815260040160405180910390fd5b601e55565b6137a6613f9a565b6001600160a01b03811661380b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611694565b61381481614122565b50565b61381f613f15565b4281101561384057604051639eea0a2f60e01b815260040160405180910390fd5b602055565b61384d613f15565b612a25612b0f565b600081613875576040516363868c5560e11b815260040160405180910390fd5b6024548261388285614418565b61388c9190614f36565b11159392505050565b601b54600090610100900460ff166138b057818310156136bc565b501490565b600c5460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f19350505050158015613814573d6000803e3d6000fd5b611f65838383604051806020016040528060008152506144b6565b6000816001111580156113f35750506002541190565b6daaeb6d7670e522a718067333cd4e3b1561381457604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561399057600080fd5b505afa1580156139a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139c89190614fc1565b61381457604051633b79c77360e21b81526001600160a01b0382166004820152602401611694565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000613a5782613ff4565b80519091506000906001600160a01b0316336001600160a01b03161480613a8e575033613a838461162b565b6001600160a01b0316145b80613aa057508151613aa09033611231565b905080613b0a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401611694565b846001600160a01b031682600001516001600160a01b031614613b7e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401611694565b6001600160a01b038416613be25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401611694565b613bf260008484600001516139f0565b6001600160a01b0385166000908152600760205260408120805460019290613c249084906001600160801b03166150c3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526007602052604081208054600194509092613c70918591166150eb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055613cf7846001614f36565b6000818152600660205260409020549091506001600160a01b0316613d8657613d1f81613912565b15613d865760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a03565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015613e1657600080fd5b505afa158015613e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e4e9190614fc1565b8015613ee05750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015613ea857600080fd5b505afa158015613ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee09190614fc1565b61381457604051633b79c77360e21b8152336004820152602401611694565b600082613f0c8584614783565b14949350505050565b600080546001600160a01b0316339081149190613f3190612e1a565b90508180613f3c5750805b6115955760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401611694565b6000546001600160a01b03163314612aeb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611694565b6040805180820190915260008082526020820152818060011115801561401b575060025481105b156140c2576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561406c579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156140bd579392505050565b61406c565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401611694565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b601554811015611595576141ed6012828154811061419557614195615116565b9060005260206000200160009054906101000a90046001600160a01b03166064601484815481106141c8576141c8615116565b9060005260206000200154856141de9190614f89565b6141e89190615142565b6147f7565b806141f781614ffb565b915050614175565b60006001600160a01b0384163b1561430157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614243903390899088908890600401615156565b602060405180830381600087803b15801561425d57600080fd5b505af192505050801561428d575060408051601f3d908101601f1916820190925261428a91810190615193565b60015b6142e7573d8080156142bb576040519150601f19603f3d011682016040523d82523d6000602084013e6142c0565b606091505b5080516142df5760405162461bcd60e51b815260040161169490615016565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613369565b506001949350505050565b6060602280546115a890614f4e565b60608161433f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614369578061435381614ffb565b91506143629050600a83615142565b9150614343565b6000816001600160401b0381111561438357614383614d70565b6040519080825280601f01601f1916602001820160405280156143ad576020820181803683370190505b5090505b8415613369576143c26001836150ac565b91506143cf600a866151b0565b6143da906030614f36565b60f81b8183815181106143ef576143ef615116565b60200101906001600160f81b031916908160001a905350614411600a86615142565b94506143b1565b60006001600160a01b03821661448a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401611694565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166145195760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611694565b61452281613912565b1561456f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401611694565b826145d1576003548411156145d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401611694565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061462d9088906150eb565b6001600160801b03168152602001856146465786614649565b60005b836020015161465891906150eb565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156147775760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461473b60008984886141ff565b6147575760405162461bcd60e51b815260040161169490615016565b8161476181614ffb565b925050808061476f90614ffb565b9150506146ee565b50600255505050505050565b600081815b84518110156147ef5760008582815181106147a5576147a5615116565b602002602001015190508083116147cb57600083815260208290526040902092506147dc565b600081815260208490526040902092505b50806147e781614ffb565b915050614788565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614844576040519150601f19603f3d011682016040523d82523d6000602084013e614849565b606091505b5050905080611f655760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401611694565b82805461489990614f4e565b90600052602060002090601f0160209004810192826148bb5760008555614901565b82601f106148d45782800160ff19823516178555614901565b82800160010185558215614901579182015b828111156149015782358255916020019190600101906148e6565b50612617929150614981565b82805461491990614f4e565b90600052602060002090601f01602090048101928261493b5760008555614901565b82601f1061495457805160ff1916838001178555614901565b82800160010185558215614901579182015b82811115614901578251825591602001919060010190614966565b5b808211156126175760008155600101614982565b6001600160e01b03198116811461381457600080fd5b6000602082840312156149be57600080fd5b81356136bc81614996565b6001600160a01b038116811461381457600080fd5b6000602082840312156149f057600080fd5b81356136bc816149c9565b60008060408385031215614a0e57600080fd5b8235614a19816149c9565b946020939093013593505050565b60005b83811015614a42578181015183820152602001614a2a565b838111156118105750506000910152565b60008151808452614a6b816020860160208601614a27565b601f01601f19169290920160200192915050565b6020815260006136bc6020830184614a53565b600060208284031215614aa457600080fd5b5035919050565b60008083601f840112614abd57600080fd5b5081356001600160401b03811115614ad457600080fd5b6020830191508360208260051b8501011115614aef57600080fd5b9250929050565b600080600080600060808688031215614b0e57600080fd5b8535614b19816149c9565b94506020860135935060408601356001600160401b03811115614b3b57600080fd5b614b4788828901614aab565b9094509250506060860135614b5b816149c9565b809150509295509295909350565b600080600060608486031215614b7e57600080fd5b8335614b89816149c9565b92506020840135614b99816149c9565b929592945050506040919091013590565b600080600060408486031215614bbf57600080fd5b8335614bca816149c9565b925060208401356001600160401b03811115614be557600080fd5b614bf186828701614aab565b9497909650939450505050565b801515811461381457600080fd5b600060208284031215614c1e57600080fd5b81356136bc81614bfe565b60008060008060608587031215614c3f57600080fd5b8435614c4a816149c9565b93506020850135925060408501356001600160401b03811115614c6c57600080fd5b614c7887828801614aab565b95989497509550505050565b60008060208385031215614c9757600080fd5b82356001600160401b0380821115614cae57600080fd5b818501915085601f830112614cc257600080fd5b813581811115614cd157600080fd5b866020828501011115614ce357600080fd5b60209290920196919550909350505050565b600080600060608486031215614d0a57600080fd5b8335614d15816149c9565b9250602084013591506040840135614d2c816149c9565b809150509250925092565b60008060408385031215614d4a57600080fd5b8235614d55816149c9565b91506020830135614d6581614bfe565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115614da057614da0614d70565b604051601f8501601f19908116603f01168101908282118183101715614dc857614dc8614d70565b81604052809350858152868686011115614de157600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215614e1157600080fd5b8435614e1c816149c9565b93506020850135614e2c816149c9565b92506040850135915060608501356001600160401b03811115614e4e57600080fd5b8501601f81018713614e5f57600080fd5b614e6e87823560208401614d86565b91505092959194509250565b600060208284031215614e8c57600080fd5b81356001600160401b03811115614ea257600080fd5b8201601f81018413614eb357600080fd5b61336984823560208401614d86565b600080600060608486031215614ed757600080fd5b8335614ee2816149c9565b92506020840135614b9981614bfe565b60008060408385031215614f0557600080fd5b8235614f10816149c9565b91506020830135614d65816149c9565b634e487b7160e01b600052601160045260246000fd5b60008219821115614f4957614f49614f20565b500190565b600181811c90821680614f6257607f821691505b60208210811415614f8357634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615614fa357614fa3614f20565b500290565b600060208284031215614fba57600080fd5b5051919050565b600060208284031215614fd357600080fd5b81516136bc81614bfe565b600060208284031215614ff057600080fd5b81516136bc816149c9565b600060001982141561500f5761500f614f20565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845161507b818460208901614a27565b84519083019061508f818360208901614a27565b84519101906150a2818360208801614a27565b0195945050505050565b6000828210156150be576150be614f20565b500390565b60006001600160801b03838116908316818110156150e3576150e3614f20565b039392505050565b60006001600160801b0380831681851680830382111561510d5761510d614f20565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826151515761515161512c565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061518990830184614a53565b9695505050505050565b6000602082840312156151a557600080fd5b81516136bc81614996565b6000826151bf576151bf61512c565b50069056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f5a4a4963743253584f73764c48573352744967522f636f6e74726163742d6d65746164617461a2646970667358221220e9aa636bbef3d99fc92d3241fe727ba0ef308999a11679a7cf8621a9c76318b364736f6c63430008090033
Deployed Bytecode Sourcemap
88597:102:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44422:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;44422:90:0;;;;;;;;46174:370;;;;;;;;;;-1:-1:-1;46174:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;46174:370:0;582:187:1;43311:59:0;;;;;;;;;;-1:-1:-1;43311:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;80263:769;;;;;;:::i;:::-;;:::i;:::-;;48239:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50924:204::-;;;;;;;;;;-1:-1:-1;50924:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2582:32:1;;;2564:51;;2552:2;2537:18;50924:204:0;2418:203:1;50362:504:0;;;;;;;;;;-1:-1:-1;50362:504:0;;;;;:::i;:::-;;:::i;67873:180::-;;;;;;;;;;;;;:::i;61943:51::-;;;;;;;;;;-1:-1:-1;61943:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;84411:1434;;;;;;:::i;:::-;;:::i;68166:45::-;;;;;;;;;;;;;;;;63903:1581;;;;;;:::i;:::-;;:::i;51911:168::-;;;;;;;;;;-1:-1:-1;51911:168:0;;;;;:::i;:::-;;:::i;70149:37::-;;;;;;;;;;-1:-1:-1;70149:37:0;;;;;:::i;:::-;;:::i;42040:27::-;;;;;;;;;;;;;;;;39957:25;;;;;;;;;;;;;;;;45366:744;;;;;;;;;;-1:-1:-1;45366:744:0;;;;;:::i;:::-;;:::i;40600:282::-;;;;;;;;;;-1:-1:-1;40600:282:0;;;;;:::i;:::-;;:::i;62410:114::-;;;;;;;;;;-1:-1:-1;62410:114:0;;;;;:::i;:::-;;:::i;79133:42::-;;;;;;;;;;;;79174:1;79133:42;;;;;5546:4:1;5534:17;;;5516:36;;5504:2;5489:18;79133:42:0;5374:184:1;61768:36:0;;;;;;;;;;-1:-1:-1;61768:36:0;;;;;;;;;;;83224:843;;;;;;:::i;:::-;;:::i;71779:170::-;;;;;;;;;;-1:-1:-1;71779:170:0;;;;;:::i;:::-;;:::i;70191:38::-;;;;;;;;;;;;;;;;82814:84;;;;;;;;;;;;;:::i;79750:247::-;;;;;;;;;;-1:-1:-1;79750:247:0;;;;;:::i;:::-;;:::i;52142:183::-;;;;;;;;;;-1:-1:-1;52142:183:0;;;;;:::i;:::-;;:::i;36022:210::-;;;;;;;;;;-1:-1:-1;36022:210:0;;;;;:::i;:::-;;:::i;67127:42::-;;;;;;;;;;;;;;;;41996:39;;;;;;;;;;;;;;;62855:136;;;;;;;;;;-1:-1:-1;62855:136:0;;;;;:::i;:::-;;:::i;73333:161::-;;;;;;;;;;-1:-1:-1;73333:161:0;;;;;:::i;:::-;;:::i;70234:32::-;;;;;;;;;;-1:-1:-1;70234:32:0;;;;;;;;40196:181;;;;;;;;;;-1:-1:-1;40196:181:0;;;;;:::i;:::-;;:::i;61730:33::-;;;;;;;;;;-1:-1:-1;61730:33:0;;;;;;;;79413:36;;;;;;;;;;;;;;;;61809:77;;;;;;;;;;-1:-1:-1;61809:77:0;;;;;;;-1:-1:-1;;;;;61809:77:0;;;44898:177;;;;;;;;;;-1:-1:-1;44898:177:0;;;;;:::i;:::-;;:::i;79378:22::-;;;;;;;;;;-1:-1:-1;79378:22:0;;;;;;;;;;;87328:170;;;;;;;;;;-1:-1:-1;87328:170:0;;;;;:::i;:::-;;:::i;68118:43::-;;;;;;;;;;-1:-1:-1;68118:43:0;;;;;;;;88234:106;;;;;;;;;;-1:-1:-1;88234:106:0;;;;;:::i;:::-;;:::i;67636:98::-;;;;;;;;;;;;;:::i;81359:1356::-;;;;;;:::i;:::-;;:::i;48062:118::-;;;;;;;;;;-1:-1:-1;48062:118:0;;;;;:::i;:::-;;:::i;76290:46::-;;;;;;;;;;;;;;;;82723:83;;;;;;;;;;;;;:::i;41003:103::-;;;;;;;;;;;;;:::i;46600:211::-;;;;;;;;;;-1:-1:-1;46600:211:0;;;;;:::i;:::-;;:::i;28666:103::-;;;;;;;;;;;;;:::i;62617:120::-;;;;;;;;;;-1:-1:-1;62617:120:0;;;;;:::i;:::-;;:::i;40896:99::-;;;;;;;;;;;;;:::i;70072:72::-;;;;;;;;;;-1:-1:-1;70072:72:0;;;;-1:-1:-1;;;;;70072:72:0;;;76436:102;;;;;;;;;;;;;:::i;50149:159::-;;;;;;;;;;-1:-1:-1;50149:159:0;;;;;:::i;:::-;;:::i;70277:162::-;;;;;;;;;;;;;:::i;69944:123::-;;;;;;;;;;-1:-1:-1;69944:123:0;;;;;:::i;:::-;;:::i;74050:97::-;;;;;;;;;;;;;:::i;65792:744::-;;;;;;:::i;:::-;;:::i;76250:35::-;;;;;;;;;;;;;;;;27944:87;;;;;;;;;;-1:-1:-1;27990:7:0;28017:6;-1:-1:-1;;;;;28017:6:0;27944:87;;79340:31;;;;;;;;;;-1:-1:-1;79340:31:0;;;;;;;;86973:179;;;;;;;;;;-1:-1:-1;86973:179:0;;;;;:::i;:::-;;:::i;77444:90::-;;;;;;;;;;-1:-1:-1;77444:90:0;;;;;:::i;:::-;;:::i;67082:40::-;;;;;;;;;;-1:-1:-1;67082:40:0;;;;;;;;;;;48394:98;;;;;;;;;;;;;:::i;61999:68::-;;;;;;;;;;-1:-1:-1;61999:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;62167:154;;;;;;;;;;-1:-1:-1;62167:154:0;;;;;:::i;:::-;;:::i;36729:182::-;;;;;;;;;;-1:-1:-1;36729:182:0;;;;;:::i;:::-;;:::i;71184:417::-;;;;;;;;;;-1:-1:-1;71184:417:0;;;;;:::i;:::-;;:::i;51192:411::-;;;;;;;;;;-1:-1:-1;51192:411:0;;;;;:::i;:::-;;:::i;60711:135::-;;;;;;;;;;-1:-1:-1;60711:135:0;;;;;:::i;:::-;;:::i;74493:261::-;;;;;;;;;;-1:-1:-1;74493:261:0;;;;;:::i;:::-;;:::i;76817:248::-;;;;;;;;;;-1:-1:-1;76817:248:0;;;;;:::i;:::-;;:::i;86272:128::-;;;;;;;;;;;;;:::i;88346:135::-;;;;;;;;;;-1:-1:-1;88346:135:0;;;;;:::i;:::-;;:::i;77189:115::-;;;;;;;;;;-1:-1:-1;77189:115:0;;;;;:::i;:::-;;:::i;52388:337::-;;;;;;;;;;-1:-1:-1;52388:337:0;;;;;:::i;:::-;;:::i;74234:99::-;;;;;;;;;;;;;:::i;68691:104::-;;;;;;;;;;;;;:::i;67537:93::-;;;;;;;;;;;;;:::i;76544:104::-;;;;;;;;;;;;;:::i;48555:351::-;;;;;;;;;;-1:-1:-1;48555:351:0;;;;;:::i;:::-;;:::i;44518:96::-;;;;;;;;;;;;;:::i;73801:163::-;;;;;;;;;;-1:-1:-1;73801:163:0;;;;;:::i;:::-;;:::i;63327:213::-;;;;;;;;;;-1:-1:-1;63327:213:0;;;;;:::i;:::-;;:::i;79182:99::-;;;;;;;;;;;;;:::i;87516:202::-;;;;;;;;;;-1:-1:-1;87516:202:0;;;;;:::i;:::-;;:::i;72107:253::-;;;;;;;;;;-1:-1:-1;72107:253:0;;;;;:::i;:::-;;:::i;61681:44::-;;;;;;;;;;;;;;;;88136:92;;;;;;;;;;;;;:::i;57022:43::-;;;;;;;;;;;;;;;;72726:304;;;;;;;;;;-1:-1:-1;72726:304:0;;;;;:::i;:::-;;:::i;68801:191::-;;;;;;;;;;;;;:::i;36375:215::-;;;;;;;;;;-1:-1:-1;36375:215:0;;;;;:::i;:::-;;:::i;76341:41::-;;;;;;;;;;;;;;;;68586:99;;;;;;;;;;;;;:::i;39989:37::-;;;;;;;;;;-1:-1:-1;39989:37:0;;;;;;;;77540:1242;;;;;;;;;;-1:-1:-1;77540:1242:0;;;;;:::i;:::-;;:::i;87736:149::-;;;;;;;;;;;;;:::i;51666:186::-;;;;;;;;;;-1:-1:-1;51666:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;51811:25:0;;;51788:4;51811:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51666:186;79288:43;;;;;;;;;;;;;:::i;75515:105::-;;;;;;;;;;-1:-1:-1;75515:105:0;;;;;:::i;:::-;;:::i;67347:184::-;;;;;;;;;;-1:-1:-1;67347:184:0;;;;;:::i;:::-;;:::i;28922:201::-;;;;;;;;;;-1:-1:-1;28922:201:0;;;;;:::i;:::-;;:::i;76387:42::-;;;;;;;;;;-1:-1:-1;76387:42:0;;;;;;;;60563:44;;;;;;;;;;;;;;;;68390:190;;;;;;;;;;-1:-1:-1;68390:190:0;;;;;:::i;:::-;;:::i;85996:125::-;;;;;;;;;;;;;:::i;86561:219::-;;;;;;;;;;-1:-1:-1;86561:219:0;;;;;:::i;:::-;;:::i;75476:32::-;;;;;;;;;;-1:-1:-1;75476:32:0;;;;;;;;;;;44422:90;44469:7;44492:14;44786:12;;-1:-1:-1;;44786:30:0;;44697:132;44492:14;44485:21;;44422:90;:::o;46174:370::-;46301:4;-1:-1:-1;;;;;;46331:40:0;;-1:-1:-1;;;46331:40:0;;:99;;-1:-1:-1;;;;;;;46382:48:0;;-1:-1:-1;;;46382:48:0;46331:99;:160;;;-1:-1:-1;;;;;;;46441:50:0;;-1:-1:-1;;;46441:50:0;46331:160;:207;;;-1:-1:-1;;;;;;;;;;14438:40:0;;;46502:36;46317:221;46174:370;-1:-1:-1;;46174:370:0:o;80263:769::-;80346:20;;;;80343:57;;;80375:25;;-1:-1:-1;;;80375:25:0;;;;;;;;;;;80343:57;80414:12;80411:42;;80435:18;;-1:-1:-1;;;80435:18:0;;;;;;;;;;;80411:42;80477:12;;80467:7;:22;80464:58;;;80498:24;;-1:-1:-1;;;80498:24:0;;;;;;;;;;;80464:58;80537:11;;;;80533:42;;80557:18;;-1:-1:-1;;;80557:18:0;;;;;;;;;;;80533:42;80589:11;;;;:32;;;;-1:-1:-1;80604:17:0;;;;80589:32;80586:62;;;80630:18;;-1:-1:-1;;;80630:18:0;;;;;;;;;;;80586:62;80663:22;:20;:22::i;:::-;80659:63;;80694:28;;-1:-1:-1;;;80694:28:0;;;;;;;;;;;80659:63;80737:27;80751:3;80756:7;80737:13;:27::i;:::-;80733:61;;80773:21;;-1:-1:-1;;;80773:21:0;;;;;;;;;;;80733:61;80837:14;80827:7;80808:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;80805:68;;;80860:13;;-1:-1:-1;;;80860:13:0;;;;;;;;;;;80805:68;80888:42;80901:9;80912:17;80921:7;80912:8;:17::i;:::-;80888:12;:42::i;:::-;80884:71;;80939:16;;-1:-1:-1;;;80939:16:0;;;;;;;;;;;80884:71;80966:17;:15;:17::i;:::-;80994:30;81004:3;81009:7;81018:5;80994:9;:30::i;:::-;80263:769;;:::o;48239:94::-;48293:13;48322:5;48315:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48239:94;:::o;50924:204::-;50992:7;51016:16;51024:7;51016;:16::i;:::-;51008:74;;;;-1:-1:-1;;;51008:74:0;;11560:2:1;51008:74:0;;;11542:21:1;11599:2;11579:18;;;11572:30;11638:34;11618:18;;;11611:62;-1:-1:-1;;;11689:18:1;;;11682:43;11742:19;;51008:74:0;;;;;;;;;-1:-1:-1;51098:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;51098:24:0;;50924:204::o;50362:504::-;50452:2;33899:30;33920:8;33899:20;:30::i;:::-;50463:13:::1;50479:24;50495:7;50479:15;:24::i;:::-;50463:40;;50524:5;-1:-1:-1::0;;;;;50518:11:0::1;:2;-1:-1:-1::0;;;;;50518:11:0::1;;;50510:58;;;::::0;-1:-1:-1;;;50510:58:0;;11974:2:1;50510:58:0::1;::::0;::::1;11956:21:1::0;12013:2;11993:18;;;11986:30;12052:34;12032:18;;;12025:62;-1:-1:-1;;;12103:18:1;;;12096:32;12145:19;;50510:58:0::1;11772:398:1::0;50510:58:0::1;-1:-1:-1::0;;;;;50578:31:0;::::1;;::::0;;;:27:::1;:31;::::0;;;;;::::1;;50575:86;;;50618:43;;-1:-1:-1::0;;;50618:43:0::1;;;;;;;;;;;50575:86;26750:10:::0;-1:-1:-1;;;;;50686:21:0;::::1;;::::0;:62:::1;;-1:-1:-1::0;50711:37:0::1;50728:5:::0;26750:10;51666:186;:::i;50711:37::-:1;50670:153;;;::::0;-1:-1:-1;;;50670:153:0;;12377:2:1;50670:153:0::1;::::0;::::1;12359:21:1::0;12416:2;12396:18;;;12389:30;12455:34;12435:18;;;12428:62;12526:27;12506:18;;;12499:55;12571:19;;50670:153:0::1;12175:421:1::0;50670:153:0::1;50832:28;50841:2;50845:7;50854:5;50832:8;:28::i;:::-;50456:410;50362:504:::0;;;:::o;67873:180::-;67941:21;;67925:4;;67941:21;;;;;67938:63;;-1:-1:-1;67989:4:0;;67873:180::o;67938:63::-;-1:-1:-1;68033:14:0;;68014:15;:33;;;67873:180::o;84411:1434::-;84562:17;;;;84561:18;;:34;;-1:-1:-1;84584:11:0;;;;84583:12;84561:34;84558:67;;;84604:21;;-1:-1:-1;;;84604:21:0;;;;;;;;;;;84558:67;84638:32;84652:3;84657:12;;84638:13;:32::i;:::-;84634:68;;84679:23;;-1:-1:-1;;;84679:23:0;;;;;;;;;;;84634:68;84714:12;84711:42;;84735:18;;-1:-1:-1;;;84735:18:0;;;;;;;;;;;84711:42;84775:12;;84765:7;:22;84762:58;;;84796:24;;-1:-1:-1;;;84796:24:0;;;;;;;;;;;84762:58;84833:27;84847:3;84852:7;84833:13;:27::i;:::-;84829:61;;84869:21;;-1:-1:-1;;;84869:21:0;;;;;;;;;;;84829:61;84931:14;84921:7;84902:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;84899:68;;;84954:13;;-1:-1:-1;;;84954:13:0;;;;;;;;;;;84899:68;84980:25;:23;:25::i;:::-;84976:69;;85014:31;;-1:-1:-1;;;85014:31:0;;;;;;;;;;;84976:69;85070:12;;85057:9;:25;85054:53;;85091:16;;-1:-1:-1;;;85091:16:0;;;;;;;;;;;85054:53;85166:47;85193:19;85166:26;:47::i;:::-;85162:83;;85222:23;;-1:-1:-1;;;85222:23:0;;;;;;;;;;;85162:83;85254:27;85328:7;85284:41;85305:19;85284:20;:41::i;:::-;:51;;;;:::i;:::-;85407:27;;-1:-1:-1;;;85407:27:0;;-1:-1:-1;;;;;2582:32:1;;;85407:27:0;;;2564:51:1;85254:81:0;;-1:-1:-1;85373:19:0;;85254:81;;85407:22;;;;;;2537:18:1;;85407:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;85404:87;;;85465:26;;-1:-1:-1;;;85465:26:0;;;;;;;;;;;85404:87;85503:42;;-1:-1:-1;;;85503:42:0;;-1:-1:-1;;;;;13193:15:1;;;85503:42:0;;;13175:34:1;85539:4:0;13225:18:1;;;13218:43;85548:19:0;;85503:22;;;;;;13110:18:1;;85503:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;85500:104;;;85576:28;;-1:-1:-1;;;85576:28:0;;;;;;;;;;;85500:104;85639:66;;-1:-1:-1;;;85639:66:0;;-1:-1:-1;;;;;13530:15:1;;;85639:66:0;;;13512:34:1;85678:4:0;13562:18:1;;;13555:43;13614:18;;;13607:34;;;85615:21:0;;85639:25;;;;;;13447:18:1;;85639:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;85615:90;;85718:16;85714:50;;85743:21;;-1:-1:-1;;;85743:21:0;;;;;;;;;;;85714:50;85781:17;:15;:17::i;:::-;85807:30;85817:3;85822:7;85831:5;85807:9;:30::i;:::-;84549:1296;;;84411:1434;;;;;:::o;63903:1581::-;64008:14;63989:16;:14;:16::i;:::-;:33;63986:58;;;64031:13;;-1:-1:-1;;;64031:13:0;;;;;;;;;;;63986:58;64055:21;;;;64051:53;;64085:19;;-1:-1:-1;;;64085:19:0;;;;;;;;;;;64051:53;-1:-1:-1;;;;;64114:32:0;;64111:65;;64155:21;;-1:-1:-1;;;64155:21:0;;;;;;;;;;;64111:65;-1:-1:-1;;;;;64187:39:0;;;;;;:19;:39;;;;;;;;64183:82;;64235:30;;-1:-1:-1;;;64235:30:0;;;;;;;;;;;64183:82;64311:12;;64289:19;;:34;;;;:::i;:::-;64275:9;:49;64272:77;;64333:16;;-1:-1:-1;;;64333:16:0;;;;;;;;;;;64272:77;-1:-1:-1;;;;;64359:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;;;;64356:79;;;64413:22;;-1:-1:-1;;;64413:22:0;;;;;;;;;;;64356:79;64482:18;26750:10;64511:32;;-1:-1:-1;;;64511:32:0;;;;;160:25:1;;;-1:-1:-1;;;;;64511:48:0;;;;:23;;;;;133:18:1;;64511:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;64511:48:0;;64508:87;;64568:27;;-1:-1:-1;;;64568:27:0;;;;;;;;;;;64508:87;64605:36;;-1:-1:-1;;;64605:36:0;;;;;160:25:1;;;64653:4:0;;-1:-1:-1;;;;;64605:27:0;;;;;133:18:1;;64605:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;64605:53:0;;64602:95;;64667:30;;-1:-1:-1;;;64667:30:0;;;;;;;;;;;64602:95;-1:-1:-1;;;;;65216:32:0;;;26750:10;65263:17;;65216:74;;;;;;-1:-1:-1;;;;;;65216:74:0;;;-1:-1:-1;;;;;13530:15:1;;;65216:74:0;;;13512:34:1;65263:17:0;;;;;;;13562:18:1;;;13555:43;13614:18;;;13607:34;;;13447:18;;65216:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;65297:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;:52;;-1:-1:-1;;65297:52:0;65345:4;65297:52;;;:36;-1:-1:-1;65334:7:0;65372:12;26750:10;;26670:98;65372:12;-1:-1:-1;;;;;65363:51:0;;;;;;;;;;;65421:17;:15;:17::i;:::-;65445:33;26750:10;65455:12;65469:1;65472:5;65445:9;:33::i;:::-;63979:1505;63903:1581;;:::o;51911:168::-;52032:4;31901:42;33386:43;:47;33382:416;;-1:-1:-1;;;;;33665:18:0;;33673:10;33665:18;33661:85;;;52045:28:::1;52055:4;52061:2;52065:7;52045:9;:28::i;:::-;33724:7:::0;;33661:85;33760:26;33781:4;33760:20;:26::i;:::-;52045:28:::1;52055:4;52061:2;52065:7;52045:9;:28::i;70149:37::-:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70149:37:0;:::o;45366:744::-;45475:7;45510:16;45520:5;45510:9;:16::i;:::-;45502:5;:24;45494:71;;;;-1:-1:-1;;;45494:71:0;;14360:2:1;45494:71:0;;;14342:21:1;14399:2;14379:18;;;14372:30;14438:34;14418:18;;;14411:62;-1:-1:-1;;;14489:18:1;;;14482:32;14531:19;;45494:71:0;14158:398:1;45494:71:0;45572:22;45597:13;:11;:13::i;:::-;45572:38;;45617:19;45647:25;45697:9;45692:350;45716:14;45712:1;:18;45692:350;;;45746:31;45780:14;;;:11;:14;;;;;;;;;45746:48;;;;;;;;;-1:-1:-1;;;;;45746:48:0;;;;;-1:-1:-1;;;45746:48:0;;;-1:-1:-1;;;;;45746:48:0;;;;;;;;45807:28;45803:89;;45868:14;;;-1:-1:-1;45803:89:0;45925:5;-1:-1:-1;;;;;45904:26:0;:17;-1:-1:-1;;;;;45904:26:0;;45900:135;;;45962:5;45947:11;:20;45943:59;;;-1:-1:-1;45989:1:0;-1:-1:-1;45982:8:0;;-1:-1:-1;;;45982:8:0;45943:59;46012:13;;;;:::i;:::-;;;;45900:135;-1:-1:-1;45732:3:0;;;;:::i;:::-;;;;45692:350;;;-1:-1:-1;46048:56:0;;-1:-1:-1;;;46048:56:0;;14903:2:1;46048:56:0;;;14885:21:1;14942:2;14922:18;;;14915:30;14981:34;14961:18;;;14954:62;-1:-1:-1;;;15032:18:1;;;15025:44;15086:19;;46048:56:0;14701:410:1;40600:282:0;40707:10;;40689:4;;40704:46;;40731:19;;-1:-1:-1;;;40731:19:0;;;;;;;;;;;40704:46;40784:21;;-1:-1:-1;;15265:2:1;15261:15;;;15257:53;40784:21:0;;;15245:66:1;40759:12:0;;15327::1;;40784:21:0;;;;;;;;;;;;40774:32;;;;;;40759:47;;40824:50;40843:12;;40824:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40857:10:0;;;-1:-1:-1;40869:4:0;;-1:-1:-1;40824:18:0;:50::i;:::-;40817:57;40600:282;-1:-1:-1;;;;;40600:282:0:o;62410:114::-;37264:18;:16;:18::i;:::-;62484:21:::1;:34:::0;;-1:-1:-1;;62484:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62410:114::o;83224:843::-;83342:20;;;;83339:57;;;83371:25;;-1:-1:-1;;;83371:25:0;;;;;;;;;;;83339:57;83411:17;;;;83410:18;;:34;;-1:-1:-1;83433:11:0;;;;83432:12;83410:34;83407:67;;;83453:21;;-1:-1:-1;;;83453:21:0;;;;;;;;;;;83407:67;83489:32;83503:3;83508:12;;83489:13;:32::i;:::-;83485:68;;83530:23;;-1:-1:-1;;;83530:23:0;;;;;;;;;;;83485:68;83567:12;83564:42;;83588:18;;-1:-1:-1;;;83588:18:0;;;;;;;;;;;83564:42;83630:12;;83620:7;:22;83617:58;;;83651:24;;-1:-1:-1;;;83651:24:0;;;;;;;;;;;83617:58;83690:27;83704:3;83709:7;83690:13;:27::i;:::-;83686:61;;83726:21;;-1:-1:-1;;;83726:21:0;;;;;;;;;;;83686:61;83790:14;83780:7;83761:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;83758:68;;;83813:13;;-1:-1:-1;;;83813:13:0;;;;;;;;;;;83758:68;83841:42;83854:9;83865:17;83874:7;83865:8;:17::i;83841:42::-;83837:71;;83892:16;;-1:-1:-1;;;83892:16:0;;;;;;;;;;;83837:71;83923:25;:23;:25::i;:::-;83919:69;;83957:31;;-1:-1:-1;;;83957:31:0;;;;;;;;;;;83919:69;84001:17;:15;:17::i;:::-;84029:30;84039:3;84044:7;84053:5;84029:9;:30::i;71779:170::-;-1:-1:-1;;;;;71884:42:0;71864:4;71884:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;71779:170::o;82814:84::-;37264:18;:16;:18::i;:::-;82871:11:::1;:19:::0;;-1:-1:-1;;82871:19:0::1;::::0;;82814:84::o;79750:247::-;37264:18;:16;:18::i;:::-;79837:9;79834:39:::1;;79855:18;;-1:-1:-1::0;;;79855:18:0::1;;;;;;;;;;;79834:39;79914:14;79907:4;79888:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:40;79885:65;;;79937:13;;-1:-1:-1::0;;;79937:13:0::1;;;;;;;;;;;79885:65;79962:26;79972:3;79977:4;79983;79962:9;:26::i;52142:183::-:0;52267:4;31901:42;33386:43;:47;33382:416;;-1:-1:-1;;;;;33665:18:0;;33673:10;33665:18;33661:85;;;52280:39:::1;52297:4;52303:2;52307:7;52280:39;;;;;;;;;;;::::0;:16:::1;:39::i;33661:85::-:0;33760:26;33781:4;33760:20;:26::i;:::-;52280:39:::1;52297:4;52303:2;52307:7;52280:39;;;;;;;;;;;::::0;:16:::1;:39::i;36022:210::-:0;28285:12;:10;:12::i;:::-;-1:-1:-1;;;;;36086:22:0;::::1;36083:54;;36117:20;;-1:-1:-1::0;;;36117:20:0::1;;;;;;;;;;;36083:54;36147:16;36154:8;36147:6;:16::i;:::-;36144:50;;;36172:22;;-1:-1:-1::0;;;36172:22:0::1;;;;;;;;;;;36144:50;-1:-1:-1::0;;;;;36205:14:0::1;;::::0;;;36222:4:::1;36205:14;::::0;;;;;;;:21;;-1:-1:-1;;36205:21:0::1;::::0;;::::1;::::0;;36022:210::o;62855:136::-;37264:18;:16;:18::i;:::-;62945:19:::1;:40:::0;62855:136::o;73333:161::-;37264:18;:16;:18::i;:::-;-1:-1:-1;;;;;73430:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;73430:58:0::1;73484:4;73430:58;::::0;;73333:161::o;40196:181::-;37264:18;:16;:18::i;:::-;40299:10:::1;;40281:14;:28;40278:55;;;40318:15;;-1:-1:-1::0;;;40318:15:0::1;;;;;;;;;;;40278:55;40342:10;:27:::0;40196:181::o;44898:177::-;44965:7;44997:13;:11;:13::i;:::-;44989:5;:21;44981:69;;;;-1:-1:-1;;;44981:69:0;;15552:2:1;44981:69:0;;;15534:21:1;15591:2;15571:18;;;15564:30;15630:34;15610:18;;;15603:62;-1:-1:-1;;;15681:18:1;;;15674:33;15724:19;;44981:69:0;15350:399:1;44981:69:0;-1:-1:-1;45064:5:0;44898:177::o;87328:170::-;37264:18;:16;:18::i;:::-;87407:16;87404:47:::1;;87432:19;;-1:-1:-1::0;;;87432:19:0::1;;;;;;;;;;;87404:47;87463:12;:26:::0;87328:170::o;88234:106::-;37264:18;:16;:18::i;:::-;88311:23:::1;:13;88327:7:::0;;88311:23:::1;:::i;67636:98::-:0;37264:18;:16;:18::i;:::-;67699:21:::1;:29:::0;;-1:-1:-1;;67699:29:0::1;::::0;;67636:98::o;81359:1356::-;81474:12;81471:42;;81495:18;;-1:-1:-1;;;81495:18:0;;;;;;;;;;;81471:42;81535:12;;81525:7;:22;81522:58;;;81556:24;;-1:-1:-1;;;81556:24:0;;;;;;;;;;;81522:58;81593:11;;;;81589:42;;81613:18;;-1:-1:-1;;;81613:18:0;;;;;;;;;;;81589:42;81672:14;81662:7;81643:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;81640:68;;;81695:13;;-1:-1:-1;;;81695:13:0;;;;;;;;;;;81640:68;81720:11;;;;:32;;;;-1:-1:-1;81735:17:0;;;;81720:32;81717:62;;;81761:18;;-1:-1:-1;;;81761:18:0;;;;;;;;;;;81717:62;81792:22;:20;:22::i;:::-;81788:63;;81823:28;;-1:-1:-1;;;81823:28:0;;;;;;;;;;;81788:63;81864:27;81878:3;81883:7;81864:13;:27::i;:::-;81860:61;;81900:21;;-1:-1:-1;;;81900:21:0;;;;;;;;;;;81860:61;81946:12;;81933:9;:25;81930:53;;81967:16;;-1:-1:-1;;;81967:16:0;;;;;;;;;;;81930:53;82042:47;82069:19;82042:26;:47::i;:::-;82038:83;;82098:23;;-1:-1:-1;;;82098:23:0;;;;;;;;;;;82038:83;82130:27;82204:7;82160:41;82181:19;82160:20;:41::i;:::-;:51;;;;:::i;:::-;82283:27;;-1:-1:-1;;;82283:27:0;;-1:-1:-1;;;;;2582:32:1;;;82283:27:0;;;2564:51:1;82130:81:0;;-1:-1:-1;82249:19:0;;82130:81;;82283:22;;;;;;2537:18:1;;82283:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;82280:87;;;82341:26;;-1:-1:-1;;;82341:26:0;;;;;;;;;;;82280:87;82379:42;;-1:-1:-1;;;82379:42:0;;-1:-1:-1;;;;;13193:15:1;;;82379:42:0;;;13175:34:1;82415:4:0;13225:18:1;;;13218:43;82424:19:0;;82379:22;;;;;;13110:18:1;;82379:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;82376:104;;;82452:28;;-1:-1:-1;;;82452:28:0;;;;;;;;;;;82376:104;82515:66;;-1:-1:-1;;;82515:66:0;;-1:-1:-1;;;;;13530:15:1;;;82515:66:0;;;13512:34:1;82554:4:0;13562:18:1;;;13555:43;13614:18;;;13607:34;;;82491:21:0;;82515:25;;;;;;13447:18:1;;82515:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;82491:90;;82594:16;82590:50;;82619:21;;-1:-1:-1;;;82619:21:0;;;;;;;;;;;82590:50;82651:17;:15;:17::i;:::-;82677:30;82687:3;82692:7;82701:5;82677:9;:30::i;:::-;81462:1253;;;81359:1356;;;:::o;48062:118::-;48126:7;48149:20;48161:7;48149:11;:20::i;:::-;:25;;48062:118;-1:-1:-1;;48062:118:0:o;82723:83::-;37264:18;:16;:18::i;:::-;82780:11:::1;:18:::0;;-1:-1:-1;;82780:18:0::1;82794:4;82780:18;::::0;;82723:83::o;41003:103::-;37264:18;:16;:18::i;:::-;41073:17:::1;:25:::0;;-1:-1:-1;;41073:25:0::1;::::0;;41003:103::o;46600:211::-;46664:7;-1:-1:-1;;;;;46688:19:0;;46680:75;;;;-1:-1:-1;;;46680:75:0;;15956:2:1;46680:75:0;;;15938:21:1;15995:2;15975:18;;;15968:30;16034:34;16014:18;;;16007:62;-1:-1:-1;;;16085:18:1;;;16078:41;16136:19;;46680:75:0;15754:407:1;46680:75:0;-1:-1:-1;;;;;;46777:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;46777:27:0;;46600:211::o;28666:103::-;28285:12;:10;:12::i;:::-;28731:30:::1;28758:1;28731:18;:30::i;:::-;28666:103::o:0;62617:120::-;37264:18;:16;:18::i;:::-;62694:24:::1;:37:::0;;;::::1;;;;-1:-1:-1::0;;62694:37:0;;::::1;::::0;;;::::1;::::0;;62617:120::o;40896:99::-;37264:18;:16;:18::i;:::-;40963:17:::1;:24:::0;;-1:-1:-1;;40963:24:0::1;40983:4;40963:24;::::0;;40896:99::o;76436:102::-;37264:18;:16;:18::i;:::-;76502:23:::1;:30:::0;;-1:-1:-1;;76502:30:0::1;76528:4;76502:30;::::0;;76436:102::o;50149:159::-;37264:18;:16;:18::i;:::-;-1:-1:-1;;;;;50249:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:53;;-1:-1:-1;;50249:53:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50149:159::o;70277:162::-;37264:18;:16;:18::i;:::-;70335:21:::1;70332:57;;70370:19;;-1:-1:-1::0;;;70370:19:0::1;;;;;;;;;;;70332:57;70398:35;70411:21;70398:12;:35::i;69944:123::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;69944:123:0;;-1:-1:-1;69944:123:0;:::o;74050:97::-;37264:18;:16;:18::i;:::-;74114:20:::1;:27:::0;;-1:-1:-1;;74114:27:0::1;74137:4;74114:27;::::0;;74050:97::o;65792:744::-;65903:14;65884:16;:14;:16::i;:::-;:33;65881:58;;;65926:13;;-1:-1:-1;;;65926:13:0;;;;;;;;;;;65881:58;65950:24;;;;;;;65946:56;;65983:19;;-1:-1:-1;;;65983:19:0;;;;;;;;;;;65946:56;-1:-1:-1;;;;;66012:32:0;;66009:65;;66053:21;;-1:-1:-1;;;66053:21:0;;;;;;;;;;;66009:65;-1:-1:-1;;;;;66085:39:0;;;;;;:19;:39;;;;;;;;66081:82;;66133:30;;-1:-1:-1;;;66133:30:0;;;;;;;;;;;66081:82;66209:12;;66187:19;;:34;;;;:::i;:::-;66173:9;:49;66170:77;;66231:16;;-1:-1:-1;;;66231:16:0;;;;;;;;;;;66170:77;-1:-1:-1;;;;;66257:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;;;;66254:79;;;66311:22;;-1:-1:-1;;;66311:22:0;;;;;;;;;;;66254:79;-1:-1:-1;;;;;66346:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;:52;;-1:-1:-1;;66346:52:0;66394:4;66346:52;;;66383:7;66424:12;26750:10;;26670:98;66424:12;-1:-1:-1;;;;;66410:56:0;;;;;;;;;;;66473:17;:15;:17::i;:::-;66497:33;26750:10;66507:12;26670:98;86973:179;37264:18;:16;:18::i;:::-;87055;87052:49:::1;;87082:19;;-1:-1:-1::0;;;87082:19:0::1;;;;;;;;;;;87052:49;87112:16;:32:::0;86973:179::o;77444:90::-;37264:18;:16;:18::i;:::-;77511:5:::1;:17:::0;77444:90::o;48394:98::-;48450:13;48479:7;48472:14;;;;;:::i;62167:154::-;37264:18;:16;:18::i;:::-;-1:-1:-1;;;;;62268:37:0;;;::::1;;::::0;;;:19:::1;:37;::::0;;;;:47;;-1:-1:-1;;62268:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62167:154::o;36729:182::-;36799:4;-1:-1:-1;;;;;36818:22:0;;36815:54;;36849:20;;-1:-1:-1;;;36849:20:0;;;;;;;;;;;36815:54;-1:-1:-1;;;;;;36883:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;36729:182::o;71184:417::-;37264:18;:16;:18::i;:::-;71291:22;71288:53:::1;;71322:19;;-1:-1:-1::0;;;71322:19:0::1;;;;;;;;;;;71288:53;71403:38;::::0;-1:-1:-1;;;71403:38:0;;71435:4:::1;71403:38;::::0;::::1;2564:51:1::0;71378:14:0;;71444:17;;-1:-1:-1;;;;;71403:23:0;::::1;::::0;::::1;::::0;2537:18:1;;71403:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;71400:96;;;71470:26;;-1:-1:-1::0;;;71470:26:0::1;;;;;;;;;;;71400:96;71526:12;::::0;71503:55:::1;::::0;-1:-1:-1;;;71503:55:0;;-1:-1:-1;;;;;71526:12:0;;::::1;71503:55;::::0;::::1;16340:51:1::0;16407:18;;;16400:34;;;71503:22:0;;::::1;::::0;::::1;::::0;16313:18:1;;71503:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;51192:411::-:0;51296:8;33899:30;33920:8;33899:20;:30::i;:::-;-1:-1:-1;;;;;51321:24:0;::::1;26750:10:::0;51321:24:::1;;51313:63;;;::::0;-1:-1:-1;;;51313:63:0;;16647:2:1;51313:63:0::1;::::0;::::1;16629:21:1::0;16686:2;16666:18;;;16659:30;16725:28;16705:18;;;16698:56;16771:18;;51313:63:0::1;16445:350:1::0;51313:63:0::1;-1:-1:-1::0;;;;;51386:37:0;::::1;;::::0;;;:27:::1;:37;::::0;;;;;::::1;;51383:92;;;51432:43;;-1:-1:-1::0;;;51432:43:0::1;;;;;;;;;;;51383:92;26750:10:::0;51484:32:::1;::::0;;;:18:::1;:32;::::0;;;;;;;-1:-1:-1;;;;;51484:42:0;::::1;::::0;;;;;;;;;;:53;;-1:-1:-1;;51484:53:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51549:48;;722:41:1;;;51484:42:0;;26750:10;51549:48:::1;::::0;695:18:1;51549:48:0::1;;;;;;;51192:411:::0;;;:::o;60711:135::-;26750:10;60516:42;60766:24;60763:51;;60799:15;;-1:-1:-1;;;60799:15:0;;;;;;;;;;;60763:51;60821:12;:19;60711:135::o;74493:261::-;37264:18;:16;:18::i;:::-;-1:-1:-1;;;;;74584:30:0;::::1;74581:63;;74623:21;;-1:-1:-1::0;;;74623:21:0::1;;;;;;;;;;;74581:63;74674:12;::::0;-1:-1:-1;;;;;74654:32:0;;::::1;74674:12:::0;::::1;74654:32;74651:59;;;74695:15;;-1:-1:-1::0;;;74695:15:0::1;;;;;;;;;;;74651:59;74717:12;:31:::0;;-1:-1:-1;;;;;;74717:31:0::1;-1:-1:-1::0;;;;;74717:31:0;;;::::1;::::0;;;::::1;::::0;;74493:261::o;76817:248::-;37264:18;:16;:18::i;:::-;76923:14:::1;76906;:31;76903:56;;;76946:13;;-1:-1:-1::0;;;76946:13:0::1;;;;;;;;;;;76903:56;76969:19:::0;76966:50:::1;;76997:19;;-1:-1:-1::0;;;76997:19:0::1;;;;;;;;;;;76966:50;77023:19;:36:::0;76817:248::o;86272:128::-;37264:18;:16;:18::i;:::-;86336:26:::1;:24;:26::i;88346:135::-:0;37264:18;:16;:18::i;:::-;88440:35:::1;:19;88462:13:::0;;88440:35:::1;:::i;77189:115::-:0;37264:18;:16;:18::i;:::-;77270:16:::1;:28:::0;77189:115::o;52388:337::-;52538:4;31901:42;33386:43;:47;33382:416;;-1:-1:-1;;;;;33665:18:0;;33673:10;33665:18;33661:85;;;52551:28:::1;52561:4;52567:2;52571:7;52551:9;:28::i;:::-;52602:48;52625:4;52631:2;52635:7;52644:5;52602:22;:48::i;:::-;52586:133;;;;-1:-1:-1::0;;;52586:133:0::1;;;;;;;:::i;:::-;33724:7:::0;;33661:85;33760:26;33781:4;33760:20;:26::i;:::-;52551:28:::1;52561:4;52567:2;52571:7;52551:9;:28::i;:::-;52602:48;52625:4;52631:2;52635:7;52644:5;52602:22;:48::i;:::-;52586:133;;;;-1:-1:-1::0;;;52586:133:0::1;;;;;;;:::i;:::-;52388:337:::0;;;;;:::o;74234:99::-;37264:18;:16;:18::i;:::-;74299:20:::1;:28:::0;;-1:-1:-1;;74299:28:0::1;::::0;;74234:99::o;68691:104::-;37264:18;:16;:18::i;:::-;68757:24:::1;:32:::0;;-1:-1:-1;;68757:32:0::1;::::0;;68691:104::o;67537:93::-;37264:18;:16;:18::i;:::-;67596:21:::1;:28:::0;;-1:-1:-1;;67596:28:0::1;;;::::0;;67537:93::o;76544:104::-;37264:18;:16;:18::i;:::-;76611:23:::1;:31:::0;;-1:-1:-1;;76611:31:0::1;::::0;;76544:104::o;48555:351::-;48653:13;48678:21;48702:10;:8;:10::i;:::-;48678:34;;48719:23;48745:19;:17;:19::i;:::-;48719:45;;48809:1;48791:7;48785:21;:25;:115;;;;;;;;;;;;;;;;;48846:7;48855:18;:7;:16;:18::i;:::-;48875:9;48829:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48785:115;48771:129;48555:351;-1:-1:-1;;;;48555:351:0:o;44518:96::-;44565:7;44590:14;44786:12;;-1:-1:-1;;44786:30:0;;44697:132;44590:14;:18;;44607:1;44590:18;:::i;73801:163::-;37264:18;:16;:18::i;:::-;-1:-1:-1;;;;;73899:42:0::1;73953:5;73899:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;73899:59:0::1;::::0;;73801:163::o;63327:213::-;37264:18;:16;:18::i;:::-;-1:-1:-1;;;;;63421:35:0;::::1;63418:68;;63465:21;;-1:-1:-1::0;;;63465:21:0::1;;;;;;;;;;;63418:68;63493:17;:41:::0;;-1:-1:-1;;;;;63493:41:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;63493:41:0;;::::1;::::0;;;::::1;::::0;;63327:213::o;79182:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87516:202::-;37264:18;:16;:18::i;:::-;87601:10:::1;::::0;::::1;::::0;::::1;;;87598:41;;;87620:19;;-1:-1:-1::0;;;87620:19:0::1;;;;;;;;;;;87598:41;87650:32:::0;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;87693:10:0::1;:17:::0;;-1:-1:-1;;87693:17:0::1;;;::::0;;87516:202::o;72107:253::-;72186:7;72206:47;72233:19;72206:26;:47::i;:::-;72202:83;;72262:23;;-1:-1:-1;;;72262:23:0;;;;;;;;;;;72202:83;-1:-1:-1;;;;;;72299:42:0;;;;;:21;:42;;;;;:55;;;;72107:253::o;88136:92::-;88180:13;88209;88202:20;;;;;:::i;72726:304::-;37264:18;:16;:18::i;:::-;-1:-1:-1;;;;;72875:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;72875:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;72945:55:0::1;:79:::0;72726:304::o;68801:191::-;68872:24;;68856:4;;68872:24;;68869:66;;-1:-1:-1;68923:4:0;;68801:191::o;68869:66::-;-1:-1:-1;68969:17:0;;68950:15;:36;;;68801:191::o;36375:215::-;28285:12;:10;:12::i;:::-;-1:-1:-1;;;;;36444:22:0;::::1;36441:54;;36475:20;;-1:-1:-1::0;;;36475:20:0::1;;;;;;;;;;;36441:54;36506:16;36513:8;36506:6;:16::i;:::-;36502:49;;36531:20;;-1:-1:-1::0;;;36531:20:0::1;;;;;;;;;;;36502:49;-1:-1:-1::0;;;;;36562:14:0::1;36579:5;36562:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;36562:22:0::1;::::0;;36375:215::o;68586:99::-;37264:18;:16;:18::i;:::-;68648:24:::1;:31:::0;;-1:-1:-1;;68648:31:0::1;68675:4;68648:31;::::0;;68586:99::o;77540:1242::-;77595:7;77614:11;77611:42;;77634:19;;-1:-1:-1;;;77634:19:0;;;;;;;;;;;77611:42;77821:23;;;;:32;;:81;;;77883:19;;77864:16;:14;:16::i;:::-;:38;77821:81;77810:155;;;77945:12;;77935:6;77927:5;;:14;;;;:::i;:::-;77926:31;;;;:::i;77810:155::-;77973:21;78016:6;77997:16;:14;:16::i;:::-;:25;;;;:::i;:::-;77973:49;;78180:19;;78162:13;:37;78159:108;;78247:12;;78237:6;78218:16;;:25;;;;:::i;:::-;78217:42;;;;:::i;:::-;78210:49;77540:1242;-1:-1:-1;;;77540:1242:0:o;78159:108::-;78529:27;78581:16;:14;:16::i;:::-;78559:19;;:38;;;;:::i;:::-;78529:68;;78604:29;78652:19;;78636:13;:35;;;;:::i;:::-;78604:67;;78764:12;;78739:21;78731:5;;:29;;;;:::i;:::-;78707:19;78688:16;;:38;;;;:::i;:::-;78687:74;;;;:::i;:::-;:89;;;;:::i;87736:149::-;87780:13;87802:77;;;;;;;;;;;;;;;;;;;87736:149;:::o;79288:43::-;;;;;;;:::i;75515:105::-;37264:18;:16;:18::i;:::-;75588:13:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;75588:26:0;;::::1;::::0;;;::::1;::::0;;75515:105::o;67347:184::-;37264:18;:16;:18::i;:::-;67444:15:::1;67429:12;:30;67426:63;;;67468:21;;-1:-1:-1::0;;;67468:21:0::1;;;;;;;;;;;67426:63;67496:14;:29:::0;67347:184::o;28922:201::-;28285:12;:10;:12::i;:::-;-1:-1:-1;;;;;29011:22:0;::::1;29003:73;;;::::0;-1:-1:-1;;;29003:73:0;;18221:2:1;29003:73:0::1;::::0;::::1;18203:21:1::0;18260:2;18240:18;;;18233:30;18299:34;18279:18;;;18272:62;-1:-1:-1;;;18350:18:1;;;18343:36;18396:19;;29003:73:0::1;18019:402:1::0;29003:73:0::1;29087:28;29106:8;29087:18;:28::i;:::-;28922:201:::0;:::o;68390:190::-;37264:18;:16;:18::i;:::-;68490:15:::1;68475:12;:30;68472:63;;;68514:21;;-1:-1:-1::0;;;68514:21:0::1;;;;;;;;;;;68472:63;68542:17;:32:::0;68390:190::o;85996:125::-;37264:18;:16;:18::i;:::-;86059:25:::1;:23;:25::i;86561:219::-:0;86639:4;86659:12;86656:43;;86680:19;;-1:-1:-1;;;86680:19:0;;;;;;;;;;;86656:43;86756:16;;86744:7;86718:23;86732:8;86718:13;:23::i;:::-;:33;;;;:::i;:::-;86717:55;;;86561:219;-1:-1:-1;;;86561:219:0:o;75811:203::-;75919:13;;75899:4;;75919:13;;;;;:89;;75994:14;75981:9;:27;;75919:89;;;-1:-1:-1;75943:27:0;;75811:203::o;60616:89::-;60686:12;;60659:40;;60516:42;;60659:40;;;;;;;;;60686:12;60516:42;60659:40;;;;;;;;;;;;;;;;;;;53101:129;53184:40;53194:2;53198:8;53208:11;53184:40;;;;;;;;;;;;:9;:40::i;52960:135::-;53017:4;53056:7;44245:1;53037:26;;:52;;;;-1:-1:-1;;53077:12:0;;-1:-1:-1;53067:22:0;52960:135::o;33957:415::-;31901:42;34148:43;:47;34144:221;;34217:65;;-1:-1:-1;;;34217:65:0;;34266:4;34217:65;;;13175:34:1;-1:-1:-1;;;;;13245:15:1;;13225:18;;;13218:43;31901:42:0;;34217:40;;13110:18:1;;34217:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34212:142;;34310:28;;-1:-1:-1;;;34310:28:0;;-1:-1:-1;;;;;2582:32:1;;34310:28:0;;;2564:51:1;2537:18;;34310:28:0;2418:203:1;56844:172:0;56941:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;56941:29:0;-1:-1:-1;;;;;56941:29:0;;;;;;;;;56982:28;;56941:24;;56982:28;;;;;;;56844:172;;;:::o;55213:1529::-;55310:35;55348:20;55360:7;55348:11;:20::i;:::-;55419:18;;55310:58;;-1:-1:-1;55377:22:0;;-1:-1:-1;;;;;55403:34:0;26750:10;-1:-1:-1;;;;;55403:34:0;;:81;;;-1:-1:-1;26750:10:0;55448:20;55460:7;55448:11;:20::i;:::-;-1:-1:-1;;;;;55448:36:0;;55403:81;:142;;;-1:-1:-1;55512:18:0;;55495:50;;26750:10;51666:186;:::i;55495:50::-;55377:169;;55571:17;55555:101;;;;-1:-1:-1;;;55555:101:0;;18628:2:1;55555:101:0;;;18610:21:1;18667:2;18647:18;;;18640:30;18706:34;18686:18;;;18679:62;-1:-1:-1;;;18757:18:1;;;18750:48;18815:19;;55555:101:0;18426:414:1;55555:101:0;55703:4;-1:-1:-1;;;;;55681:26:0;:13;:18;;;-1:-1:-1;;;;;55681:26:0;;55665:98;;;;-1:-1:-1;;;55665:98:0;;19047:2:1;55665:98:0;;;19029:21:1;19086:2;19066:18;;;19059:30;19125:34;19105:18;;;19098:62;-1:-1:-1;;;19176:18:1;;;19169:36;19222:19;;55665:98:0;18845:402:1;55665:98:0;-1:-1:-1;;;;;55778:16:0;;55770:66;;;;-1:-1:-1;;;55770:66:0;;19454:2:1;55770:66:0;;;19436:21:1;19493:2;19473:18;;;19466:30;19532:34;19512:18;;;19505:62;-1:-1:-1;;;19583:18:1;;;19576:35;19628:19;;55770:66:0;19252:401:1;55770:66:0;55945:49;55962:1;55966:7;55975:13;:18;;;55945:8;:49::i;:::-;-1:-1:-1;;;;;56003:18:0;;;;;;:12;:18;;;;;:31;;56033:1;;56003:18;:31;;56033:1;;-1:-1:-1;;;;;56003:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;56003:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56041:16:0;;-1:-1:-1;56041:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;56041:16:0;;:29;;-1:-1:-1;;56041:29:0;;:::i;:::-;;;-1:-1:-1;;;;;56041:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56100:43:0;;;;;;;;-1:-1:-1;;;;;56100:43:0;;;;;-1:-1:-1;;;;;56126:15:0;56100:43;;;;;;;;;-1:-1:-1;56077:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;56077:66:0;-1:-1:-1;;;;;;56077:66:0;;;;;;;;;;;56393:11;56089:7;-1:-1:-1;56393:11:0;:::i;:::-;56456:1;56415:24;;;:11;:24;;;;;:29;56371:33;;-1:-1:-1;;;;;;56415:29:0;56411:236;;56473:20;56481:11;56473:7;:20::i;:::-;56469:171;;;56533:97;;;;;;;;56560:18;;-1:-1:-1;;;;;56533:97:0;;;;;;56591:28;;;;-1:-1:-1;;;;;56533:97:0;;;;;;;;;-1:-1:-1;56506:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;56506:124:0;-1:-1:-1;;;;;;56506:124:0;;;;;;;;;;;;56469:171;56679:7;56675:2;-1:-1:-1;;;;;56660:27:0;56669:4;-1:-1:-1;;;;;56660:27:0;;;;;;;;;;;56694:42;50362:504;32869:337;32969:67;;-1:-1:-1;;;32969:67:0;;33018:4;32969:67;;;13175:34:1;33025:10:0;13225:18:1;;;13218:43;31901:42:0;;32969:40;;13110:18:1;;32969:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:147;;;;-1:-1:-1;33055:61:0;;-1:-1:-1;;;33055:61:0;;33104:4;33055:61;;;13175:34:1;-1:-1:-1;;;;;13245:15:1;;13225:18;;;13218:43;31901:42:0;;33055:40;;13110:18:1;;33055:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32935:264;;33159:30;;-1:-1:-1;;;33159:30:0;;33178:10;33159:30;;;2564:51:1;2537:18;;33159:30:0;2418:203:1;38322:202:0;38455:4;38510;38481:25;38494:5;38501:4;38481:12;:25::i;:::-;:33;;38322:202;-1:-1:-1;;;;38322:202:0:o;37009:215::-;37057:13;28017:6;;-1:-1:-1;;;;;28017:6:0;26750:10;37073:23;;;;37057:13;37118:20;;36729:182;:::i;37118:20::-;37103:35;;37153:8;:19;;;;37165:7;37153:19;37145:73;;;;-1:-1:-1;;;37145:73:0;;20369:2:1;37145:73:0;;;20351:21:1;20408:2;20388:18;;;20381:30;20447:34;20427:18;;;20420:62;-1:-1:-1;;;20498:18:1;;;20491:39;20547:19;;37145:73:0;20167:405:1;28124:121:0;27990:7;28017:6;-1:-1:-1;;;;;28017:6:0;26750:10;28177:23;28169:68;;;;-1:-1:-1;;;28169:68:0;;20779:2:1;28169:68:0;;;20761:21:1;;;20798:18;;;20791:30;20857:34;20837:18;;;20830:62;20909:18;;28169:68:0;20577:356:1;47063:945:0;-1:-1:-1;;;;;;;;;;;;;;;;;47187:7:0;;44245:1;47228:23;;:46;;;;;47262:12;;47255:4;:19;47228:46;47224:706;;;47291:31;47325:17;;;:11;:17;;;;;;;;;47291:51;;;;;;;;;-1:-1:-1;;;;;47291:51:0;;;;;-1:-1:-1;;;47291:51:0;;;-1:-1:-1;;;;;47291:51:0;;;;;;;;47361:28;47357:85;;47417:9;47063:945;-1:-1:-1;;;47063:945:0:o;47357:85::-;-1:-1:-1;;;47738:6:0;47775:17;;;;:11;:17;;;;;;;;;47763:29;;;;;;;;;-1:-1:-1;;;;;47763:29:0;;;;;-1:-1:-1;;;47763:29:0;;;-1:-1:-1;;;;;47763:29:0;;;;;;;;47815:28;47811:93;;47875:9;47063:945;-1:-1:-1;;;47063:945:0:o;47811:93::-;47706:213;;47224:706;47945:57;;-1:-1:-1;;;47945:57:0;;21140:2:1;47945:57:0;;;21122:21:1;21179:2;21159:18;;;21152:30;21218:34;21198:18;;;21191:62;-1:-1:-1;;;21269:18:1;;;21262:45;21324:19;;47945:57:0;20938:411:1;29281:191:0;29355:16;29374:6;;-1:-1:-1;;;;;29391:17:0;;;-1:-1:-1;;;;;;29391:17:0;;;;;;29424:40;;29374:6;;;;;;;29424:40;;29355:16;29424:40;29344:128;29281:191;:::o;70445:237::-;70505:6;70501:176;70519:19;;70515:1;:23;70501:176;;;70559:108;70586:16;70603:1;70586:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70586:19:0;70651:3;70633:11;70645:1;70633:14;;;;;;;;:::i;:::-;;;;;;;;;70623:7;:24;;;;:::i;:::-;70622:32;;;;:::i;:::-;70559:10;:108::i;:::-;70540:3;;;;:::i;:::-;;;;70501:176;;58633:690;58770:4;-1:-1:-1;;;;;58787:13:0;;4613:19;:23;58783:535;;58826:72;;-1:-1:-1;;;58826:72:0;;-1:-1:-1;;;;;58826:36:0;;;;;:72;;26750:10;;58877:4;;58883:7;;58892:5;;58826:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58826:72:0;;;;;;;;-1:-1:-1;;58826:72:0;;;;;;;;;;;;:::i;:::-;;;58813:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59057:13:0;;59053:215;;59090:61;;-1:-1:-1;;;59090:61:0;;;;;;;:::i;59053:215::-;59236:6;59230:13;59221:6;59217:2;59213:15;59206:38;58813:464;-1:-1:-1;;;;;;58948:55:0;-1:-1:-1;;;58948:55:0;;-1:-1:-1;58941:62:0;;58783:535;-1:-1:-1;59306:4:0;58633:690;;;;;;:::o;88008:122::-;88076:13;88105:19;88098:26;;;;;:::i;21501:723::-;21557:13;21778:10;21774:53;;-1:-1:-1;;21805:10:0;;;;;;;;;;;;-1:-1:-1;;;21805:10:0;;;;;21501:723::o;21774:53::-;21852:5;21837:12;21893:78;21900:9;;21893:78;;21926:8;;;;:::i;:::-;;-1:-1:-1;21949:10:0;;-1:-1:-1;21957:2:0;21949:10;;:::i;:::-;;;21893:78;;;21981:19;22013:6;-1:-1:-1;;;;;22003:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22003:17:0;;21981:39;;22031:154;22038:10;;22031:154;;22065:11;22075:1;22065:11;;:::i;:::-;;-1:-1:-1;22134:10:0;22142:2;22134:5;:10;:::i;:::-;22121:24;;:2;:24;:::i;:::-;22108:39;;22091:6;22098;22091:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22091:56:0;;;;;;;;-1:-1:-1;22162:11:0;22171:2;22162:11;;:::i;:::-;;;22031:154;;46817:240;46878:7;-1:-1:-1;;;;;46910:19:0;;46894:102;;;;-1:-1:-1;;;46894:102:0;;22810:2:1;46894:102:0;;;22792:21:1;22849:2;22829:18;;;22822:30;22888:34;22868:18;;;22861:62;-1:-1:-1;;;22939:18:1;;;22932:47;22996:19;;46894:102:0;22608:413:1;46894:102:0;-1:-1:-1;;;;;;47018:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;47018:32:0;;-1:-1:-1;;;;;47018:32:0;;46817:240::o;53559:1434::-;53710:12;;-1:-1:-1;;;;;53737:16:0;;53729:62;;;;-1:-1:-1;;;53729:62:0;;23228:2:1;53729:62:0;;;23210:21:1;23267:2;23247:18;;;23240:30;23306:34;23286:18;;;23279:62;-1:-1:-1;;;23357:18:1;;;23350:31;23398:19;;53729:62:0;23026:397:1;53729:62:0;53928:21;53936:12;53928:7;:21::i;:::-;53927:22;53919:64;;;;-1:-1:-1;;;53919:64:0;;23630:2:1;53919:64:0;;;23612:21:1;23669:2;23649:18;;;23642:30;23708:31;23688:18;;;23681:59;23757:18;;53919:64:0;23428:353:1;53919:64:0;54069:20;54065:116;;54122:12;;54110:8;:24;;54102:71;;;;-1:-1:-1;;;54102:71:0;;23988:2:1;54102:71:0;;;23970:21:1;24027:2;24007:18;;;24000:30;24066:34;24046:18;;;24039:62;-1:-1:-1;;;24117:18:1;;;24110:32;24159:19;;54102:71:0;23786:398:1;54102:71:0;-1:-1:-1;;;;;54292:16:0;;54259:30;54292:16;;;:12;:16;;;;;;;;;54259:49;;;;;;;;;-1:-1:-1;;;;;54259:49:0;;;;;-1:-1:-1;;;54259:49:0;;;;;;;;;;;54334:139;;;;;;;;54354:19;;54259:49;;54334:139;;;54354:39;;54384:8;;54354:39;:::i;:::-;-1:-1:-1;;;;;54334:139:0;;;;;54430:11;:35;;54456:8;54430:35;;;54444:1;54430:35;54402:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;54334:139:0;;;;;;-1:-1:-1;;;;;54315:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;54315:158:0;;;;;;;;;;;;54508:43;;;;;;;;;;-1:-1:-1;;;;;54534:15:0;54508:43;;;;;;;;54480:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;54480:71:0;-1:-1:-1;;;;;;54480:71:0;;;;;;;;;;;;;;;;;;54492:12;;54604:281;54628:8;54624:1;:12;54604:281;;;54657:38;;54682:12;;-1:-1:-1;;;;;54657:38:0;;;54674:1;;54657:38;;54674:1;;54657:38;54722:59;54753:1;54757:2;54761:12;54775:5;54722:22;:59::i;:::-;54704:150;;;;-1:-1:-1;;;54704:150:0;;;;;;;:::i;:::-;54863:14;;;;:::i;:::-;;;;54638:3;;;;;:::i;:::-;;;;54604:281;;;-1:-1:-1;54893:12:0;:27;-1:-1:-1;;;;;;53559:1434:0:o;38896:701::-;38979:7;39024:4;38979:7;39041:515;39065:5;:12;39061:1;:16;39041:515;;;39101:20;39124:5;39130:1;39124:8;;;;;;;;:::i;:::-;;;;;;;39101:31;;39169:12;39153;:28;39149:394;;39675:13;39729:15;;;39767:4;39760:15;;;39816:4;39800:21;;39285:57;;39149:394;;;39675:13;39729:15;;;39767:4;39760:15;;;39816:4;39800:21;;39468:57;;39149:394;-1:-1:-1;39079:3:0;;;;:::i;:::-;;;;39041:515;;;-1:-1:-1;39575:12:0;38896:701;-1:-1:-1;;;38896:701:0:o;70690:175::-;70763:12;70781:8;-1:-1:-1;;;;;70781:13:0;70802:7;70781:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70762:52;;;70831:7;70823:36;;;;-1:-1:-1;;;70823:36:0;;24601:2:1;70823:36:0;;;24583:21:1;24640:2;24620:18;;;24613:30;-1:-1:-1;;;24659:18:1;;;24652:46;24715:18;;70823:36:0;24399:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::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:131::-;-1:-1:-1;;;;;849:31:1;;839:42;;829:70;;895:1;892;885:12;910:247;969:6;1022:2;1010:9;1001:7;997:23;993:32;990:52;;;1038:1;1035;1028:12;990:52;1077:9;1064:23;1096:31;1121:5;1096:31;:::i;1162:315::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;1467:2;1452:18;;;;1439:32;;-1:-1:-1;;;1162:315:1:o;1482:258::-;1554:1;1564:113;1578:6;1575:1;1572:13;1564:113;;;1654:11;;;1648:18;1635:11;;;1628:39;1600:2;1593:10;1564:113;;;1695:6;1692:1;1689:13;1686:48;;;-1:-1:-1;;1730:1:1;1712:16;;1705:27;1482:258::o;1745:::-;1787:3;1825:5;1819:12;1852:6;1847:3;1840:19;1868:63;1924:6;1917:4;1912:3;1908:14;1901:4;1894:5;1890:16;1868:63;:::i;:::-;1985:2;1964:15;-1:-1:-1;;1960:29:1;1951:39;;;;1992:4;1947:50;;1745:258;-1:-1:-1;;1745:258:1:o;2008:220::-;2157:2;2146:9;2139:21;2120:4;2177:45;2218:2;2207:9;2203:18;2195:6;2177:45;:::i;2233:180::-;2292:6;2345:2;2333:9;2324:7;2320:23;2316:32;2313:52;;;2361:1;2358;2351:12;2313:52;-1:-1:-1;2384:23:1;;2233:180;-1:-1:-1;2233:180:1:o;2626:367::-;2689:8;2699:6;2753:3;2746:4;2738:6;2734:17;2730:27;2720:55;;2771:1;2768;2761:12;2720:55;-1:-1:-1;2794:20:1;;-1:-1:-1;;;;;2826:30:1;;2823:50;;;2869:1;2866;2859:12;2823:50;2906:4;2898:6;2894:17;2882:29;;2966:3;2959:4;2949:6;2946:1;2942:14;2934:6;2930:27;2926:38;2923:47;2920:67;;;2983:1;2980;2973:12;2920:67;2626:367;;;;;:::o;2998:782::-;3111:6;3119;3127;3135;3143;3196:3;3184:9;3175:7;3171:23;3167:33;3164:53;;;3213:1;3210;3203:12;3164:53;3252:9;3239:23;3271:31;3296:5;3271:31;:::i;:::-;3321:5;-1:-1:-1;3373:2:1;3358:18;;3345:32;;-1:-1:-1;3428:2:1;3413:18;;3400:32;-1:-1:-1;;;;;3444:30:1;;3441:50;;;3487:1;3484;3477:12;3441:50;3526:70;3588:7;3579:6;3568:9;3564:22;3526:70;:::i;:::-;3615:8;;-1:-1:-1;3500:96:1;-1:-1:-1;;3702:2:1;3687:18;;3674:32;3715:33;3674:32;3715:33;:::i;:::-;3767:7;3757:17;;;2998:782;;;;;;;;:::o;3785:456::-;3862:6;3870;3878;3931:2;3919:9;3910:7;3906:23;3902:32;3899:52;;;3947:1;3944;3937:12;3899:52;3986:9;3973:23;4005:31;4030:5;4005:31;:::i;:::-;4055:5;-1:-1:-1;4112:2:1;4097:18;;4084:32;4125:33;4084:32;4125:33;:::i;:::-;3785:456;;4177:7;;-1:-1:-1;;;4231:2:1;4216:18;;;;4203:32;;3785:456::o;4428:572::-;4523:6;4531;4539;4592:2;4580:9;4571:7;4567:23;4563:32;4560:52;;;4608:1;4605;4598:12;4560:52;4647:9;4634:23;4666:31;4691:5;4666:31;:::i;:::-;4716:5;-1:-1:-1;4772:2:1;4757:18;;4744:32;-1:-1:-1;;;;;4788:30:1;;4785:50;;;4831:1;4828;4821:12;4785:50;4870:70;4932:7;4923:6;4912:9;4908:22;4870:70;:::i;:::-;4428:572;;4959:8;;-1:-1:-1;4844:96:1;;-1:-1:-1;;;;4428:572:1:o;5005:118::-;5091:5;5084:13;5077:21;5070:5;5067:32;5057:60;;5113:1;5110;5103:12;5128:241;5184:6;5237:2;5225:9;5216:7;5212:23;5208:32;5205:52;;;5253:1;5250;5243:12;5205:52;5292:9;5279:23;5311:28;5333:5;5311:28;:::i;5563:640::-;5667:6;5675;5683;5691;5744:2;5732:9;5723:7;5719:23;5715:32;5712:52;;;5760:1;5757;5750:12;5712:52;5799:9;5786:23;5818:31;5843:5;5818:31;:::i;:::-;5868:5;-1:-1:-1;5920:2:1;5905:18;;5892:32;;-1:-1:-1;5975:2:1;5960:18;;5947:32;-1:-1:-1;;;;;5991:30:1;;5988:50;;;6034:1;6031;6024:12;5988:50;6073:70;6135:7;6126:6;6115:9;6111:22;6073:70;:::i;:::-;5563:640;;;;-1:-1:-1;6162:8:1;-1:-1:-1;;;;5563:640:1:o;6393:592::-;6464:6;6472;6525:2;6513:9;6504:7;6500:23;6496:32;6493:52;;;6541:1;6538;6531:12;6493:52;6581:9;6568:23;-1:-1:-1;;;;;6651:2:1;6643:6;6640:14;6637:34;;;6667:1;6664;6657:12;6637:34;6705:6;6694:9;6690:22;6680:32;;6750:7;6743:4;6739:2;6735:13;6731:27;6721:55;;6772:1;6769;6762:12;6721:55;6812:2;6799:16;6838:2;6830:6;6827:14;6824:34;;;6854:1;6851;6844:12;6824:34;6899:7;6894:2;6885:6;6881:2;6877:15;6873:24;6870:37;6867:57;;;6920:1;6917;6910:12;6867:57;6951:2;6943:11;;;;;6973:6;;-1:-1:-1;6393:592:1;;-1:-1:-1;;;;6393:592:1:o;6990:456::-;7067:6;7075;7083;7136:2;7124:9;7115:7;7111:23;7107:32;7104:52;;;7152:1;7149;7142:12;7104:52;7191:9;7178:23;7210:31;7235:5;7210:31;:::i;:::-;7260:5;-1:-1:-1;7312:2:1;7297:18;;7284:32;;-1:-1:-1;7368:2:1;7353:18;;7340:32;7381:33;7340:32;7381:33;:::i;:::-;7433:7;7423:17;;;6990:456;;;;;:::o;7451:382::-;7516:6;7524;7577:2;7565:9;7556:7;7552:23;7548:32;7545:52;;;7593:1;7590;7583:12;7545:52;7632:9;7619:23;7651:31;7676:5;7651:31;:::i;:::-;7701:5;-1:-1:-1;7758:2:1;7743:18;;7730:32;7771:30;7730:32;7771:30;:::i;:::-;7820:7;7810:17;;;7451:382;;;;;:::o;7838:127::-;7899:10;7894:3;7890:20;7887:1;7880:31;7930:4;7927:1;7920:15;7954:4;7951:1;7944:15;7970:631;8034:5;-1:-1:-1;;;;;8105:2:1;8097:6;8094:14;8091:40;;;8111:18;;:::i;:::-;8186:2;8180:9;8154:2;8240:15;;-1:-1:-1;;8236:24:1;;;8262:2;8232:33;8228:42;8216:55;;;8286:18;;;8306:22;;;8283:46;8280:72;;;8332:18;;:::i;:::-;8372:10;8368:2;8361:22;8401:6;8392:15;;8431:6;8423;8416:22;8471:3;8462:6;8457:3;8453:16;8450:25;8447:45;;;8488:1;8485;8478:12;8447:45;8538:6;8533:3;8526:4;8518:6;8514:17;8501:44;8593:1;8586:4;8577:6;8569;8565:19;8561:30;8554:41;;;;7970:631;;;;;:::o;8606:794::-;8701:6;8709;8717;8725;8778:3;8766:9;8757:7;8753:23;8749:33;8746:53;;;8795:1;8792;8785:12;8746:53;8834:9;8821:23;8853:31;8878:5;8853:31;:::i;:::-;8903:5;-1:-1:-1;8960:2:1;8945:18;;8932:32;8973:33;8932:32;8973:33;:::i;:::-;9025:7;-1:-1:-1;9079:2:1;9064:18;;9051:32;;-1:-1:-1;9134:2:1;9119:18;;9106:32;-1:-1:-1;;;;;9150:30:1;;9147:50;;;9193:1;9190;9183:12;9147:50;9216:22;;9269:4;9261:13;;9257:27;-1:-1:-1;9247:55:1;;9298:1;9295;9288:12;9247:55;9321:73;9386:7;9381:2;9368:16;9363:2;9359;9355:11;9321:73;:::i;:::-;9311:83;;;8606:794;;;;;;;:::o;9405:450::-;9474:6;9527:2;9515:9;9506:7;9502:23;9498:32;9495:52;;;9543:1;9540;9533:12;9495:52;9583:9;9570:23;-1:-1:-1;;;;;9608:6:1;9605:30;9602:50;;;9648:1;9645;9638:12;9602:50;9671:22;;9724:4;9716:13;;9712:27;-1:-1:-1;9702:55:1;;9753:1;9750;9743:12;9702:55;9776:73;9841:7;9836:2;9823:16;9818:2;9814;9810:11;9776:73;:::i;9860:450::-;9934:6;9942;9950;10003:2;9991:9;9982:7;9978:23;9974:32;9971:52;;;10019:1;10016;10009:12;9971:52;10058:9;10045:23;10077:31;10102:5;10077:31;:::i;:::-;10127:5;-1:-1:-1;10184:2:1;10169:18;;10156:32;10197:30;10156:32;10197:30;:::i;10315:388::-;10383:6;10391;10444:2;10432:9;10423:7;10419:23;10415:32;10412:52;;;10460:1;10457;10450:12;10412:52;10499:9;10486:23;10518:31;10543:5;10518:31;:::i;:::-;10568:5;-1:-1:-1;10625:2:1;10610:18;;10597:32;10638:33;10597:32;10638:33;:::i;10708:127::-;10769:10;10764:3;10760:20;10757:1;10750:31;10800:4;10797:1;10790:15;10824:4;10821:1;10814:15;10840:128;10880:3;10911:1;10907:6;10904:1;10901:13;10898:39;;;10917:18;;:::i;:::-;-1:-1:-1;10953:9:1;;10840:128::o;10973:380::-;11052:1;11048:12;;;;11095;;;11116:61;;11170:4;11162:6;11158:17;11148:27;;11116:61;11223:2;11215:6;11212:14;11192:18;11189:38;11186:161;;;11269:10;11264:3;11260:20;11257:1;11250:31;11304:4;11301:1;11294:15;11332:4;11329:1;11322:15;11186:161;;10973:380;;;:::o;12601:168::-;12641:7;12707:1;12703;12699:6;12695:14;12692:1;12689:21;12684:1;12677:9;12670:17;12666:45;12663:71;;;12714:18;;:::i;:::-;-1:-1:-1;12754:9:1;;12601:168::o;12774:184::-;12844:6;12897:2;12885:9;12876:7;12872:23;12868:32;12865:52;;;12913:1;12910;12903:12;12865:52;-1:-1:-1;12936:16:1;;12774:184;-1:-1:-1;12774:184:1:o;13652:245::-;13719:6;13772:2;13760:9;13751:7;13747:23;13743:32;13740:52;;;13788:1;13785;13778:12;13740:52;13820:9;13814:16;13839:28;13861:5;13839:28;:::i;13902:251::-;13972:6;14025:2;14013:9;14004:7;14000:23;13996:32;13993:52;;;14041:1;14038;14031:12;13993:52;14073:9;14067:16;14092:31;14117:5;14092:31;:::i;14561:135::-;14600:3;-1:-1:-1;;14621:17:1;;14618:43;;;14641:18;;:::i;:::-;-1:-1:-1;14688:1:1;14677:13;;14561:135::o;16800:415::-;17002:2;16984:21;;;17041:2;17021:18;;;17014:30;17080:34;17075:2;17060:18;;17053:62;-1:-1:-1;;;17146:2:1;17131:18;;17124:49;17205:3;17190:19;;16800:415::o;17220:664::-;17447:3;17485:6;17479:13;17501:53;17547:6;17542:3;17535:4;17527:6;17523:17;17501:53;:::i;:::-;17617:13;;17576:16;;;;17639:57;17617:13;17576:16;17673:4;17661:17;;17639:57;:::i;:::-;17763:13;;17718:20;;;17785:57;17763:13;17718:20;17819:4;17807:17;;17785:57;:::i;:::-;17858:20;;17220:664;-1:-1:-1;;;;;17220:664:1:o;17889:125::-;17929:4;17957:1;17954;17951:8;17948:34;;;17962:18;;:::i;:::-;-1:-1:-1;17999:9:1;;17889:125::o;19658:246::-;19698:4;-1:-1:-1;;;;;19811:10:1;;;;19781;;19833:12;;;19830:38;;;19848:18;;:::i;:::-;19885:13;;19658:246;-1:-1:-1;;;19658:246:1:o;19909:253::-;19949:3;-1:-1:-1;;;;;20038:2:1;20035:1;20031:10;20068:2;20065:1;20061:10;20099:3;20095:2;20091:12;20086:3;20083:21;20080:47;;;20107:18;;:::i;:::-;20143:13;;19909:253;-1:-1:-1;;;;19909:253:1:o;21354:127::-;21415:10;21410:3;21406:20;21403:1;21396:31;21446:4;21443:1;21436:15;21470:4;21467:1;21460:15;21486:127;21547:10;21542:3;21538:20;21535:1;21528:31;21578:4;21575:1;21568:15;21602:4;21599:1;21592:15;21618:120;21658:1;21684;21674:35;;21689:18;;:::i;:::-;-1:-1:-1;21723:9:1;;21618:120::o;21743:489::-;-1:-1:-1;;;;;22012:15:1;;;21994:34;;22064:15;;22059:2;22044:18;;22037:43;22111:2;22096:18;;22089:34;;;22159:3;22154:2;22139:18;;22132:31;;;21937:4;;22180:46;;22206:19;;22198:6;22180:46;:::i;:::-;22172:54;21743:489;-1:-1:-1;;;;;;21743:489:1:o;22237:249::-;22306:6;22359:2;22347:9;22338:7;22334:23;22330:32;22327:52;;;22375:1;22372;22365:12;22327:52;22407:9;22401:16;22426:30;22450:5;22426:30;:::i;22491:112::-;22523:1;22549;22539:35;;22554:18;;:::i;:::-;-1:-1:-1;22588:9:1;;22491:112::o
Swarm Source
ipfs://e9aa636bbef3d99fc92d3241fe727ba0ef308999a11679a7cf8621a9c76318b3
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.