ERC-721
Overview
Max Total Supply
2,850 L2NFTOG
Holders
2,303
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 L2NFTOGLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
L2NftogContract
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at optimistic.etherscan.io on 2023-01-09 */ //*********************************************************************// //*********************************************************************// // // __ ___ _ ______________ ____ ______ // / / |__ \ / | / / ____/_ __/ / __ \/ ____/ // / / __/ / / |/ / /_ / / / / / / / __ // / /___/ __/ / /| / __/ / / / /_/ / /_/ / // /_____/____/ /_/ |_/_/ /_/ \____/\____/ // // //*********************************************************************// //*********************************************************************// //-------------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(); // 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 {} } // @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 { // @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) 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); _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) revert InvalidPayment(); if(tokenRedemptions[redemptionContract][tokenId]) revert TokenAlreadyRedeemed(); tokenRedemptions[redemptionContract][tokenId] = true; emit VerifiedClaim(_msgSender(), tokenId, redemptionContract); _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 = 1673265600; /** * @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 = 1673264700; /** * @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 = [0x78ED254b9c140c1A2BE10d2ad32C65b5f712f54b]; address public erc20Payable = 0x78ED254b9c140c1A2BE10d2ad32C65b5f712f54b; uint256[] public payableFees = [100]; uint256 public payableAddressCount = 1; 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: isFeeable.sol abstract contract Feeable is Teams { uint256 public PRICE = 0 ether; function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) public view returns (uint256) { return PRICE * _count; } } abstract contract RamppERC721A is Ownable, Teams, ERC721ARedemption, WithdrawableV2, ReentrancyGuard , Feeable , Allowlist , TimedDrop { constructor( string memory tokenName, string memory tokenSymbol ) ERC721A(tokenName, tokenSymbol, 1, 18499) { } uint8 constant public CONTRACT_VERSION = 2; string public _baseTokenURI = "ipfs://bafybeicqjg5iccx526ghwb4khgwhh3cvedmljhp6evnkcer34o4wjw4ruy/"; string public _baseTokenExtension = ".json"; bool public mintingOpen = false; uint256 public MAX_WALLET_MINTS = 1; /////////////// 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(msg.value != getPrice(_amount)) revert InvalidPayment(); _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(); // 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(); _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(msg.value != getPrice(_amount)) revert InvalidPayment(); if(!allowlistDropTimePassed()) revert AllowlistDropTimeHasNotPassed(); _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(); // 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(); _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 contractURI() public pure returns (string memory) { return "https://metadata.mintplex.xyz/uO3FgPRbO1uY6l3HzrMW/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/L2NftogContract.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract L2NftogContract is RamppERC721A { constructor() RamppERC721A("L2 NFT OG", "L2NFTOG"){} }
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":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoStateChange","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":"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":"_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":"disablePublicDropTime","outputs":[],"stateMutability":"nonpayable","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":"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":"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":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setPublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_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":"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":[{"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":"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":[{"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
6000600b819055600c55600d805462010000600160b01b03191663dead000017905560c06040527378ed254b9c140c1a2be10d2ad32c65b5f712f54b60a09081526200005090601190600162000479565b50601280546001600160a01b0319167378ed254b9c140c1a2be10d2ad32c65b5f712f54b17905560408051602081019091526064815262000096906013906001620004e3565b506001601481905560006017556019805461ffff19166101001790556363bc01c0601a55601b805460ff191690911790556363bbfe3c601c5560408051608081019091526043808252620051b760208301398051620000fe91601d9160209091019062000526565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200012d91601e9162000526565b50601f805460ff1916905560016020553480156200014a57600080fd5b50604051806040016040528060098152602001684c32204e4654204f4760b81b815250604051806040016040528060078152602001664c324e46544f4760c81b81525081816001614843733cc6cdda760b79bafa08df41ecfa224f810dceb66001620001c5620001bf6200042560201b60201c565b62000429565b6daaeb6d7670e522a718067333cd4e3b156200030a5780156200025857604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200023957600080fd5b505af11580156200024e573d6000803e3d6000fd5b505050506200030a565b6001600160a01b03821615620002a95760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200021e565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620002f057600080fd5b505af115801562000305573d6000803e3d6000fd5b505050505b505060008111620003795760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620003db5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000370565b8351620003f090600490602087019062000526565b5082516200040690600590602086019062000526565b5060039190915560805250506001600281905560165550620005f79050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620004d1579160200282015b82811115620004d157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200049a565b50620004df929150620005a3565b5090565b828054828255906000526020600020908101928215620004d1579160200282015b82811115620004d1578251829060ff1690559160200191906001019062000504565b8280546200053490620005ba565b90600052602060002090601f016020900481019282620005585760008555620004d1565b82601f106200057357805160ff1916838001178555620004d1565b82800160010185558215620004d1579182015b82811115620004d157825182559160200191906001019062000586565b5b80821115620004df5760008155600101620005a4565b600181811c90821680620005cf57607f821691505b60208210811415620005f157634e487b7160e01b600052602260045260246000fd5b50919050565b608051614b7362000644600039600081816109080152818161123e0152818161162b015281816118e201528181611fe7015281816120f0015281816123ba01526128860152614b736000f3fe6080604052600436106105735760003560e01c8063791f24db116102d8578063bb1876a811610180578063d8d24120116100e7578063e985e9c5116100a0578063f2fde38b1161007a578063f2fde38b14611040578063f703166314611060578063f8c0fd2014611080578063fd19eaf01461109557600080fd5b8063e985e9c514610fc2578063ec3408261461100b578063ee54be961461102057600080fd5b8063d8d2412014610f29578063dfdedf6914610f3e578063e692893314610f5e578063e6c6990a14610f73578063e757223014610f8d578063e8a3d48514610fad57600080fd5b8063cfc86f7b11610139578063cfc86f7b14610e93578063d266f3a914610ea8578063d2e0297f14610ec8578063d547cfb714610ede578063d7224ba014610ef3578063d83ae33214610f0957600080fd5b8063bb1876a814610df4578063bc05748e14610e09578063c87b56dd14610e1e578063caa0f92a14610e3e578063cacf084214610e53578063cc7e1b9a14610e7357600080fd5b806391b7f5ed1161023f578063a1db9782116101f8578063afe5608b116101d2578063afe5608b14610d8a578063aff3e10b14610d9f578063b88d4fde14610dbf578063b94b237614610ddf57600080fd5b8063a1db978214610d2a578063a22cb46514610d4a578063a91bd1a914610d6a57600080fd5b806391b7f5ed14610c5b57806391c4b57414610c7b57806395d89b4114610c9a57806399e48d9714610caf5780639b9f6e5614610cea578063a1af10ca14610d0a57600080fd5b806389f26d581161029157806389f26d5814610bc55780638b86b64614610bda5780638d859f3e14610bed5780638da5cb5b14610c035780638f4bb49714610c215780638ff4013f14610c3b57600080fd5b8063791f24db14610b1b57806379ab3c8914610b3b5780637fb8c6d314610b5057806383c81c4114610b70578063853828b614610b90578063891bbe7314610ba557600080fd5b80633e07311c1161043b5780634ab8b5dd116103a257806358feaa591161035b5780636ba9fd38116103355780636ba9fd3814610abc5780636d3de80614610ad157806370a0823114610ae6578063715018a614610b0657600080fd5b806358feaa5914610a7457806360986a7114610a895780636352211e14610a9c57600080fd5b80634ab8b5dd146109be5780634dde3fe1146109d45780634f6ccce7146109fa578063547520fe14610a1a57806355228ca714610a3a57806355f804b314610a5457600080fd5b806345c0f533116103f457806345c0f533146108f657806345db6f7a1461092a578063464c34281461094a57806346f41ed51461096a5780634783f0ef1461098457806348b54eb3146109a457600080fd5b80633e07311c146108555780633e3e0b121461086b57806340ccc0821461088057806342842e0e146108a057806343696f18146108c057806344eed881146108e057600080fd5b80631e9a6950116104df5780633300678611610498578063330067861461079c57806337912c1b146107bc57806338b90333146107dc57806338f74162146108035780633c003254146108225780633d3f9c571461083557600080fd5b80631e9a6950146106fd57806323b872dd14610710578063286c8137146107305780632913daa0146107505780632eb4a7ab146107665780632f745c591461077c57600080fd5b8063095ea7b311610531578063095ea7b31461066f5780630c863bb61461068f57806310f05cb0146106a457806316b88a1d146106d457806318160ddd146105785780631aa4ba67146106e757600080fd5b80629a9b7b1461057857806301ffc9a7146105a0578063043a2a40146105d05780630644cefa1461060057806306fdde0314610615578063081812fc14610637575b600080fd5b34801561058457600080fd5b5061058d6110b5565b6040519081526020015b60405180910390f35b3480156105ac57600080fd5b506105c06105bb366004614337565b6110c9565b6040519015158152602001610597565b3480156105dc57600080fd5b506105c06105eb366004614370565b600a6020526000908152604090205460ff1681565b61061361060e36600461438d565b611136565b005b34801561062157600080fd5b5061062a6112c7565b6040516105979190614411565b34801561064357600080fd5b50610657610652366004614424565b611359565b6040516001600160a01b039091168152602001610597565b34801561067b57600080fd5b5061061361068a36600461438d565b6113e7565b34801561069b57600080fd5b506105c0611544565b3480156106b057600080fd5b506105c06106bf366004614370565b600e6020526000908152604090205460ff1681565b6106136106e2366004614488565b611566565b3480156106f357600080fd5b5061058d601c5481565b61061361070b36600461438d565b6118e0565b34801561071c57600080fd5b5061061361072b3660046144fb565b611c59565b34801561073c57600080fd5b5061058d61074b366004614424565b611ca4565b34801561075c57600080fd5b5061058d60035481565b34801561077257600080fd5b5061058d60185481565b34801561078857600080fd5b5061058d61079736600461438d565b611cc5565b3480156107a857600080fd5b506105c06107b736600461453c565b611e3c565b3480156107c857600080fd5b506106136107d736600461459e565b611ee3565b3480156107e857600080fd5b506107f1600281565b60405160ff9091168152602001610597565b34801561080f57600080fd5b50600d546105c090610100900460ff1681565b6106136108303660046145bb565b611efe565b34801561084157600080fd5b506105c0610850366004614370565b612091565b34801561086157600080fd5b5061058d60145481565b34801561087757600080fd5b506106136120b4565b34801561088c57600080fd5b5061061361089b36600461438d565b6120c8565b3480156108ac57600080fd5b506106136108bb3660046144fb565b61214d565b3480156108cc57600080fd5b506106136108db366004614370565b6121b3565b3480156108ec57600080fd5b5061058d601a5481565b34801561090257600080fd5b5061058d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561093657600080fd5b50610613610945366004614424565b61222f565b34801561095657600080fd5b50610613610965366004614370565b61223c565b34801561097657600080fd5b506015546105c09060ff1681565b34801561099057600080fd5b5061061361099f366004614424565b612268565b3480156109b057600080fd5b50600d546105c09060ff1681565b3480156109ca57600080fd5b5061058d60205481565b3480156109e057600080fd5b50600d54610657906201000090046001600160a01b031681565b348015610a0657600080fd5b5061058d610a15366004614424565b612298565b348015610a2657600080fd5b50610613610a35366004614424565b612300565b348015610a4657600080fd5b50601b546105c09060ff1681565b348015610a6057600080fd5b50610613610a6f366004614616565b61232b565b348015610a8057600080fd5b5061061361233f565b610613610a97366004614687565b612354565b348015610aa857600080fd5b50610657610ab7366004614424565b6126c6565b348015610ac857600080fd5b506106136126d8565b348015610add57600080fd5b506106136126ef565b348015610af257600080fd5b5061058d610b01366004614370565b612703565b348015610b1257600080fd5b50610613612794565b348015610b2757600080fd5b50610613610b3636600461459e565b6127a8565b348015610b4757600080fd5b506106136127ca565b348015610b5c57600080fd5b50601254610657906001600160a01b031681565b348015610b7c57600080fd5b50610613610b8b3660046146c9565b6127e1565b348015610b9c57600080fd5b50610613612814565b348015610bb157600080fd5b50610657610bc0366004614424565b612843565b348015610bd157600080fd5b5061061361286d565b610613610be836600461438d565b612884565b348015610bf957600080fd5b5061058d60175481565b348015610c0f57600080fd5b506000546001600160a01b0316610657565b348015610c2d57600080fd5b50601f546105c09060ff1681565b348015610c4757600080fd5b50610613610c56366004614424565b612a2f565b348015610c6757600080fd5b50610613610c76366004614424565b612a5a565b348015610c8757600080fd5b506019546105c090610100900460ff1681565b348015610ca657600080fd5b5061062a612a67565b348015610cbb57600080fd5b506105c0610cca36600461438d565b600f60209081526000928352604080842090915290825290205460ff1681565b348015610cf657600080fd5b50610613610d053660046146c9565b612a76565b348015610d1657600080fd5b506105c0610d25366004614370565b612aa9565b348015610d3657600080fd5b50610613610d4536600461438d565b612af6565b348015610d5657600080fd5b50610613610d653660046146c9565b612c3c565b348015610d7657600080fd5b50610613610d85366004614370565b612d46565b348015610d9657600080fd5b50610613612dc6565b348015610dab57600080fd5b50610613610dba366004614616565b612dd6565b348015610dcb57600080fd5b50610613610dda366004614718565b612dea565b348015610deb57600080fd5b50610613612e8c565b348015610e0057600080fd5b50610613612ea0565b348015610e1557600080fd5b50610613612eb4565b348015610e2a57600080fd5b5061062a610e39366004614424565b612ecd565b348015610e4a57600080fd5b5061058d612f3a565b348015610e5f57600080fd5b50610613610e6e366004614370565b612f54565b348015610e7f57600080fd5b50610613610e8e366004614370565b612f7d565b348015610e9f57600080fd5b5061062a612fd6565b348015610eb457600080fd5b5061058d610ec3366004614370565b613064565b348015610ed457600080fd5b5061058d600c5481565b348015610eea57600080fd5b5061062a6130ab565b348015610eff57600080fd5b5061058d600b5481565b348015610f1557600080fd5b50610613610f243660046147f7565b6130ba565b348015610f3557600080fd5b506105c06130f1565b348015610f4a57600080fd5b50610613610f59366004614370565b61310e565b348015610f6a57600080fd5b50610613613182565b348015610f7f57600080fd5b506019546105c09060ff1681565b348015610f9957600080fd5b5061058d610fa8366004614424565b613199565b348015610fb957600080fd5b5061062a6131a9565b348015610fce57600080fd5b506105c0610fdd366004614827565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561101757600080fd5b5061062a6131c9565b34801561102c57600080fd5b5061061361103b366004614424565b6131d6565b34801561104c57600080fd5b5061061361105b366004614370565b613204565b34801561106c57600080fd5b5061061361107b366004614424565b61327d565b34801561108c57600080fd5b506106136132ab565b3480156110a157600080fd5b506105c06110b036600461438d565b6132bb565b60006110c46002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806110fa57506001600160e01b03198216635b5e139f60e01b145b8061111557506001600160e01b0319821663780e9d6360e01b145b8061113057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60155460ff161561115a5760405163380ea98360e21b815260040160405180910390fd5b806111785760405163b562e8dd60e01b815260040160405180910390fd5b60035481111561119b576040516393eeb41560e01b815260040160405180910390fd5b601f5460ff166111be576040516316851fc760e11b815260040160405180910390fd5b601f5460ff1680156111d2575060195460ff165b156111f0576040516316851fc760e11b815260040160405180910390fd5b6111f8611544565b6112155760405163cb4a4a8560e01b815260040160405180910390fd5b61121f82826132bb565b61123c576040516366be767160e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816112666110b5565b611270919061486b565b111561128f5760405163a4875a4960e01b815260040160405180910390fd5b61129881613199565b34146112b75760405163078d696560e31b815260040160405180910390fd5b6112c3828260006132fb565b5050565b6060600480546112d690614883565b80601f016020809104026020016040519081016040528092919081815260200182805461130290614883565b801561134f5780601f106113245761010080835404028352916020019161134f565b820191906000526020600020905b81548152906001019060200180831161133257829003601f168201915b5050505050905090565b600061136482613316565b6113cb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b816113f18161332c565b60006113fc836126c6565b9050806001600160a01b0316846001600160a01b0316141561146b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016113c2565b6001600160a01b0384166000908152600a602052604090205460ff16156114a55760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b03821614806114c157506114c18133610fdd565b6115335760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016113c2565b61153e8484836133f4565b50505050565b601954600090610100900460ff1661155c5750600190565b50601a5442101590565b60195460ff16158061157b5750601f5460ff16155b15611599576040516309c7220160e31b815260040160405180910390fd5b6115a4858484611e3c565b6115c15760405163097b24df60e41b815260040160405180910390fd5b836115df5760405163b562e8dd60e01b815260040160405180910390fd5b600354841115611602576040516393eeb41560e01b815260040160405180910390fd5b61160c85856132bb565b611629576040516366be767160e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000846116536110b5565b61165d919061486b565b111561167c5760405163a4875a4960e01b815260040160405180910390fd5b6116846130f1565b6116a15760405163010450c160e31b815260040160405180910390fd5b6116aa81612091565b6116c757604051636c501c9960e11b815260040160405180910390fd5b6000846116d383613064565b6116dd91906148be565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561172657600080fd5b505afa15801561173a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175e91906148dd565b101561177d57604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156117c757600080fd5b505afa1580156117db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ff91906148dd565b101561181e5760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561187257600080fd5b505af1158015611886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118aa91906148f6565b9050806118ca57604051633c9fd93960e21b815260040160405180910390fd5b6118d6888860006132fb565b5050505050505050565b7f0000000000000000000000000000000000000000000000000000000000000000611909612f3a565b11156119285760405163a4875a4960e01b815260040160405180910390fd5b600d5460ff1661194b57604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b038216611972576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166119ab57604051638c9f128f60e01b815260040160405180910390fd5b600c5434146119cd5760405163078d696560e31b815260040160405180910390fd5b6001600160a01b0382166000908152600f6020908152604080832084845290915290205460ff1615611a1257604051631bd64ea560e01b815260040160405180910390fd5b81336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611a5857600080fd5b505afa158015611a6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a909190614913565b6001600160a01b031614611ab757604051630a82879560e11b815260040160405180910390fd5b60405163020604bf60e21b81526004810183905230906001600160a01b0383169063081812fc9060240160206040518083038186803b158015611af957600080fd5b505afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b319190614913565b6001600160a01b031614611b58576040516392395ac160e01b815260040160405180910390fd5b6001600160a01b0381166342842e0e33600d5460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015262010000909104909116602482015260448101859052606401600060405180830381600087803b158015611bc257600080fd5b505af1158015611bd6573d6000803e3d6000fd5b5050506001600160a01b0384166000818152600f602090815260408083208784529091529020805460ff19166001179055905082611c113390565b6001600160a01b03167f753fa485a7db01b79a5bf240795c914378b8fb5fcb2a848f2acd51aa6804adbf60405160405180910390a4611c54335b600160006132fb565b505050565b826daaeb6d7670e522a718067333cd4e3b15611c99576001600160a01b038116331415611c9057611c8b848484613450565b61153e565b611c99816137d0565b61153e848484613450565b60138181548110611cb457600080fd5b600091825260209091200154905081565b6000611cd083612703565b8210611d295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016113c2565b6000611d336110b5565b905060008060005b83811015611ddc576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611d8d57805192505b876001600160a01b0316836001600160a01b03161415611dc95786841415611dbb5750935061113092505050565b83611dc581614930565b9450505b5080611dd481614930565b915050611d3b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016113c2565b601854600090611e5f576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050611eda848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018549150849050613903565b95945050505050565b611eeb613919565b600d805460ff1916911515919091179055565b60155460ff1615611f225760405163380ea98360e21b815260040160405180910390fd5b60195460ff161580611f375750601f5460ff16155b15611f55576040516309c7220160e31b815260040160405180910390fd5b611f60848383611e3c565b611f7d5760405163097b24df60e41b815260040160405180910390fd5b82611f9b5760405163b562e8dd60e01b815260040160405180910390fd5b600354831115611fbe576040516393eeb41560e01b815260040160405180910390fd5b611fc884846132bb565b611fe5576040516366be767160e11b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008361200f6110b5565b612019919061486b565b11156120385760405163a4875a4960e01b815260040160405180910390fd5b61204183613199565b34146120605760405163078d696560e31b815260040160405180910390fd5b6120686130f1565b6120855760405163010450c160e31b815260040160405180910390fd5b61153e848460006132fb565b6001600160a01b031660009081526010602052604090205460ff16151560011490565b6120bc613919565b601f805460ff19169055565b6120d0613919565b806120ee5760405163b562e8dd60e01b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816121186110b5565b612122919061486b565b11156121415760405163a4875a4960e01b815260040160405180910390fd5b6112c3828260016132fb565b826daaeb6d7670e522a718067333cd4e3b15612198576001600160a01b03811633141561218f57611c8b84848460405180602001604052806000815250612dea565b612198816137d0565b61153e84848460405180602001604052806000815250612dea565b6121bb61399e565b6001600160a01b0381166121e15760405162afb37360e31b815260040160405180910390fd5b6121ea81612aa9565b1561220857604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b612237613919565b600c55565b612244613919565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b612270613919565b6018548114156122935760405163a28a88c160e01b815260040160405180910390fd5b601855565b60006122a26110b5565b82106122fc5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016113c2565b5090565b612308613919565b80612326576040516363868c5560e11b815260040160405180910390fd5b600355565b612333613919565b611c54601d8383614291565b612347613919565b6019805461ff0019169055565b816123725760405163b562e8dd60e01b815260040160405180910390fd5b600354821115612395576040516393eeb41560e01b815260040160405180910390fd5b601f5460ff166123b8576040516316851fc760e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000826123e26110b5565b6123ec919061486b565b111561240b5760405163a4875a4960e01b815260040160405180910390fd5b601f5460ff16801561241f575060195460ff165b1561243d576040516316851fc760e11b815260040160405180910390fd5b612445611544565b6124625760405163cb4a4a8560e01b815260040160405180910390fd5b61246c83836132bb565b612489576040516366be767160e11b815260040160405180910390fd5b61249281612091565b6124af57604051636c501c9960e11b815260040160405180910390fd5b6000826124bb83613064565b6124c591906148be565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561250e57600080fd5b505afa158015612522573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254691906148dd565b101561256557604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156125af57600080fd5b505afa1580156125c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e791906148dd565b10156126065760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561265a57600080fd5b505af115801561266e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269291906148f6565b9050806126b257604051633c9fd93960e21b815260040160405180910390fd5b6126be868660006132fb565b505050505050565b60006126d1826139f8565b5192915050565b6126e0613919565b601f805460ff19166001179055565b6126f7613919565b6019805460ff19169055565b60006001600160a01b03821661276f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016113c2565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b61279c61399e565b6127a66000613b26565b565b6127b0613919565b600d80549115156101000261ff0019909216919091179055565b6127d2613919565b6019805460ff19166001179055565b6127e9613919565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61281c613919565b4761283a576040516363868c5560e11b815260040160405180910390fd5b6127a647613b76565b6011818154811061285357600080fd5b6000918252602090912001546001600160a01b0316905081565b612875613919565b6015805460ff19166001179055565b7f00000000000000000000000000000000000000000000000000000000000000006128ad612f3a565b11156128cc5760405163a4875a4960e01b815260040160405180910390fd5b600d54610100900460ff166128f457604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b03821661291b576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1661295457604051638c9f128f60e01b815260040160405180910390fd5b600c5434146129765760405163078d696560e31b815260040160405180910390fd5b6001600160a01b0382166000908152600f6020908152604080832084845290915290205460ff16156129bb57604051631bd64ea560e01b815260040160405180910390fd5b6001600160a01b0382166000818152600f602090815260408083208584529091529020805460ff19166001179055816129f13390565b6001600160a01b03167fd51e3cd8003fe993628324a704bb284a9c42ae506e77f4f1ad1e80bca066dda560405160405180910390a46112c333611c4b565b612a37613919565b80612a55576040516363868c5560e11b815260040160405180910390fd5b602055565b612a62613919565b601755565b6060600580546112d690614883565b612a7e613919565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60006001600160a01b038216612ad15760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b612afe613919565b80612b1c576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015612b5f57600080fd5b505afa158015612b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9791906148dd565b1015612bb657604051631642df1760e21b815260040160405180910390fd5b60125460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b158015612c0457600080fd5b505af1158015612c18573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e91906148f6565b81612c468161332c565b6001600160a01b038316331415612c9f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016113c2565b6001600160a01b0383166000908152600a602052604090205460ff1615612cd95760405163d947c35f60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612d4e613919565b6001600160a01b038116612d75576040516322646a9760e21b815260040160405180910390fd5b6012546001600160a01b0382811691161415612da45760405163a28a88c160e01b815260040160405180910390fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b612dce613919565b6120bc6126ef565b612dde613919565b611c54601e8383614291565b836daaeb6d7670e522a718067333cd4e3b15612e52576001600160a01b038116331415612e4957612e1c858585613450565b612e2885858585613c03565b612e445760405162461bcd60e51b81526004016113c29061494b565b612e85565b612e52816137d0565b612e5d858585613450565b612e6985858585613c03565b612e855760405162461bcd60e51b81526004016113c29061494b565b5050505050565b612e94613919565b6015805460ff19169055565b612ea8613919565b601b805460ff19169055565b612ebc613919565b6019805461ff001916610100179055565b60606000612ed96130ab565b90506000612ee5613d10565b90506000825111612f055760405180602001604052806000815250612f32565b81612f0f85613d1f565b82604051602001612f229392919061499e565b6040516020818303038152906040525b949350505050565b6000612f496002546000190190565b6110c490600161486b565b612f5c613919565b6001600160a01b03166000908152601060205260409020805460ff19169055565b612f85613919565b6001600160a01b038116612fac576040516322646a9760e21b815260040160405180910390fd5b600d80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b601d8054612fe390614883565b80601f016020809104026020016040519081016040528092919081815260200182805461300f90614883565b801561305c5780601f106130315761010080835404028352916020019161305c565b820191906000526020600020905b81548152906001019060200180831161303f57829003601f168201915b505050505081565b600061306f82612091565b61308c57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b031660009081526010602052604090206001015490565b6060601d80546112d690614883565b6130c2613919565b6001600160a01b03929092166000908152601060205260409020805460ff191691151591909117815560010155565b601b5460009060ff166131045750600190565b50601c5442101590565b61311661399e565b6001600160a01b03811661313c5760405162afb37360e31b815260040160405180910390fd5b61314581612aa9565b6131615760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b61318a613919565b601b805460ff19166001179055565b60008160175461113091906148be565b6060604051806080016040528060448152602001614afa60449139905090565b601e8054612fe390614883565b6131de613919565b428110156131ff57604051639eea0a2f60e01b815260040160405180910390fd5b601a55565b61320c61399e565b6001600160a01b0381166132715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016113c2565b61327a81613b26565b50565b613285613919565b428110156132a657604051639eea0a2f60e01b815260040160405180910390fd5b601c55565b6132b3613919565b6126e06127ca565b6000816132db576040516363868c5560e11b815260040160405180910390fd5b602054826132e885613e1c565b6132f2919061486b565b11159392505050565b611c5483838360405180602001604052806000815250613eba565b6000816001111580156111305750506002541190565b6daaeb6d7670e522a718067333cd4e3b1561327a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561339457600080fd5b505afa1580156133a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133cc91906148f6565b61327a57604051633b79c77360e21b81526001600160a01b03821660048201526024016113c2565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061345b826139f8565b80519091506000906001600160a01b0316336001600160a01b0316148061349257503361348784611359565b6001600160a01b0316145b806134a4575081516134a49033610fdd565b90508061350e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016113c2565b846001600160a01b031682600001516001600160a01b0316146135825760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016113c2565b6001600160a01b0384166135e65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016113c2565b6135f660008484600001516133f4565b6001600160a01b03851660009081526007602052604081208054600192906136289084906001600160801b03166149e1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261367491859116614a09565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556136fb84600161486b565b6000818152600660205260409020549091506001600160a01b031661378a5761372381613316565b1561378a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561381a57600080fd5b505afa15801561382e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385291906148f6565b80156138e45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156138ac57600080fd5b505afa1580156138c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e491906148f6565b61327a57604051633b79c77360e21b81523360048201526024016113c2565b6000826139108584614187565b14949350505050565b600080546001600160a01b031633908114919061393590612aa9565b905081806139405750805b6112c35760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b60648201526084016113c2565b6000546001600160a01b031633146127a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016113c2565b60408051808201909152600080825260208201528180600111158015613a1f575060025481105b15613ac6576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613a70579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613ac1579392505050565b613a70565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016113c2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b6014548110156112c357613bf160118281548110613b9957613b99614a34565b9060005260206000200160009054906101000a90046001600160a01b0316606460138481548110613bcc57613bcc614a34565b906000526020600020015485613be291906148be565b613bec9190614a60565b6141fb565b80613bfb81614930565b915050613b79565b60006001600160a01b0384163b15613d0557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613c47903390899088908890600401614a74565b602060405180830381600087803b158015613c6157600080fd5b505af1925050508015613c91575060408051601f3d908101601f19168201909252613c8e91810190614ab1565b60015b613ceb573d808015613cbf576040519150601f19603f3d011682016040523d82523d6000602084013e613cc4565b606091505b508051613ce35760405162461bcd60e51b81526004016113c29061494b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f32565b506001949350505050565b6060601e80546112d690614883565b606081613d435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613d6d5780613d5781614930565b9150613d669050600a83614a60565b9150613d47565b6000816001600160401b03811115613d8757613d87614702565b6040519080825280601f01601f191660200182016040528015613db1576020820181803683370190505b5090505b8415612f3257613dc6600183614ace565b9150613dd3600a86614ae5565b613dde90603061486b565b60f81b818381518110613df357613df3614a34565b60200101906001600160f81b031916908160001a905350613e15600a86614a60565b9450613db5565b60006001600160a01b038216613e8e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016113c2565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b038516613f1d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016113c2565b613f2681613316565b15613f735760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016113c2565b82613fd557600354841115613fd55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016113c2565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190614031908890614a09565b6001600160801b031681526020018561404a578661404d565b60005b836020015161405c9190614a09565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561417b5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461413f6000898488613c03565b61415b5760405162461bcd60e51b81526004016113c29061494b565b8161416581614930565b925050808061417390614930565b9150506140f2565b50600255505050505050565b600081815b84518110156141f35760008582815181106141a9576141a9614a34565b602002602001015190508083116141cf57600083815260208290526040902092506141e0565b600081815260208490526040902092505b50806141eb81614930565b91505061418c565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614248576040519150601f19603f3d011682016040523d82523d6000602084013e61424d565b606091505b5050905080611c545760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016113c2565b82805461429d90614883565b90600052602060002090601f0160209004810192826142bf5760008555614305565b82601f106142d85782800160ff19823516178555614305565b82800160010185558215614305579182015b828111156143055782358255916020019190600101906142ea565b506122fc9291505b808211156122fc576000815560010161430d565b6001600160e01b03198116811461327a57600080fd5b60006020828403121561434957600080fd5b813561435481614321565b9392505050565b6001600160a01b038116811461327a57600080fd5b60006020828403121561438257600080fd5b81356143548161435b565b600080604083850312156143a057600080fd5b82356143ab8161435b565b946020939093013593505050565b60005b838110156143d45781810151838201526020016143bc565b8381111561153e5750506000910152565b600081518084526143fd8160208601602086016143b9565b601f01601f19169290920160200192915050565b60208152600061435460208301846143e5565b60006020828403121561443657600080fd5b5035919050565b60008083601f84011261444f57600080fd5b5081356001600160401b0381111561446657600080fd5b6020830191508360208260051b850101111561448157600080fd5b9250929050565b6000806000806000608086880312156144a057600080fd5b85356144ab8161435b565b94506020860135935060408601356001600160401b038111156144cd57600080fd5b6144d98882890161443d565b90945092505060608601356144ed8161435b565b809150509295509295909350565b60008060006060848603121561451057600080fd5b833561451b8161435b565b9250602084013561452b8161435b565b929592945050506040919091013590565b60008060006040848603121561455157600080fd5b833561455c8161435b565b925060208401356001600160401b0381111561457757600080fd5b6145838682870161443d565b9497909650939450505050565b801515811461327a57600080fd5b6000602082840312156145b057600080fd5b813561435481614590565b600080600080606085870312156145d157600080fd5b84356145dc8161435b565b93506020850135925060408501356001600160401b038111156145fe57600080fd5b61460a8782880161443d565b95989497509550505050565b6000806020838503121561462957600080fd5b82356001600160401b038082111561464057600080fd5b818501915085601f83011261465457600080fd5b81358181111561466357600080fd5b86602082850101111561467557600080fd5b60209290920196919550909350505050565b60008060006060848603121561469c57600080fd5b83356146a78161435b565b92506020840135915060408401356146be8161435b565b809150509250925092565b600080604083850312156146dc57600080fd5b82356146e78161435b565b915060208301356146f781614590565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561472e57600080fd5b84356147398161435b565b935060208501356147498161435b565b92506040850135915060608501356001600160401b038082111561476c57600080fd5b818701915087601f83011261478057600080fd5b81358181111561479257614792614702565b604051601f8201601f19908116603f011681019083821181831017156147ba576147ba614702565b816040528281528a60208487010111156147d357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006060848603121561480c57600080fd5b83356148178161435b565b9250602084013561452b81614590565b6000806040838503121561483a57600080fd5b82356148458161435b565b915060208301356146f78161435b565b634e487b7160e01b600052601160045260246000fd5b6000821982111561487e5761487e614855565b500190565b600181811c9082168061489757607f821691505b602082108114156148b857634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156148d8576148d8614855565b500290565b6000602082840312156148ef57600080fd5b5051919050565b60006020828403121561490857600080fd5b815161435481614590565b60006020828403121561492557600080fd5b81516143548161435b565b600060001982141561494457614944614855565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516149b08184602089016143b9565b8451908301906149c48183602089016143b9565b84519101906149d78183602088016143b9565b0195945050505050565b60006001600160801b0383811690831681811015614a0157614a01614855565b039392505050565b60006001600160801b03808316818516808303821115614a2b57614a2b614855565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082614a6f57614a6f614a4a565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614aa7908301846143e5565b9695505050505050565b600060208284031215614ac357600080fd5b815161435481614321565b600082821015614ae057614ae0614855565b500390565b600082614af457614af4614a4a565b50069056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f754f3346675052624f317559366c33487a724d572f636f6e74726163742d6d65746164617461a2646970667358221220d86f5fee83e520cb91f6cd28cbe77058b06614d803528b88306f3d7dd27f111864736f6c63430008090033697066733a2f2f6261667962656963716a67356963637835323667687762346b686777686833637665646d6c6a68703665766e6b63657233346f34776a77347275792f
Deployed Bytecode
0x6080604052600436106105735760003560e01c8063791f24db116102d8578063bb1876a811610180578063d8d24120116100e7578063e985e9c5116100a0578063f2fde38b1161007a578063f2fde38b14611040578063f703166314611060578063f8c0fd2014611080578063fd19eaf01461109557600080fd5b8063e985e9c514610fc2578063ec3408261461100b578063ee54be961461102057600080fd5b8063d8d2412014610f29578063dfdedf6914610f3e578063e692893314610f5e578063e6c6990a14610f73578063e757223014610f8d578063e8a3d48514610fad57600080fd5b8063cfc86f7b11610139578063cfc86f7b14610e93578063d266f3a914610ea8578063d2e0297f14610ec8578063d547cfb714610ede578063d7224ba014610ef3578063d83ae33214610f0957600080fd5b8063bb1876a814610df4578063bc05748e14610e09578063c87b56dd14610e1e578063caa0f92a14610e3e578063cacf084214610e53578063cc7e1b9a14610e7357600080fd5b806391b7f5ed1161023f578063a1db9782116101f8578063afe5608b116101d2578063afe5608b14610d8a578063aff3e10b14610d9f578063b88d4fde14610dbf578063b94b237614610ddf57600080fd5b8063a1db978214610d2a578063a22cb46514610d4a578063a91bd1a914610d6a57600080fd5b806391b7f5ed14610c5b57806391c4b57414610c7b57806395d89b4114610c9a57806399e48d9714610caf5780639b9f6e5614610cea578063a1af10ca14610d0a57600080fd5b806389f26d581161029157806389f26d5814610bc55780638b86b64614610bda5780638d859f3e14610bed5780638da5cb5b14610c035780638f4bb49714610c215780638ff4013f14610c3b57600080fd5b8063791f24db14610b1b57806379ab3c8914610b3b5780637fb8c6d314610b5057806383c81c4114610b70578063853828b614610b90578063891bbe7314610ba557600080fd5b80633e07311c1161043b5780634ab8b5dd116103a257806358feaa591161035b5780636ba9fd38116103355780636ba9fd3814610abc5780636d3de80614610ad157806370a0823114610ae6578063715018a614610b0657600080fd5b806358feaa5914610a7457806360986a7114610a895780636352211e14610a9c57600080fd5b80634ab8b5dd146109be5780634dde3fe1146109d45780634f6ccce7146109fa578063547520fe14610a1a57806355228ca714610a3a57806355f804b314610a5457600080fd5b806345c0f533116103f457806345c0f533146108f657806345db6f7a1461092a578063464c34281461094a57806346f41ed51461096a5780634783f0ef1461098457806348b54eb3146109a457600080fd5b80633e07311c146108555780633e3e0b121461086b57806340ccc0821461088057806342842e0e146108a057806343696f18146108c057806344eed881146108e057600080fd5b80631e9a6950116104df5780633300678611610498578063330067861461079c57806337912c1b146107bc57806338b90333146107dc57806338f74162146108035780633c003254146108225780633d3f9c571461083557600080fd5b80631e9a6950146106fd57806323b872dd14610710578063286c8137146107305780632913daa0146107505780632eb4a7ab146107665780632f745c591461077c57600080fd5b8063095ea7b311610531578063095ea7b31461066f5780630c863bb61461068f57806310f05cb0146106a457806316b88a1d146106d457806318160ddd146105785780631aa4ba67146106e757600080fd5b80629a9b7b1461057857806301ffc9a7146105a0578063043a2a40146105d05780630644cefa1461060057806306fdde0314610615578063081812fc14610637575b600080fd5b34801561058457600080fd5b5061058d6110b5565b6040519081526020015b60405180910390f35b3480156105ac57600080fd5b506105c06105bb366004614337565b6110c9565b6040519015158152602001610597565b3480156105dc57600080fd5b506105c06105eb366004614370565b600a6020526000908152604090205460ff1681565b61061361060e36600461438d565b611136565b005b34801561062157600080fd5b5061062a6112c7565b6040516105979190614411565b34801561064357600080fd5b50610657610652366004614424565b611359565b6040516001600160a01b039091168152602001610597565b34801561067b57600080fd5b5061061361068a36600461438d565b6113e7565b34801561069b57600080fd5b506105c0611544565b3480156106b057600080fd5b506105c06106bf366004614370565b600e6020526000908152604090205460ff1681565b6106136106e2366004614488565b611566565b3480156106f357600080fd5b5061058d601c5481565b61061361070b36600461438d565b6118e0565b34801561071c57600080fd5b5061061361072b3660046144fb565b611c59565b34801561073c57600080fd5b5061058d61074b366004614424565b611ca4565b34801561075c57600080fd5b5061058d60035481565b34801561077257600080fd5b5061058d60185481565b34801561078857600080fd5b5061058d61079736600461438d565b611cc5565b3480156107a857600080fd5b506105c06107b736600461453c565b611e3c565b3480156107c857600080fd5b506106136107d736600461459e565b611ee3565b3480156107e857600080fd5b506107f1600281565b60405160ff9091168152602001610597565b34801561080f57600080fd5b50600d546105c090610100900460ff1681565b6106136108303660046145bb565b611efe565b34801561084157600080fd5b506105c0610850366004614370565b612091565b34801561086157600080fd5b5061058d60145481565b34801561087757600080fd5b506106136120b4565b34801561088c57600080fd5b5061061361089b36600461438d565b6120c8565b3480156108ac57600080fd5b506106136108bb3660046144fb565b61214d565b3480156108cc57600080fd5b506106136108db366004614370565b6121b3565b3480156108ec57600080fd5b5061058d601a5481565b34801561090257600080fd5b5061058d7f000000000000000000000000000000000000000000000000000000000000484381565b34801561093657600080fd5b50610613610945366004614424565b61222f565b34801561095657600080fd5b50610613610965366004614370565b61223c565b34801561097657600080fd5b506015546105c09060ff1681565b34801561099057600080fd5b5061061361099f366004614424565b612268565b3480156109b057600080fd5b50600d546105c09060ff1681565b3480156109ca57600080fd5b5061058d60205481565b3480156109e057600080fd5b50600d54610657906201000090046001600160a01b031681565b348015610a0657600080fd5b5061058d610a15366004614424565b612298565b348015610a2657600080fd5b50610613610a35366004614424565b612300565b348015610a4657600080fd5b50601b546105c09060ff1681565b348015610a6057600080fd5b50610613610a6f366004614616565b61232b565b348015610a8057600080fd5b5061061361233f565b610613610a97366004614687565b612354565b348015610aa857600080fd5b50610657610ab7366004614424565b6126c6565b348015610ac857600080fd5b506106136126d8565b348015610add57600080fd5b506106136126ef565b348015610af257600080fd5b5061058d610b01366004614370565b612703565b348015610b1257600080fd5b50610613612794565b348015610b2757600080fd5b50610613610b3636600461459e565b6127a8565b348015610b4757600080fd5b506106136127ca565b348015610b5c57600080fd5b50601254610657906001600160a01b031681565b348015610b7c57600080fd5b50610613610b8b3660046146c9565b6127e1565b348015610b9c57600080fd5b50610613612814565b348015610bb157600080fd5b50610657610bc0366004614424565b612843565b348015610bd157600080fd5b5061061361286d565b610613610be836600461438d565b612884565b348015610bf957600080fd5b5061058d60175481565b348015610c0f57600080fd5b506000546001600160a01b0316610657565b348015610c2d57600080fd5b50601f546105c09060ff1681565b348015610c4757600080fd5b50610613610c56366004614424565b612a2f565b348015610c6757600080fd5b50610613610c76366004614424565b612a5a565b348015610c8757600080fd5b506019546105c090610100900460ff1681565b348015610ca657600080fd5b5061062a612a67565b348015610cbb57600080fd5b506105c0610cca36600461438d565b600f60209081526000928352604080842090915290825290205460ff1681565b348015610cf657600080fd5b50610613610d053660046146c9565b612a76565b348015610d1657600080fd5b506105c0610d25366004614370565b612aa9565b348015610d3657600080fd5b50610613610d4536600461438d565b612af6565b348015610d5657600080fd5b50610613610d653660046146c9565b612c3c565b348015610d7657600080fd5b50610613610d85366004614370565b612d46565b348015610d9657600080fd5b50610613612dc6565b348015610dab57600080fd5b50610613610dba366004614616565b612dd6565b348015610dcb57600080fd5b50610613610dda366004614718565b612dea565b348015610deb57600080fd5b50610613612e8c565b348015610e0057600080fd5b50610613612ea0565b348015610e1557600080fd5b50610613612eb4565b348015610e2a57600080fd5b5061062a610e39366004614424565b612ecd565b348015610e4a57600080fd5b5061058d612f3a565b348015610e5f57600080fd5b50610613610e6e366004614370565b612f54565b348015610e7f57600080fd5b50610613610e8e366004614370565b612f7d565b348015610e9f57600080fd5b5061062a612fd6565b348015610eb457600080fd5b5061058d610ec3366004614370565b613064565b348015610ed457600080fd5b5061058d600c5481565b348015610eea57600080fd5b5061062a6130ab565b348015610eff57600080fd5b5061058d600b5481565b348015610f1557600080fd5b50610613610f243660046147f7565b6130ba565b348015610f3557600080fd5b506105c06130f1565b348015610f4a57600080fd5b50610613610f59366004614370565b61310e565b348015610f6a57600080fd5b50610613613182565b348015610f7f57600080fd5b506019546105c09060ff1681565b348015610f9957600080fd5b5061058d610fa8366004614424565b613199565b348015610fb957600080fd5b5061062a6131a9565b348015610fce57600080fd5b506105c0610fdd366004614827565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561101757600080fd5b5061062a6131c9565b34801561102c57600080fd5b5061061361103b366004614424565b6131d6565b34801561104c57600080fd5b5061061361105b366004614370565b613204565b34801561106c57600080fd5b5061061361107b366004614424565b61327d565b34801561108c57600080fd5b506106136132ab565b3480156110a157600080fd5b506105c06110b036600461438d565b6132bb565b60006110c46002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806110fa57506001600160e01b03198216635b5e139f60e01b145b8061111557506001600160e01b0319821663780e9d6360e01b145b8061113057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60155460ff161561115a5760405163380ea98360e21b815260040160405180910390fd5b806111785760405163b562e8dd60e01b815260040160405180910390fd5b60035481111561119b576040516393eeb41560e01b815260040160405180910390fd5b601f5460ff166111be576040516316851fc760e11b815260040160405180910390fd5b601f5460ff1680156111d2575060195460ff165b156111f0576040516316851fc760e11b815260040160405180910390fd5b6111f8611544565b6112155760405163cb4a4a8560e01b815260040160405180910390fd5b61121f82826132bb565b61123c576040516366be767160e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000004843816112666110b5565b611270919061486b565b111561128f5760405163a4875a4960e01b815260040160405180910390fd5b61129881613199565b34146112b75760405163078d696560e31b815260040160405180910390fd5b6112c3828260006132fb565b5050565b6060600480546112d690614883565b80601f016020809104026020016040519081016040528092919081815260200182805461130290614883565b801561134f5780601f106113245761010080835404028352916020019161134f565b820191906000526020600020905b81548152906001019060200180831161133257829003601f168201915b5050505050905090565b600061136482613316565b6113cb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b816113f18161332c565b60006113fc836126c6565b9050806001600160a01b0316846001600160a01b0316141561146b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016113c2565b6001600160a01b0384166000908152600a602052604090205460ff16156114a55760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b03821614806114c157506114c18133610fdd565b6115335760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016113c2565b61153e8484836133f4565b50505050565b601954600090610100900460ff1661155c5750600190565b50601a5442101590565b60195460ff16158061157b5750601f5460ff16155b15611599576040516309c7220160e31b815260040160405180910390fd5b6115a4858484611e3c565b6115c15760405163097b24df60e41b815260040160405180910390fd5b836115df5760405163b562e8dd60e01b815260040160405180910390fd5b600354841115611602576040516393eeb41560e01b815260040160405180910390fd5b61160c85856132bb565b611629576040516366be767160e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000004843846116536110b5565b61165d919061486b565b111561167c5760405163a4875a4960e01b815260040160405180910390fd5b6116846130f1565b6116a15760405163010450c160e31b815260040160405180910390fd5b6116aa81612091565b6116c757604051636c501c9960e11b815260040160405180910390fd5b6000846116d383613064565b6116dd91906148be565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561172657600080fd5b505afa15801561173a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175e91906148dd565b101561177d57604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156117c757600080fd5b505afa1580156117db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ff91906148dd565b101561181e5760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561187257600080fd5b505af1158015611886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118aa91906148f6565b9050806118ca57604051633c9fd93960e21b815260040160405180910390fd5b6118d6888860006132fb565b5050505050505050565b7f0000000000000000000000000000000000000000000000000000000000004843611909612f3a565b11156119285760405163a4875a4960e01b815260040160405180910390fd5b600d5460ff1661194b57604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b038216611972576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166119ab57604051638c9f128f60e01b815260040160405180910390fd5b600c5434146119cd5760405163078d696560e31b815260040160405180910390fd5b6001600160a01b0382166000908152600f6020908152604080832084845290915290205460ff1615611a1257604051631bd64ea560e01b815260040160405180910390fd5b81336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611a5857600080fd5b505afa158015611a6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a909190614913565b6001600160a01b031614611ab757604051630a82879560e11b815260040160405180910390fd5b60405163020604bf60e21b81526004810183905230906001600160a01b0383169063081812fc9060240160206040518083038186803b158015611af957600080fd5b505afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b319190614913565b6001600160a01b031614611b58576040516392395ac160e01b815260040160405180910390fd5b6001600160a01b0381166342842e0e33600d5460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015262010000909104909116602482015260448101859052606401600060405180830381600087803b158015611bc257600080fd5b505af1158015611bd6573d6000803e3d6000fd5b5050506001600160a01b0384166000818152600f602090815260408083208784529091529020805460ff19166001179055905082611c113390565b6001600160a01b03167f753fa485a7db01b79a5bf240795c914378b8fb5fcb2a848f2acd51aa6804adbf60405160405180910390a4611c54335b600160006132fb565b505050565b826daaeb6d7670e522a718067333cd4e3b15611c99576001600160a01b038116331415611c9057611c8b848484613450565b61153e565b611c99816137d0565b61153e848484613450565b60138181548110611cb457600080fd5b600091825260209091200154905081565b6000611cd083612703565b8210611d295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016113c2565b6000611d336110b5565b905060008060005b83811015611ddc576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611d8d57805192505b876001600160a01b0316836001600160a01b03161415611dc95786841415611dbb5750935061113092505050565b83611dc581614930565b9450505b5080611dd481614930565b915050611d3b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016113c2565b601854600090611e5f576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050611eda848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018549150849050613903565b95945050505050565b611eeb613919565b600d805460ff1916911515919091179055565b60155460ff1615611f225760405163380ea98360e21b815260040160405180910390fd5b60195460ff161580611f375750601f5460ff16155b15611f55576040516309c7220160e31b815260040160405180910390fd5b611f60848383611e3c565b611f7d5760405163097b24df60e41b815260040160405180910390fd5b82611f9b5760405163b562e8dd60e01b815260040160405180910390fd5b600354831115611fbe576040516393eeb41560e01b815260040160405180910390fd5b611fc884846132bb565b611fe5576040516366be767160e11b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000048438361200f6110b5565b612019919061486b565b11156120385760405163a4875a4960e01b815260040160405180910390fd5b61204183613199565b34146120605760405163078d696560e31b815260040160405180910390fd5b6120686130f1565b6120855760405163010450c160e31b815260040160405180910390fd5b61153e848460006132fb565b6001600160a01b031660009081526010602052604090205460ff16151560011490565b6120bc613919565b601f805460ff19169055565b6120d0613919565b806120ee5760405163b562e8dd60e01b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000004843816121186110b5565b612122919061486b565b11156121415760405163a4875a4960e01b815260040160405180910390fd5b6112c3828260016132fb565b826daaeb6d7670e522a718067333cd4e3b15612198576001600160a01b03811633141561218f57611c8b84848460405180602001604052806000815250612dea565b612198816137d0565b61153e84848460405180602001604052806000815250612dea565b6121bb61399e565b6001600160a01b0381166121e15760405162afb37360e31b815260040160405180910390fd5b6121ea81612aa9565b1561220857604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b612237613919565b600c55565b612244613919565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b612270613919565b6018548114156122935760405163a28a88c160e01b815260040160405180910390fd5b601855565b60006122a26110b5565b82106122fc5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016113c2565b5090565b612308613919565b80612326576040516363868c5560e11b815260040160405180910390fd5b600355565b612333613919565b611c54601d8383614291565b612347613919565b6019805461ff0019169055565b816123725760405163b562e8dd60e01b815260040160405180910390fd5b600354821115612395576040516393eeb41560e01b815260040160405180910390fd5b601f5460ff166123b8576040516316851fc760e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000004843826123e26110b5565b6123ec919061486b565b111561240b5760405163a4875a4960e01b815260040160405180910390fd5b601f5460ff16801561241f575060195460ff165b1561243d576040516316851fc760e11b815260040160405180910390fd5b612445611544565b6124625760405163cb4a4a8560e01b815260040160405180910390fd5b61246c83836132bb565b612489576040516366be767160e11b815260040160405180910390fd5b61249281612091565b6124af57604051636c501c9960e11b815260040160405180910390fd5b6000826124bb83613064565b6124c591906148be565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561250e57600080fd5b505afa158015612522573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254691906148dd565b101561256557604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156125af57600080fd5b505afa1580156125c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e791906148dd565b10156126065760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561265a57600080fd5b505af115801561266e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269291906148f6565b9050806126b257604051633c9fd93960e21b815260040160405180910390fd5b6126be868660006132fb565b505050505050565b60006126d1826139f8565b5192915050565b6126e0613919565b601f805460ff19166001179055565b6126f7613919565b6019805460ff19169055565b60006001600160a01b03821661276f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016113c2565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b61279c61399e565b6127a66000613b26565b565b6127b0613919565b600d80549115156101000261ff0019909216919091179055565b6127d2613919565b6019805460ff19166001179055565b6127e9613919565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61281c613919565b4761283a576040516363868c5560e11b815260040160405180910390fd5b6127a647613b76565b6011818154811061285357600080fd5b6000918252602090912001546001600160a01b0316905081565b612875613919565b6015805460ff19166001179055565b7f00000000000000000000000000000000000000000000000000000000000048436128ad612f3a565b11156128cc5760405163a4875a4960e01b815260040160405180910390fd5b600d54610100900460ff166128f457604051635654a43f60e11b815260040160405180910390fd5b6001600160a01b03821661291b576040516322646a9760e21b815260040160405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1661295457604051638c9f128f60e01b815260040160405180910390fd5b600c5434146129765760405163078d696560e31b815260040160405180910390fd5b6001600160a01b0382166000908152600f6020908152604080832084845290915290205460ff16156129bb57604051631bd64ea560e01b815260040160405180910390fd5b6001600160a01b0382166000818152600f602090815260408083208584529091529020805460ff19166001179055816129f13390565b6001600160a01b03167fd51e3cd8003fe993628324a704bb284a9c42ae506e77f4f1ad1e80bca066dda560405160405180910390a46112c333611c4b565b612a37613919565b80612a55576040516363868c5560e11b815260040160405180910390fd5b602055565b612a62613919565b601755565b6060600580546112d690614883565b612a7e613919565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60006001600160a01b038216612ad15760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b612afe613919565b80612b1c576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015612b5f57600080fd5b505afa158015612b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9791906148dd565b1015612bb657604051631642df1760e21b815260040160405180910390fd5b60125460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b158015612c0457600080fd5b505af1158015612c18573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e91906148f6565b81612c468161332c565b6001600160a01b038316331415612c9f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016113c2565b6001600160a01b0383166000908152600a602052604090205460ff1615612cd95760405163d947c35f60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612d4e613919565b6001600160a01b038116612d75576040516322646a9760e21b815260040160405180910390fd5b6012546001600160a01b0382811691161415612da45760405163a28a88c160e01b815260040160405180910390fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b612dce613919565b6120bc6126ef565b612dde613919565b611c54601e8383614291565b836daaeb6d7670e522a718067333cd4e3b15612e52576001600160a01b038116331415612e4957612e1c858585613450565b612e2885858585613c03565b612e445760405162461bcd60e51b81526004016113c29061494b565b612e85565b612e52816137d0565b612e5d858585613450565b612e6985858585613c03565b612e855760405162461bcd60e51b81526004016113c29061494b565b5050505050565b612e94613919565b6015805460ff19169055565b612ea8613919565b601b805460ff19169055565b612ebc613919565b6019805461ff001916610100179055565b60606000612ed96130ab565b90506000612ee5613d10565b90506000825111612f055760405180602001604052806000815250612f32565b81612f0f85613d1f565b82604051602001612f229392919061499e565b6040516020818303038152906040525b949350505050565b6000612f496002546000190190565b6110c490600161486b565b612f5c613919565b6001600160a01b03166000908152601060205260409020805460ff19169055565b612f85613919565b6001600160a01b038116612fac576040516322646a9760e21b815260040160405180910390fd5b600d80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b601d8054612fe390614883565b80601f016020809104026020016040519081016040528092919081815260200182805461300f90614883565b801561305c5780601f106130315761010080835404028352916020019161305c565b820191906000526020600020905b81548152906001019060200180831161303f57829003601f168201915b505050505081565b600061306f82612091565b61308c57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b031660009081526010602052604090206001015490565b6060601d80546112d690614883565b6130c2613919565b6001600160a01b03929092166000908152601060205260409020805460ff191691151591909117815560010155565b601b5460009060ff166131045750600190565b50601c5442101590565b61311661399e565b6001600160a01b03811661313c5760405162afb37360e31b815260040160405180910390fd5b61314581612aa9565b6131615760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b61318a613919565b601b805460ff19166001179055565b60008160175461113091906148be565b6060604051806080016040528060448152602001614afa60449139905090565b601e8054612fe390614883565b6131de613919565b428110156131ff57604051639eea0a2f60e01b815260040160405180910390fd5b601a55565b61320c61399e565b6001600160a01b0381166132715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016113c2565b61327a81613b26565b50565b613285613919565b428110156132a657604051639eea0a2f60e01b815260040160405180910390fd5b601c55565b6132b3613919565b6126e06127ca565b6000816132db576040516363868c5560e11b815260040160405180910390fd5b602054826132e885613e1c565b6132f2919061486b565b11159392505050565b611c5483838360405180602001604052806000815250613eba565b6000816001111580156111305750506002541190565b6daaeb6d7670e522a718067333cd4e3b1561327a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561339457600080fd5b505afa1580156133a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133cc91906148f6565b61327a57604051633b79c77360e21b81526001600160a01b03821660048201526024016113c2565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061345b826139f8565b80519091506000906001600160a01b0316336001600160a01b0316148061349257503361348784611359565b6001600160a01b0316145b806134a4575081516134a49033610fdd565b90508061350e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016113c2565b846001600160a01b031682600001516001600160a01b0316146135825760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016113c2565b6001600160a01b0384166135e65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016113c2565b6135f660008484600001516133f4565b6001600160a01b03851660009081526007602052604081208054600192906136289084906001600160801b03166149e1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261367491859116614a09565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556136fb84600161486b565b6000818152600660205260409020549091506001600160a01b031661378a5761372381613316565b1561378a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561381a57600080fd5b505afa15801561382e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385291906148f6565b80156138e45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156138ac57600080fd5b505afa1580156138c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e491906148f6565b61327a57604051633b79c77360e21b81523360048201526024016113c2565b6000826139108584614187565b14949350505050565b600080546001600160a01b031633908114919061393590612aa9565b905081806139405750805b6112c35760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b60648201526084016113c2565b6000546001600160a01b031633146127a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016113c2565b60408051808201909152600080825260208201528180600111158015613a1f575060025481105b15613ac6576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613a70579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613ac1579392505050565b613a70565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016113c2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b6014548110156112c357613bf160118281548110613b9957613b99614a34565b9060005260206000200160009054906101000a90046001600160a01b0316606460138481548110613bcc57613bcc614a34565b906000526020600020015485613be291906148be565b613bec9190614a60565b6141fb565b80613bfb81614930565b915050613b79565b60006001600160a01b0384163b15613d0557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613c47903390899088908890600401614a74565b602060405180830381600087803b158015613c6157600080fd5b505af1925050508015613c91575060408051601f3d908101601f19168201909252613c8e91810190614ab1565b60015b613ceb573d808015613cbf576040519150601f19603f3d011682016040523d82523d6000602084013e613cc4565b606091505b508051613ce35760405162461bcd60e51b81526004016113c29061494b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f32565b506001949350505050565b6060601e80546112d690614883565b606081613d435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613d6d5780613d5781614930565b9150613d669050600a83614a60565b9150613d47565b6000816001600160401b03811115613d8757613d87614702565b6040519080825280601f01601f191660200182016040528015613db1576020820181803683370190505b5090505b8415612f3257613dc6600183614ace565b9150613dd3600a86614ae5565b613dde90603061486b565b60f81b818381518110613df357613df3614a34565b60200101906001600160f81b031916908160001a905350613e15600a86614a60565b9450613db5565b60006001600160a01b038216613e8e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016113c2565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b038516613f1d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016113c2565b613f2681613316565b15613f735760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016113c2565b82613fd557600354841115613fd55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016113c2565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190614031908890614a09565b6001600160801b031681526020018561404a578661404d565b60005b836020015161405c9190614a09565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561417b5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461413f6000898488613c03565b61415b5760405162461bcd60e51b81526004016113c29061494b565b8161416581614930565b925050808061417390614930565b9150506140f2565b50600255505050505050565b600081815b84518110156141f35760008582815181106141a9576141a9614a34565b602002602001015190508083116141cf57600083815260208290526040902092506141e0565b600081815260208490526040902092505b50806141eb81614930565b91505061418c565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614248576040519150601f19603f3d011682016040523d82523d6000602084013e61424d565b606091505b5050905080611c545760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016113c2565b82805461429d90614883565b90600052602060002090601f0160209004810192826142bf5760008555614305565b82601f106142d85782800160ff19823516178555614305565b82800160010185558215614305579182015b828111156143055782358255916020019190600101906142ea565b506122fc9291505b808211156122fc576000815560010161430d565b6001600160e01b03198116811461327a57600080fd5b60006020828403121561434957600080fd5b813561435481614321565b9392505050565b6001600160a01b038116811461327a57600080fd5b60006020828403121561438257600080fd5b81356143548161435b565b600080604083850312156143a057600080fd5b82356143ab8161435b565b946020939093013593505050565b60005b838110156143d45781810151838201526020016143bc565b8381111561153e5750506000910152565b600081518084526143fd8160208601602086016143b9565b601f01601f19169290920160200192915050565b60208152600061435460208301846143e5565b60006020828403121561443657600080fd5b5035919050565b60008083601f84011261444f57600080fd5b5081356001600160401b0381111561446657600080fd5b6020830191508360208260051b850101111561448157600080fd5b9250929050565b6000806000806000608086880312156144a057600080fd5b85356144ab8161435b565b94506020860135935060408601356001600160401b038111156144cd57600080fd5b6144d98882890161443d565b90945092505060608601356144ed8161435b565b809150509295509295909350565b60008060006060848603121561451057600080fd5b833561451b8161435b565b9250602084013561452b8161435b565b929592945050506040919091013590565b60008060006040848603121561455157600080fd5b833561455c8161435b565b925060208401356001600160401b0381111561457757600080fd5b6145838682870161443d565b9497909650939450505050565b801515811461327a57600080fd5b6000602082840312156145b057600080fd5b813561435481614590565b600080600080606085870312156145d157600080fd5b84356145dc8161435b565b93506020850135925060408501356001600160401b038111156145fe57600080fd5b61460a8782880161443d565b95989497509550505050565b6000806020838503121561462957600080fd5b82356001600160401b038082111561464057600080fd5b818501915085601f83011261465457600080fd5b81358181111561466357600080fd5b86602082850101111561467557600080fd5b60209290920196919550909350505050565b60008060006060848603121561469c57600080fd5b83356146a78161435b565b92506020840135915060408401356146be8161435b565b809150509250925092565b600080604083850312156146dc57600080fd5b82356146e78161435b565b915060208301356146f781614590565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561472e57600080fd5b84356147398161435b565b935060208501356147498161435b565b92506040850135915060608501356001600160401b038082111561476c57600080fd5b818701915087601f83011261478057600080fd5b81358181111561479257614792614702565b604051601f8201601f19908116603f011681019083821181831017156147ba576147ba614702565b816040528281528a60208487010111156147d357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006060848603121561480c57600080fd5b83356148178161435b565b9250602084013561452b81614590565b6000806040838503121561483a57600080fd5b82356148458161435b565b915060208301356146f78161435b565b634e487b7160e01b600052601160045260246000fd5b6000821982111561487e5761487e614855565b500190565b600181811c9082168061489757607f821691505b602082108114156148b857634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156148d8576148d8614855565b500290565b6000602082840312156148ef57600080fd5b5051919050565b60006020828403121561490857600080fd5b815161435481614590565b60006020828403121561492557600080fd5b81516143548161435b565b600060001982141561494457614944614855565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516149b08184602089016143b9565b8451908301906149c48183602089016143b9565b84519101906149d78183602088016143b9565b0195945050505050565b60006001600160801b0383811690831681811015614a0157614a01614855565b039392505050565b60006001600160801b03808316818516808303821115614a2b57614a2b614855565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082614a6f57614a6f614a4a565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614aa7908301846143e5565b9695505050505050565b600060208284031215614ac357600080fd5b815161435481614321565b600082821015614ae057614ae0614855565b500390565b600082614af457614af4614a4a565b50069056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f754f3346675052624f317559366c33487a724d572f636f6e74726163742d6d65746164617461a2646970667358221220d86f5fee83e520cb91f6cd28cbe77058b06614d803528b88306f3d7dd27f111864736f6c63430008090033
Deployed Bytecode Sourcemap
81402:103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42014:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;42014:90:0;;;;;;;;43766:370;;;;;;;;;;-1:-1:-1;43766:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;43766:370:0;582:187:1;40903:59:0;;;;;;;;;;-1:-1:-1;40903:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;73530:730;;;;;;:::i;:::-;;:::i;:::-;;45831:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48516:204::-;;;;;;;;;;-1:-1:-1;48516:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2582:32:1;;;2564:51;;2552:2;2537:18;48516:204:0;2418:203:1;47954:504:0;;;;;;;;;;-1:-1:-1;47954:504:0;;;;;:::i;:::-;;:::i;64945:180::-;;;;;;;;;;;;;:::i;59099:51::-;;;;;;;;;;-1:-1:-1;59099:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;77516:1350;;;;;;:::i;:::-;;:::i;65238:45::-;;;;;;;;;;;;;;;;61059:1540;;;;;;:::i;:::-;;:::i;49503:168::-;;;;;;;;;;-1:-1:-1;49503:168:0;;;;;:::i;:::-;;:::i;67178:36::-;;;;;;;;;;-1:-1:-1;67178:36:0;;;;;:::i;:::-;;:::i;39632:27::-;;;;;;;;;;;;;;;;37549:25;;;;;;;;;;;;;;;;42958:744;;;;;;;;;;-1:-1:-1;42958:744:0;;;;;:::i;:::-;;:::i;38192:282::-;;;;;;;;;;-1:-1:-1;38192:282:0;;;;;:::i;:::-;;:::i;59566:114::-;;;;;;;;;;-1:-1:-1;59566:114:0;;;;;:::i;:::-;;:::i;72424:42::-;;;;;;;;;;;;72465:1;72424:42;;;;;5546:4:1;5534:17;;;5516:36;;5504:2;5489:18;72424:42:0;5374:184:1;58924:36:0;;;;;;;;;;-1:-1:-1;58924:36:0;;;;;;;;;;;76370:802;;;;;;:::i;:::-;;:::i;68807:170::-;;;;;;;;;;-1:-1:-1;68807:170:0;;;;;:::i;:::-;;:::i;67219:38::-;;;;;;;;;;;;;;;;75960:84;;;;;;;;;;;;;:::i;73017:247::-;;;;;;;;;;-1:-1:-1;73017:247:0;;;;;:::i;:::-;;:::i;49734:183::-;;;;;;;;;;-1:-1:-1;49734:183:0;;;;;:::i;:::-;;:::i;33614:210::-;;;;;;;;;;-1:-1:-1;33614:210:0;;;;;:::i;:::-;;:::i;64199:42::-;;;;;;;;;;;;;;;;39588:39;;;;;;;;;;;;;;;60011:136;;;;;;;;;;-1:-1:-1;60011:136:0;;;;;:::i;:::-;;:::i;70361:161::-;;;;;;;;;;-1:-1:-1;70361:161:0;;;;;:::i;:::-;;:::i;67262:32::-;;;;;;;;;;-1:-1:-1;67262:32:0;;;;;;;;37788:181;;;;;;;;;;-1:-1:-1;37788:181:0;;;;;:::i;:::-;;:::i;58886:33::-;;;;;;;;;;-1:-1:-1;58886:33:0;;;;;;;;72681:35;;;;;;;;;;;;;;;;58965:77;;;;;;;;;;-1:-1:-1;58965:77:0;;;;;;;-1:-1:-1;;;;;58965:77:0;;;42490:177;;;;;;;;;;-1:-1:-1;42490:177:0;;;;;:::i;:::-;;:::i;80349:170::-;;;;;;;;;;-1:-1:-1;80349:170:0;;;;;:::i;:::-;;:::i;65190:43::-;;;;;;;;;;-1:-1:-1;65190:43:0;;;;;;;;81041:106;;;;;;;;;;-1:-1:-1;81041:106:0;;;;;:::i;:::-;;:::i;64708:98::-;;;;;;;;;;;;;:::i;74587:1274::-;;;;;;:::i;:::-;;:::i;45654:118::-;;;;;;;;;;-1:-1:-1;45654:118:0;;;;;:::i;:::-;;:::i;75869:83::-;;;;;;;;;;;;;:::i;38595:103::-;;;;;;;;;;;;;:::i;44192:211::-;;;;;;;;;;-1:-1:-1;44192:211:0;;;;;:::i;:::-;;:::i;26282:103::-;;;;;;;;;;;;;:::i;59773:120::-;;;;;;;;;;-1:-1:-1;59773:120:0;;;;;:::i;:::-;;:::i;38488:99::-;;;;;;;;;;;;;:::i;67101:72::-;;;;;;;;;;-1:-1:-1;67101:72:0;;;;-1:-1:-1;;;;;67101:72:0;;;47741:159;;;;;;;;;;-1:-1:-1;47741:159:0;;;;;:::i;:::-;;:::i;67305:162::-;;;;;;;;;;;;;:::i;67016:80::-;;;;;;;;;;-1:-1:-1;67016:80:0;;;;;:::i;:::-;;:::i;71078:97::-;;;;;;;;;;;;;:::i;62907:703::-;;;;;;:::i;:::-;;:::i;71859:30::-;;;;;;;;;;;;;;;;25560:87;;;;;;;;;;-1:-1:-1;25606:7:0;25633:6;-1:-1:-1;;;;;25633:6:0;25560:87;;72631:31;;;;;;;;;;-1:-1:-1;72631:31:0;;;;;;;;79994:179;;;;;;;;;;-1:-1:-1;79994:179:0;;;;;:::i;:::-;;:::i;71896:90::-;;;;;;;;;;-1:-1:-1;71896:90:0;;;;;:::i;:::-;;:::i;64154:40::-;;;;;;;;;;-1:-1:-1;64154:40:0;;;;;;;;;;;45986:98;;;;;;;;;;;;;:::i;59155:68::-;;;;;;;;;;-1:-1:-1;59155:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;59323:154;;;;;;;;;;-1:-1:-1;59323:154:0;;;;;:::i;:::-;;:::i;34321:182::-;;;;;;;;;;-1:-1:-1;34321:182:0;;;;;:::i;:::-;;:::i;68212:417::-;;;;;;;;;;-1:-1:-1;68212:417:0;;;;;:::i;:::-;;:::i;48784:411::-;;;;;;;;;;-1:-1:-1;48784:411:0;;;;;:::i;:::-;;:::i;71521:261::-;;;;;;;;;;-1:-1:-1;71521:261:0;;;;;:::i;:::-;;:::i;79293:128::-;;;;;;;;;;;;;:::i;81153:135::-;;;;;;;;;;-1:-1:-1;81153:135:0;;;;;:::i;:::-;;:::i;49980:337::-;;;;;;;;;;-1:-1:-1;49980:337:0;;;;;:::i;:::-;;:::i;71262:99::-;;;;;;;;;;;;;:::i;65763:104::-;;;;;;;;;;;;;:::i;64609:93::-;;;;;;;;;;;;;:::i;46147:351::-;;;;;;;;;;-1:-1:-1;46147:351:0;;;;;:::i;:::-;;:::i;42110:96::-;;;;;;;;;;;;;:::i;70829:163::-;;;;;;;;;;-1:-1:-1;70829:163:0;;;;;:::i;:::-;;:::i;60483:213::-;;;;;;;;;;-1:-1:-1;60483:213:0;;;;;:::i;:::-;;:::i;72473:99::-;;;;;;;;;;;;;:::i;69135:253::-;;;;;;;;;;-1:-1:-1;69135:253:0;;;;;:::i;:::-;;:::i;58837:44::-;;;;;;;;;;;;;;;;80943:92;;;;;;;;;;;;;:::i;54614:43::-;;;;;;;;;;;;;;;;69754:304;;;;;;;;;;-1:-1:-1;69754:304:0;;;;;:::i;:::-;;:::i;65873:191::-;;;;;;;;;;;;;:::i;33967:215::-;;;;;;;;;;-1:-1:-1;33967:215:0;;;;;:::i;:::-;;:::i;65658:99::-;;;;;;;;;;;;;:::i;37581:37::-;;;;;;;;;;-1:-1:-1;37581:37:0;;;;;;;;71992:98;;;;;;;;;;-1:-1:-1;71992:98:0;;;;;:::i;:::-;;:::i;80543:149::-;;;;;;;;;;;;;:::i;49258:186::-;;;;;;;;;;-1:-1:-1;49258:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;49403:25:0;;;49380:4;49403:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49258:186;72579:43;;;;;;;;;;;;;:::i;64419:184::-;;;;;;;;;;-1:-1:-1;64419:184:0;;;;;:::i;:::-;;:::i;26538:201::-;;;;;;;;;;-1:-1:-1;26538:201:0;;;;;:::i;:::-;;:::i;65462:190::-;;;;;;;;;;-1:-1:-1;65462:190:0;;;;;:::i;:::-;;:::i;79017:125::-;;;;;;;;;;;;;:::i;79582:219::-;;;;;;;;;;-1:-1:-1;79582:219:0;;;;;:::i;:::-;;:::i;42014:90::-;42061:7;42084:14;42378:12;;-1:-1:-1;;42378:30:0;;42289:132;42084:14;42077:21;;42014:90;:::o;43766:370::-;43893:4;-1:-1:-1;;;;;;43923:40:0;;-1:-1:-1;;;43923:40:0;;:99;;-1:-1:-1;;;;;;;43974:48:0;;-1:-1:-1;;;43974:48:0;43923:99;:160;;;-1:-1:-1;;;;;;;44033:50:0;;-1:-1:-1;;;44033:50:0;43923:160;:207;;;-1:-1:-1;;;;;;;;;;12054:40:0;;;44094:36;43909:221;43766:370;-1:-1:-1;;43766:370:0:o;73530:730::-;73613:20;;;;73610:57;;;73642:25;;-1:-1:-1;;;73642:25:0;;;;;;;;;;;73610:57;73681:12;73678:42;;73702:18;;-1:-1:-1;;;73702:18:0;;;;;;;;;;;73678:42;73744:12;;73734:7;:22;73731:58;;;73765:24;;-1:-1:-1;;;73765:24:0;;;;;;;;;;;73731:58;73804:11;;;;73800:42;;73824:18;;-1:-1:-1;;;73824:18:0;;;;;;;;;;;73800:42;73856:11;;;;:32;;;;-1:-1:-1;73871:17:0;;;;73856:32;73853:62;;;73897:18;;-1:-1:-1;;;73897:18:0;;;;;;;;;;;73853:62;73930:22;:20;:22::i;:::-;73926:63;;73961:28;;-1:-1:-1;;;73961:28:0;;;;;;;;;;;73926:63;74004:27;74018:3;74023:7;74004:13;:27::i;:::-;74000:61;;74040:21;;-1:-1:-1;;;74040:21:0;;;;;;;;;;;74000:61;74104:14;74094:7;74075:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;74072:68;;;74127:13;;-1:-1:-1;;;74127:13:0;;;;;;;;;;;74072:68;74167:17;74176:7;74167:8;:17::i;:::-;74154:9;:30;74151:58;;74193:16;;-1:-1:-1;;;74193:16:0;;;;;;;;;;;74151:58;74222:30;74232:3;74237:7;74246:5;74222:9;:30::i;:::-;73530:730;;:::o;45831:94::-;45885:13;45914:5;45907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45831:94;:::o;48516:204::-;48584:7;48608:16;48616:7;48608;:16::i;:::-;48600:74;;;;-1:-1:-1;;;48600:74:0;;10941:2:1;48600:74:0;;;10923:21:1;10980:2;10960:18;;;10953:30;11019:34;10999:18;;;10992:62;-1:-1:-1;;;11070:18:1;;;11063:43;11123:19;;48600:74:0;;;;;;;;;-1:-1:-1;48690:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48690:24:0;;48516:204::o;47954:504::-;48044:2;31515:30;31536:8;31515:20;:30::i;:::-;48055:13:::1;48071:24;48087:7;48071:15;:24::i;:::-;48055:40;;48116:5;-1:-1:-1::0;;;;;48110:11:0::1;:2;-1:-1:-1::0;;;;;48110:11:0::1;;;48102:58;;;::::0;-1:-1:-1;;;48102:58:0;;11355:2:1;48102:58:0::1;::::0;::::1;11337:21:1::0;11394:2;11374:18;;;11367:30;11433:34;11413:18;;;11406:62;-1:-1:-1;;;11484:18:1;;;11477:32;11526:19;;48102:58:0::1;11153:398:1::0;48102:58:0::1;-1:-1:-1::0;;;;;48170:31:0;::::1;;::::0;;;:27:::1;:31;::::0;;;;;::::1;;48167:86;;;48210:43;;-1:-1:-1::0;;;48210:43:0::1;;;;;;;;;;;48167:86;24366:10:::0;-1:-1:-1;;;;;48278:21:0;::::1;;::::0;:62:::1;;-1:-1:-1::0;48303:37:0::1;48320:5:::0;24366:10;49258:186;:::i;48303:37::-:1;48262:153;;;::::0;-1:-1:-1;;;48262:153:0;;11758:2:1;48262:153:0::1;::::0;::::1;11740:21:1::0;11797:2;11777:18;;;11770:30;11836:34;11816:18;;;11809:62;11907:27;11887:18;;;11880:55;11952:19;;48262:153:0::1;11556:421:1::0;48262:153:0::1;48424:28;48433:2;48437:7;48446:5;48424:8;:28::i;:::-;48048:410;47954:504:::0;;;:::o;64945:180::-;65013:21;;64997:4;;65013:21;;;;;65010:63;;-1:-1:-1;65061:4:0;;64945:180::o;65010:63::-;-1:-1:-1;65105:14:0;;65086:15;:33;;;64945:180::o;77516:1350::-;77667:17;;;;77666:18;;:34;;-1:-1:-1;77689:11:0;;;;77688:12;77666:34;77663:67;;;77709:21;;-1:-1:-1;;;77709:21:0;;;;;;;;;;;77663:67;77743:32;77757:3;77762:12;;77743:13;:32::i;:::-;77739:68;;77784:23;;-1:-1:-1;;;77784:23:0;;;;;;;;;;;77739:68;77819:12;77816:42;;77840:18;;-1:-1:-1;;;77840:18:0;;;;;;;;;;;77816:42;77880:12;;77870:7;:22;77867:58;;;77901:24;;-1:-1:-1;;;77901:24:0;;;;;;;;;;;77867:58;77938:27;77952:3;77957:7;77938:13;:27::i;:::-;77934:61;;77974:21;;-1:-1:-1;;;77974:21:0;;;;;;;;;;;77934:61;78036:14;78026:7;78007:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;78004:68;;;78059:13;;-1:-1:-1;;;78059:13:0;;;;;;;;;;;78004:68;78085:25;:23;:25::i;:::-;78081:69;;78119:31;;-1:-1:-1;;;78119:31:0;;;;;;;;;;;78081:69;78213:47;78240:19;78213:26;:47::i;:::-;78209:83;;78269:23;;-1:-1:-1;;;78269:23:0;;;;;;;;;;;78209:83;78301:27;78375:7;78331:41;78352:19;78331:20;:41::i;:::-;:51;;;;:::i;:::-;78454:27;;-1:-1:-1;;;78454:27:0;;-1:-1:-1;;;;;2582:32:1;;;78454:27:0;;;2564:51:1;78301:81:0;;-1:-1:-1;78420:19:0;;78301:81;;78454:22;;;;;;2537:18:1;;78454:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;78451:87;;;78512:26;;-1:-1:-1;;;78512:26:0;;;;;;;;;;;78451:87;78550:42;;-1:-1:-1;;;78550:42:0;;-1:-1:-1;;;;;12574:15:1;;;78550:42:0;;;12556:34:1;78586:4:0;12606:18:1;;;12599:43;78595:19:0;;78550:22;;;;;;12491:18:1;;78550:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;78547:104;;;78623:28;;-1:-1:-1;;;78623:28:0;;;;;;;;;;;78547:104;78686:66;;-1:-1:-1;;;78686:66:0;;-1:-1:-1;;;;;12911:15:1;;;78686:66:0;;;12893:34:1;78725:4:0;12943:18:1;;;12936:43;12995:18;;;12988:34;;;78662:21:0;;78686:25;;;;;;12828:18:1;;78686:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;78662:90;;78765:16;78761:50;;78790:21;;-1:-1:-1;;;78790:21:0;;;;;;;;;;;78761:50;78828:30;78838:3;78843:7;78852:5;78828:9;:30::i;:::-;77654:1212;;;77516:1350;;;;;:::o;61059:1540::-;61164:14;61145:16;:14;:16::i;:::-;:33;61142:58;;;61187:13;;-1:-1:-1;;;61187:13:0;;;;;;;;;;;61142:58;61211:21;;;;61207:53;;61241:19;;-1:-1:-1;;;61241:19:0;;;;;;;;;;;61207:53;-1:-1:-1;;;;;61270:32:0;;61267:65;;61311:21;;-1:-1:-1;;;61311:21:0;;;;;;;;;;;61267:65;-1:-1:-1;;;;;61343:39:0;;;;;;:19;:39;;;;;;;;61339:82;;61391:30;;-1:-1:-1;;;61391:30:0;;;;;;;;;;;61339:82;61444:19;;61431:9;:32;61428:60;;61472:16;;-1:-1:-1;;;61472:16:0;;;;;;;;;;;61428:60;-1:-1:-1;;;;;61498:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;;;;61495:79;;;61552:22;;-1:-1:-1;;;61552:22:0;;;;;;;;;;;61495:79;61621:18;24366:10;61650:32;;-1:-1:-1;;;61650:32:0;;;;;160:25:1;;;-1:-1:-1;;;;;61650:48:0;;;;:23;;;;;133:18:1;;61650:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61650:48:0;;61647:87;;61707:27;;-1:-1:-1;;;61707:27:0;;;;;;;;;;;61647:87;61744:36;;-1:-1:-1;;;61744:36:0;;;;;160:25:1;;;61792:4:0;;-1:-1:-1;;;;;61744:27:0;;;;;133:18:1;;61744:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61744:53:0;;61741:95;;61806:30;;-1:-1:-1;;;61806:30:0;;;;;;;;;;;61741:95;-1:-1:-1;;;;;62355:32:0;;;24366:10;62402:17;;62355:74;;;;;;-1:-1:-1;;;;;;62355:74:0;;;-1:-1:-1;;;;;12911:15:1;;;62355:74:0;;;12893:34:1;62402:17:0;;;;;;;12943:18:1;;;12936:43;12995:18;;;12988:34;;;12828:18;;62355:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;62436:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;:52;;-1:-1:-1;;62436:52:0;62484:4;62436:52;;;:36;-1:-1:-1;62473:7:0;62511:12;24366:10;;24286:98;62511:12;-1:-1:-1;;;;;62502:51:0;;;;;;;;;;;62560:33;24366:10;62570:12;62584:1;62587:5;62560:9;:33::i;:::-;61135:1464;61059:1540;;:::o;49503:168::-;49624:4;29517:42;31002:43;:47;30998:416;;-1:-1:-1;;;;;31281:18:0;;31289:10;31281:18;31277:85;;;49637:28:::1;49647:4;49653:2;49657:7;49637:9;:28::i;:::-;31340:7:::0;;31277:85;31376:26;31397:4;31376:20;:26::i;:::-;49637:28:::1;49647:4;49653:2;49657:7;49637:9;:28::i;67178:36::-:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67178:36:0;:::o;42958:744::-;43067:7;43102:16;43112:5;43102:9;:16::i;:::-;43094:5;:24;43086:71;;;;-1:-1:-1;;;43086:71:0;;13741:2:1;43086:71:0;;;13723:21:1;13780:2;13760:18;;;13753:30;13819:34;13799:18;;;13792:62;-1:-1:-1;;;13870:18:1;;;13863:32;13912:19;;43086:71:0;13539:398:1;43086:71:0;43164:22;43189:13;:11;:13::i;:::-;43164:38;;43209:19;43239:25;43289:9;43284:350;43308:14;43304:1;:18;43284:350;;;43338:31;43372:14;;;:11;:14;;;;;;;;;43338:48;;;;;;;;;-1:-1:-1;;;;;43338:48:0;;;;;-1:-1:-1;;;43338:48:0;;;-1:-1:-1;;;;;43338:48:0;;;;;;;;43399:28;43395:89;;43460:14;;;-1:-1:-1;43395:89:0;43517:5;-1:-1:-1;;;;;43496:26:0;:17;-1:-1:-1;;;;;43496:26:0;;43492:135;;;43554:5;43539:11;:20;43535:59;;;-1:-1:-1;43581:1:0;-1:-1:-1;43574:8:0;;-1:-1:-1;;;43574:8:0;43535:59;43604:13;;;;:::i;:::-;;;;43492:135;-1:-1:-1;43324:3:0;;;;:::i;:::-;;;;43284:350;;;-1:-1:-1;43640:56:0;;-1:-1:-1;;;43640:56:0;;14284:2:1;43640:56:0;;;14266:21:1;14323:2;14303:18;;;14296:30;14362:34;14342:18;;;14335:62;-1:-1:-1;;;14413:18:1;;;14406:44;14467:19;;43640:56:0;14082:410:1;38192:282:0;38299:10;;38281:4;;38296:46;;38323:19;;-1:-1:-1;;;38323:19:0;;;;;;;;;;;38296:46;38376:21;;-1:-1:-1;;14646:2:1;14642:15;;;14638:53;38376:21:0;;;14626:66:1;38351:12:0;;14708::1;;38376:21:0;;;;;;;;;;;;38366:32;;;;;;38351:47;;38416:50;38435:12;;38416:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38449:10:0;;;-1:-1:-1;38461:4:0;;-1:-1:-1;38416:18:0;:50::i;:::-;38409:57;38192:282;-1:-1:-1;;;;;38192:282:0:o;59566:114::-;34856:18;:16;:18::i;:::-;59640:21:::1;:34:::0;;-1:-1:-1;;59640:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59566:114::o;76370:802::-;76488:20;;;;76485:57;;;76517:25;;-1:-1:-1;;;76517:25:0;;;;;;;;;;;76485:57;76557:17;;;;76556:18;;:34;;-1:-1:-1;76579:11:0;;;;76578:12;76556:34;76553:67;;;76599:21;;-1:-1:-1;;;76599:21:0;;;;;;;;;;;76553:67;76635:32;76649:3;76654:12;;76635:13;:32::i;:::-;76631:68;;76676:23;;-1:-1:-1;;;76676:23:0;;;;;;;;;;;76631:68;76713:12;76710:42;;76734:18;;-1:-1:-1;;;76734:18:0;;;;;;;;;;;76710:42;76776:12;;76766:7;:22;76763:58;;;76797:24;;-1:-1:-1;;;76797:24:0;;;;;;;;;;;76763:58;76836:27;76850:3;76855:7;76836:13;:27::i;:::-;76832:61;;76872:21;;-1:-1:-1;;;76872:21:0;;;;;;;;;;;76832:61;76936:14;76926:7;76907:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;76904:68;;;76959:13;;-1:-1:-1;;;76959:13:0;;;;;;;;;;;76904:68;76999:17;77008:7;76999:8;:17::i;:::-;76986:9;:30;76983:58;;77025:16;;-1:-1:-1;;;77025:16:0;;;;;;;;;;;76983:58;77056:25;:23;:25::i;:::-;77052:69;;77090:31;;-1:-1:-1;;;77090:31:0;;;;;;;;;;;77052:69;77134:30;77144:3;77149:7;77158:5;77134:9;:30::i;68807:170::-;-1:-1:-1;;;;;68912:42:0;68892:4;68912:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;68807:170::o;75960:84::-;34856:18;:16;:18::i;:::-;76017:11:::1;:19:::0;;-1:-1:-1;;76017:19:0::1;::::0;;75960:84::o;73017:247::-;34856:18;:16;:18::i;:::-;73104:9;73101:39:::1;;73122:18;;-1:-1:-1::0;;;73122:18:0::1;;;;;;;;;;;73101:39;73181:14;73174:4;73155:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:40;73152:65;;;73204:13;;-1:-1:-1::0;;;73204:13:0::1;;;;;;;;;;;73152:65;73229:26;73239:3;73244:4;73250;73229:9;:26::i;49734:183::-:0;49859:4;29517:42;31002:43;:47;30998:416;;-1:-1:-1;;;;;31281:18:0;;31289:10;31281:18;31277:85;;;49872:39:::1;49889:4;49895:2;49899:7;49872:39;;;;;;;;;;;::::0;:16:::1;:39::i;31277:85::-:0;31376:26;31397:4;31376:20;:26::i;:::-;49872:39:::1;49889:4;49895:2;49899:7;49872:39;;;;;;;;;;;::::0;:16:::1;:39::i;33614:210::-:0;25901:12;:10;:12::i;:::-;-1:-1:-1;;;;;33678:22:0;::::1;33675:54;;33709:20;;-1:-1:-1::0;;;33709:20:0::1;;;;;;;;;;;33675:54;33739:16;33746:8;33739:6;:16::i;:::-;33736:50;;;33764:22;;-1:-1:-1::0;;;33764:22:0::1;;;;;;;;;;;33736:50;-1:-1:-1::0;;;;;33797:14:0::1;;::::0;;;33814:4:::1;33797:14;::::0;;;;;;;:21;;-1:-1:-1;;33797:21:0::1;::::0;;::::1;::::0;;33614:210::o;60011:136::-;34856:18;:16;:18::i;:::-;60101:19:::1;:40:::0;60011:136::o;70361:161::-;34856:18;:16;:18::i;:::-;-1:-1:-1;;;;;70458:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;70458:58:0::1;70512:4;70458:58;::::0;;70361:161::o;37788:181::-;34856:18;:16;:18::i;:::-;37891:10:::1;;37873:14;:28;37870:55;;;37910:15;;-1:-1:-1::0;;;37910:15:0::1;;;;;;;;;;;37870:55;37934:10;:27:::0;37788:181::o;42490:177::-;42557:7;42589:13;:11;:13::i;:::-;42581:5;:21;42573:69;;;;-1:-1:-1;;;42573:69:0;;14933:2:1;42573:69:0;;;14915:21:1;14972:2;14952:18;;;14945:30;15011:34;14991:18;;;14984:62;-1:-1:-1;;;15062:18:1;;;15055:33;15105:19;;42573:69:0;14731:399:1;42573:69:0;-1:-1:-1;42656:5:0;42490:177::o;80349:170::-;34856:18;:16;:18::i;:::-;80428:16;80425:47:::1;;80453:19;;-1:-1:-1::0;;;80453:19:0::1;;;;;;;;;;;80425:47;80484:12;:26:::0;80349:170::o;81041:106::-;34856:18;:16;:18::i;:::-;81118:23:::1;:13;81134:7:::0;;81118:23:::1;:::i;64708:98::-:0;34856:18;:16;:18::i;:::-;64771:21:::1;:29:::0;;-1:-1:-1;;64771:29:0::1;::::0;;64708:98::o;74587:1274::-;74702:12;74699:42;;74723:18;;-1:-1:-1;;;74723:18:0;;;;;;;;;;;74699:42;74763:12;;74753:7;:22;74750:58;;;74784:24;;-1:-1:-1;;;74784:24:0;;;;;;;;;;;74750:58;74821:11;;;;74817:42;;74841:18;;-1:-1:-1;;;74841:18:0;;;;;;;;;;;74817:42;74900:14;74890:7;74871:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;74868:68;;;74923:13;;-1:-1:-1;;;74923:13:0;;;;;;;;;;;74868:68;74948:11;;;;:32;;;;-1:-1:-1;74963:17:0;;;;74948:32;74945:62;;;74989:18;;-1:-1:-1;;;74989:18:0;;;;;;;;;;;74945:62;75020:22;:20;:22::i;:::-;75016:63;;75051:28;;-1:-1:-1;;;75051:28:0;;;;;;;;;;;75016:63;75092:27;75106:3;75111:7;75092:13;:27::i;:::-;75088:61;;75128:21;;-1:-1:-1;;;75128:21:0;;;;;;;;;;;75088:61;75208:47;75235:19;75208:26;:47::i;:::-;75204:83;;75264:23;;-1:-1:-1;;;75264:23:0;;;;;;;;;;;75204:83;75296:27;75370:7;75326:41;75347:19;75326:20;:41::i;:::-;:51;;;;:::i;:::-;75449:27;;-1:-1:-1;;;75449:27:0;;-1:-1:-1;;;;;2582:32:1;;;75449:27:0;;;2564:51:1;75296:81:0;;-1:-1:-1;75415:19:0;;75296:81;;75449:22;;;;;;2537:18:1;;75449:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;75446:87;;;75507:26;;-1:-1:-1;;;75507:26:0;;;;;;;;;;;75446:87;75545:42;;-1:-1:-1;;;75545:42:0;;-1:-1:-1;;;;;12574:15:1;;;75545:42:0;;;12556:34:1;75581:4:0;12606:18:1;;;12599:43;75590:19:0;;75545:22;;;;;;12491:18:1;;75545:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;75542:104;;;75618:28;;-1:-1:-1;;;75618:28:0;;;;;;;;;;;75542:104;75681:66;;-1:-1:-1;;;75681:66:0;;-1:-1:-1;;;;;12911:15:1;;;75681:66:0;;;12893:34:1;75720:4:0;12943:18:1;;;12936:43;12995:18;;;12988:34;;;75657:21:0;;75681:25;;;;;;12828:18:1;;75681:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;75657:90;;75760:16;75756:50;;75785:21;;-1:-1:-1;;;75785:21:0;;;;;;;;;;;75756:50;75823:30;75833:3;75838:7;75847:5;75823:9;:30::i;:::-;74690:1171;;;74587:1274;;;:::o;45654:118::-;45718:7;45741:20;45753:7;45741:11;:20::i;:::-;:25;;45654:118;-1:-1:-1;;45654:118:0:o;75869:83::-;34856:18;:16;:18::i;:::-;75926:11:::1;:18:::0;;-1:-1:-1;;75926:18:0::1;75940:4;75926:18;::::0;;75869:83::o;38595:103::-;34856:18;:16;:18::i;:::-;38665:17:::1;:25:::0;;-1:-1:-1;;38665:25:0::1;::::0;;38595:103::o;44192:211::-;44256:7;-1:-1:-1;;;;;44280:19:0;;44272:75;;;;-1:-1:-1;;;44272:75:0;;15337:2:1;44272:75:0;;;15319:21:1;15376:2;15356:18;;;15349:30;15415:34;15395:18;;;15388:62;-1:-1:-1;;;15466:18:1;;;15459:41;15517:19;;44272:75:0;15135:407:1;44272:75:0;-1:-1:-1;;;;;;44369:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;44369:27:0;;44192:211::o;26282:103::-;25901:12;:10;:12::i;:::-;26347:30:::1;26374:1;26347:18;:30::i;:::-;26282:103::o:0;59773:120::-;34856:18;:16;:18::i;:::-;59850:24:::1;:37:::0;;;::::1;;;;-1:-1:-1::0;;59850:37:0;;::::1;::::0;;;::::1;::::0;;59773:120::o;38488:99::-;34856:18;:16;:18::i;:::-;38555:17:::1;:24:::0;;-1:-1:-1;;38555:24:0::1;38575:4;38555:24;::::0;;38488:99::o;47741:159::-;34856:18;:16;:18::i;:::-;-1:-1:-1;;;;;47841:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:53;;-1:-1:-1;;47841:53:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47741:159::o;67305:162::-;34856:18;:16;:18::i;:::-;67363:21:::1;67360:57;;67398:19;;-1:-1:-1::0;;;67398:19:0::1;;;;;;;;;;;67360:57;67426:35;67439:21;67426:12;:35::i;67016:80::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67016:80:0;;-1:-1:-1;67016:80:0;:::o;71078:97::-;34856:18;:16;:18::i;:::-;71142:20:::1;:27:::0;;-1:-1:-1;;71142:27:0::1;71165:4;71142:27;::::0;;71078:97::o;62907:703::-;63018:14;62999:16;:14;:16::i;:::-;:33;62996:58;;;63041:13;;-1:-1:-1;;;63041:13:0;;;;;;;;;;;62996:58;63065:24;;;;;;;63061:56;;63098:19;;-1:-1:-1;;;63098:19:0;;;;;;;;;;;63061:56;-1:-1:-1;;;;;63127:32:0;;63124:65;;63168:21;;-1:-1:-1;;;63168:21:0;;;;;;;;;;;63124:65;-1:-1:-1;;;;;63200:39:0;;;;;;:19;:39;;;;;;;;63196:82;;63248:30;;-1:-1:-1;;;63248:30:0;;;;;;;;;;;63196:82;63301:19;;63288:9;:32;63285:60;;63329:16;;-1:-1:-1;;;63329:16:0;;;;;;;;;;;63285:60;-1:-1:-1;;;;;63355:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;;;;63352:79;;;63409:22;;-1:-1:-1;;;63409:22:0;;;;;;;;;;;63352:79;-1:-1:-1;;;;;63444:36:0;;;;;;:16;:36;;;;;;;;:45;;;;;;;;:52;;-1:-1:-1;;63444:52:0;63492:4;63444:52;;;63481:7;63522:12;24366:10;;24286:98;63522:12;-1:-1:-1;;;;;63508:56:0;;;;;;;;;;;63571:33;24366:10;63581:12;24286:98;79994:179;34856:18;:16;:18::i;:::-;80076;80073:49:::1;;80103:19;;-1:-1:-1::0;;;80103:19:0::1;;;;;;;;;;;80073:49;80133:16;:32:::0;79994:179::o;71896:90::-;34856:18;:16;:18::i;:::-;71963:5:::1;:17:::0;71896:90::o;45986:98::-;46042:13;46071:7;46064:14;;;;;:::i;59323:154::-;34856:18;:16;:18::i;:::-;-1:-1:-1;;;;;59424:37:0;;;::::1;;::::0;;;:19:::1;:37;::::0;;;;:47;;-1:-1:-1;;59424:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59323:154::o;34321:182::-;34391:4;-1:-1:-1;;;;;34410:22:0;;34407:54;;34441:20;;-1:-1:-1;;;34441:20:0;;;;;;;;;;;34407:54;-1:-1:-1;;;;;;34475:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;34321:182::o;68212:417::-;34856:18;:16;:18::i;:::-;68319:22;68316:53:::1;;68350:19;;-1:-1:-1::0;;;68350:19:0::1;;;;;;;;;;;68316:53;68431:38;::::0;-1:-1:-1;;;68431:38:0;;68463:4:::1;68431:38;::::0;::::1;2564:51:1::0;68406:14:0;;68472:17;;-1:-1:-1;;;;;68431:23:0;::::1;::::0;::::1;::::0;2537:18:1;;68431:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;68428:96;;;68498:26;;-1:-1:-1::0;;;68498:26:0::1;;;;;;;;;;;68428:96;68554:12;::::0;68531:55:::1;::::0;-1:-1:-1;;;68531:55:0;;-1:-1:-1;;;;;68554:12:0;;::::1;68531:55;::::0;::::1;15721:51:1::0;15788:18;;;15781:34;;;68531:22:0;;::::1;::::0;::::1;::::0;15694:18:1;;68531:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;48784:411::-:0;48888:8;31515:30;31536:8;31515:20;:30::i;:::-;-1:-1:-1;;;;;48913:24:0;::::1;24366:10:::0;48913:24:::1;;48905:63;;;::::0;-1:-1:-1;;;48905:63:0;;16028:2:1;48905:63:0::1;::::0;::::1;16010:21:1::0;16067:2;16047:18;;;16040:30;16106:28;16086:18;;;16079:56;16152:18;;48905:63:0::1;15826:350:1::0;48905:63:0::1;-1:-1:-1::0;;;;;48978:37:0;::::1;;::::0;;;:27:::1;:37;::::0;;;;;::::1;;48975:92;;;49024:43;;-1:-1:-1::0;;;49024:43:0::1;;;;;;;;;;;48975:92;24366:10:::0;49076:32:::1;::::0;;;:18:::1;:32;::::0;;;;;;;-1:-1:-1;;;;;49076:42:0;::::1;::::0;;;;;;;;;;:53;;-1:-1:-1;;49076:53:0::1;::::0;::::1;;::::0;;::::1;::::0;;;49141:48;;722:41:1;;;49076:42:0;;24366:10;49141:48:::1;::::0;695:18:1;49141:48:0::1;;;;;;;48784:411:::0;;;:::o;71521:261::-;34856:18;:16;:18::i;:::-;-1:-1:-1;;;;;71612:30:0;::::1;71609:63;;71651:21;;-1:-1:-1::0;;;71651:21:0::1;;;;;;;;;;;71609:63;71702:12;::::0;-1:-1:-1;;;;;71682:32:0;;::::1;71702:12:::0;::::1;71682:32;71679:59;;;71723:15;;-1:-1:-1::0;;;71723:15:0::1;;;;;;;;;;;71679:59;71745:12;:31:::0;;-1:-1:-1;;;;;;71745:31:0::1;-1:-1:-1::0;;;;;71745:31:0;;;::::1;::::0;;;::::1;::::0;;71521:261::o;79293:128::-;34856:18;:16;:18::i;:::-;79357:26:::1;:24;:26::i;81153:135::-:0;34856:18;:16;:18::i;:::-;81247:35:::1;:19;81269:13:::0;;81247:35:::1;:::i;49980:337::-:0;50130:4;29517:42;31002:43;:47;30998:416;;-1:-1:-1;;;;;31281:18:0;;31289:10;31281:18;31277:85;;;50143:28:::1;50153:4;50159:2;50163:7;50143:9;:28::i;:::-;50194:48;50217:4;50223:2;50227:7;50236:5;50194:22;:48::i;:::-;50178:133;;;;-1:-1:-1::0;;;50178:133:0::1;;;;;;;:::i;:::-;31340:7:::0;;31277:85;31376:26;31397:4;31376:20;:26::i;:::-;50143:28:::1;50153:4;50159:2;50163:7;50143:9;:28::i;:::-;50194:48;50217:4;50223:2;50227:7;50236:5;50194:22;:48::i;:::-;50178:133;;;;-1:-1:-1::0;;;50178:133:0::1;;;;;;;:::i;:::-;49980:337:::0;;;;;:::o;71262:99::-;34856:18;:16;:18::i;:::-;71327:20:::1;:28:::0;;-1:-1:-1;;71327:28:0::1;::::0;;71262:99::o;65763:104::-;34856:18;:16;:18::i;:::-;65829:24:::1;:32:::0;;-1:-1:-1;;65829:32:0::1;::::0;;65763:104::o;64609:93::-;34856:18;:16;:18::i;:::-;64668:21:::1;:28:::0;;-1:-1:-1;;64668:28:0::1;;;::::0;;64609:93::o;46147:351::-;46245:13;46270:21;46294:10;:8;:10::i;:::-;46270:34;;46311:23;46337:19;:17;:19::i;:::-;46311:45;;46401:1;46383:7;46377:21;:25;:115;;;;;;;;;;;;;;;;;46438:7;46447:18;:7;:16;:18::i;:::-;46467:9;46421:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46377:115;46363:129;46147:351;-1:-1:-1;;;;46147:351:0:o;42110:96::-;42157:7;42182:14;42378:12;;-1:-1:-1;;42378:30:0;;42289:132;42182:14;:18;;42199:1;42182:18;:::i;70829:163::-;34856:18;:16;:18::i;:::-;-1:-1:-1;;;;;70927:42:0::1;70981:5;70927:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;70927:59:0::1;::::0;;70829:163::o;60483:213::-;34856:18;:16;:18::i;:::-;-1:-1:-1;;;;;60577:35:0;::::1;60574:68;;60621:21;;-1:-1:-1::0;;;60621:21:0::1;;;;;;;;;;;60574:68;60649:17;:41:::0;;-1:-1:-1;;;;;60649:41:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;60649:41:0;;::::1;::::0;;;::::1;::::0;;60483:213::o;72473:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69135:253::-;69214:7;69234:47;69261:19;69234:26;:47::i;:::-;69230:83;;69290:23;;-1:-1:-1;;;69290:23:0;;;;;;;;;;;69230:83;-1:-1:-1;;;;;;69327:42:0;;;;;:21;:42;;;;;:55;;;;69135:253::o;80943:92::-;80987:13;81016;81009:20;;;;;:::i;69754:304::-;34856:18;:16;:18::i;:::-;-1:-1:-1;;;;;69903:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;69903:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;69973:55:0::1;:79:::0;69754:304::o;65873:191::-;65944:24;;65928:4;;65944:24;;65941:66;;-1:-1:-1;65995:4:0;;65873:191::o;65941:66::-;-1:-1:-1;66041:17:0;;66022:15;:36;;;65873:191::o;33967:215::-;25901:12;:10;:12::i;:::-;-1:-1:-1;;;;;34036:22:0;::::1;34033:54;;34067:20;;-1:-1:-1::0;;;34067:20:0::1;;;;;;;;;;;34033:54;34098:16;34105:8;34098:6;:16::i;:::-;34094:49;;34123:20;;-1:-1:-1::0;;;34123:20:0::1;;;;;;;;;;;34094:49;-1:-1:-1::0;;;;;34154:14:0::1;34171:5;34154:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;34154:22:0::1;::::0;;33967:215::o;65658:99::-;34856:18;:16;:18::i;:::-;65720:24:::1;:31:::0;;-1:-1:-1;;65720:31:0::1;65747:4;65720:31;::::0;;65658:99::o;71992:98::-;72047:7;72078:6;72070:5;;:14;;;;:::i;80543:149::-;80587:13;80609:77;;;;;;;;;;;;;;;;;;;80543:149;:::o;72579:43::-;;;;;;;:::i;64419:184::-;34856:18;:16;:18::i;:::-;64516:15:::1;64501:12;:30;64498:63;;;64540:21;;-1:-1:-1::0;;;64540:21:0::1;;;;;;;;;;;64498:63;64568:14;:29:::0;64419:184::o;26538:201::-;25901:12;:10;:12::i;:::-;-1:-1:-1;;;;;26627:22:0;::::1;26619:73;;;::::0;-1:-1:-1;;;26619:73:0;;17472:2:1;26619:73:0::1;::::0;::::1;17454:21:1::0;17511:2;17491:18;;;17484:30;17550:34;17530:18;;;17523:62;-1:-1:-1;;;17601:18:1;;;17594:36;17647:19;;26619:73:0::1;17270:402:1::0;26619:73:0::1;26703:28;26722:8;26703:18;:28::i;:::-;26538:201:::0;:::o;65462:190::-;34856:18;:16;:18::i;:::-;65562:15:::1;65547:12;:30;65544:63;;;65586:21;;-1:-1:-1::0;;;65586:21:0::1;;;;;;;;;;;65544:63;65614:17;:32:::0;65462:190::o;79017:125::-;34856:18;:16;:18::i;:::-;79080:25:::1;:23;:25::i;79582:219::-:0;79660:4;79680:12;79677:43;;79701:19;;-1:-1:-1;;;79701:19:0;;;;;;;;;;;79677:43;79777:16;;79765:7;79739:23;79753:8;79739:13;:23::i;:::-;:33;;;;:::i;:::-;79738:55;;;79582:219;-1:-1:-1;;;79582:219:0:o;50693:129::-;50776:40;50786:2;50790:8;50800:11;50776:40;;;;;;;;;;;;:9;:40::i;50552:135::-;50609:4;50648:7;41837:1;50629:26;;:52;;;;-1:-1:-1;;50669:12:0;;-1:-1:-1;50659:22:0;50552:135::o;31573:415::-;29517:42;31764:43;:47;31760:221;;31833:65;;-1:-1:-1;;;31833:65:0;;31882:4;31833:65;;;12556:34:1;-1:-1:-1;;;;;12626:15:1;;12606:18;;;12599:43;29517:42:0;;31833:40;;12491:18:1;;31833:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31828:142;;31926:28;;-1:-1:-1;;;31926:28:0;;-1:-1:-1;;;;;2582:32:1;;31926:28:0;;;2564:51:1;2537:18;;31926:28:0;2418:203:1;54436:172:0;54533:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;54533:29:0;-1:-1:-1;;;;;54533:29:0;;;;;;;;;54574:28;;54533:24;;54574:28;;;;;;;54436:172;;;:::o;52805:1529::-;52902:35;52940:20;52952:7;52940:11;:20::i;:::-;53011:18;;52902:58;;-1:-1:-1;52969:22:0;;-1:-1:-1;;;;;52995:34:0;24366:10;-1:-1:-1;;;;;52995:34:0;;:81;;;-1:-1:-1;24366:10:0;53040:20;53052:7;53040:11;:20::i;:::-;-1:-1:-1;;;;;53040:36:0;;52995:81;:142;;;-1:-1:-1;53104:18:0;;53087:50;;24366:10;49258:186;:::i;53087:50::-;52969:169;;53163:17;53147:101;;;;-1:-1:-1;;;53147:101:0;;17879:2:1;53147:101:0;;;17861:21:1;17918:2;17898:18;;;17891:30;17957:34;17937:18;;;17930:62;-1:-1:-1;;;18008:18:1;;;18001:48;18066:19;;53147:101:0;17677:414:1;53147:101:0;53295:4;-1:-1:-1;;;;;53273:26:0;:13;:18;;;-1:-1:-1;;;;;53273:26:0;;53257:98;;;;-1:-1:-1;;;53257:98:0;;18298:2:1;53257:98:0;;;18280:21:1;18337:2;18317:18;;;18310:30;18376:34;18356:18;;;18349:62;-1:-1:-1;;;18427:18:1;;;18420:36;18473:19;;53257:98:0;18096:402:1;53257:98:0;-1:-1:-1;;;;;53370:16:0;;53362:66;;;;-1:-1:-1;;;53362:66:0;;18705:2:1;53362:66:0;;;18687:21:1;18744:2;18724:18;;;18717:30;18783:34;18763:18;;;18756:62;-1:-1:-1;;;18834:18:1;;;18827:35;18879:19;;53362:66:0;18503:401:1;53362:66:0;53537:49;53554:1;53558:7;53567:13;:18;;;53537:8;:49::i;:::-;-1:-1:-1;;;;;53595:18:0;;;;;;:12;:18;;;;;:31;;53625:1;;53595:18;:31;;53625:1;;-1:-1:-1;;;;;53595:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;53595:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;53633:16:0;;-1:-1:-1;53633:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;53633:16:0;;:29;;-1:-1:-1;;53633:29:0;;:::i;:::-;;;-1:-1:-1;;;;;53633:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53692:43:0;;;;;;;;-1:-1:-1;;;;;53692:43:0;;;;;-1:-1:-1;;;;;53718:15:0;53692:43;;;;;;;;;-1:-1:-1;53669:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;53669:66:0;-1:-1:-1;;;;;;53669:66:0;;;;;;;;;;;53985:11;53681:7;-1:-1:-1;53985:11:0;:::i;:::-;54048:1;54007:24;;;:11;:24;;;;;:29;53963:33;;-1:-1:-1;;;;;;54007:29:0;54003:236;;54065:20;54073:11;54065:7;:20::i;:::-;54061:171;;;54125:97;;;;;;;;54152:18;;-1:-1:-1;;;;;54125:97:0;;;;;;54183:28;;;;-1:-1:-1;;;;;54125:97:0;;;;;;;;;-1:-1:-1;54098:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;54098:124:0;-1:-1:-1;;;;;;54098:124:0;;;;;;;;;;;;54061:171;54271:7;54267:2;-1:-1:-1;;;;;54252:27:0;54261:4;-1:-1:-1;;;;;54252:27:0;;;;;;;;;;;54286:42;47954:504;30485:337;30585:67;;-1:-1:-1;;;30585:67:0;;30634:4;30585:67;;;12556:34:1;30641:10:0;12606:18:1;;;12599:43;29517:42:0;;30585:40;;12491:18:1;;30585:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:147;;;;-1:-1:-1;30671:61:0;;-1:-1:-1;;;30671:61:0;;30720:4;30671:61;;;12556:34:1;-1:-1:-1;;;;;12626:15:1;;12606:18;;;12599:43;29517:42:0;;30671:40;;12491:18:1;;30671:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30551:264;;30775:30;;-1:-1:-1;;;30775:30:0;;30794:10;30775:30;;;2564:51:1;2537:18;;30775:30:0;2418:203:1;35914:202:0;36047:4;36102;36073:25;36086:5;36093:4;36073:12;:25::i;:::-;:33;;35914:202;-1:-1:-1;;;;35914:202:0:o;34601:215::-;34649:13;25633:6;;-1:-1:-1;;;;;25633:6:0;24366:10;34665:23;;;;34649:13;34710:20;;34321:182;:::i;34710:20::-;34695:35;;34745:8;:19;;;;34757:7;34745:19;34737:73;;;;-1:-1:-1;;;34737:73:0;;19620:2:1;34737:73:0;;;19602:21:1;19659:2;19639:18;;;19632:30;19698:34;19678:18;;;19671:62;-1:-1:-1;;;19749:18:1;;;19742:39;19798:19;;34737:73:0;19418:405:1;25740:121:0;25606:7;25633:6;-1:-1:-1;;;;;25633:6:0;24366:10;25793:23;25785:68;;;;-1:-1:-1;;;25785:68:0;;20030:2:1;25785:68:0;;;20012:21:1;;;20049:18;;;20042:30;20108:34;20088:18;;;20081:62;20160:18;;25785:68:0;19828:356:1;44655:945:0;-1:-1:-1;;;;;;;;;;;;;;;;;44779:7:0;;41837:1;44820:23;;:46;;;;;44854:12;;44847:4;:19;44820:46;44816:706;;;44883:31;44917:17;;;:11;:17;;;;;;;;;44883:51;;;;;;;;;-1:-1:-1;;;;;44883:51:0;;;;;-1:-1:-1;;;44883:51:0;;;-1:-1:-1;;;;;44883:51:0;;;;;;;;44953:28;44949:85;;45009:9;44655:945;-1:-1:-1;;;44655:945:0:o;44949:85::-;-1:-1:-1;;;45330:6:0;45367:17;;;;:11;:17;;;;;;;;;45355:29;;;;;;;;;-1:-1:-1;;;;;45355:29:0;;;;;-1:-1:-1;;;45355:29:0;;;-1:-1:-1;;;;;45355:29:0;;;;;;;;45407:28;45403:93;;45467:9;44655:945;-1:-1:-1;;;44655:945:0:o;45403:93::-;45298:213;;44816:706;45537:57;;-1:-1:-1;;;45537:57:0;;20391:2:1;45537:57:0;;;20373:21:1;20430:2;20410:18;;;20403:30;20469:34;20449:18;;;20442:62;-1:-1:-1;;;20520:18:1;;;20513:45;20575:19;;45537:57:0;20189:411:1;26897:191:0;26971:16;26990:6;;-1:-1:-1;;;;;27007:17:0;;;-1:-1:-1;;;;;;27007:17:0;;;;;;27040:40;;26990:6;;;;;;;27040:40;;26971:16;27040:40;26960:128;26897:191;:::o;67473:237::-;67533:6;67529:176;67547:19;;67543:1;:23;67529:176;;;67587:108;67614:16;67631:1;67614:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67614:19:0;67679:3;67661:11;67673:1;67661:14;;;;;;;;:::i;:::-;;;;;;;;;67651:7;:24;;;;:::i;:::-;67650:32;;;;:::i;:::-;67587:10;:108::i;:::-;67568:3;;;;:::i;:::-;;;;67529:176;;56225:690;56362:4;-1:-1:-1;;;;;56379:13:0;;2229:19;:23;56375:535;;56418:72;;-1:-1:-1;;;56418:72:0;;-1:-1:-1;;;;;56418:36:0;;;;;:72;;24366:10;;56469:4;;56475:7;;56484:5;;56418:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56418:72:0;;;;;;;;-1:-1:-1;;56418:72:0;;;;;;;;;;;;:::i;:::-;;;56405:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56649:13:0;;56645:215;;56682:61;;-1:-1:-1;;;56682:61:0;;;;;;;:::i;56645:215::-;56828:6;56822:13;56813:6;56809:2;56805:15;56798:38;56405:464;-1:-1:-1;;;;;;56540:55:0;-1:-1:-1;;;56540:55:0;;-1:-1:-1;56533:62:0;;56375:535;-1:-1:-1;56898:4:0;56225:690;;;;;;:::o;80815:122::-;80883:13;80912:19;80905:26;;;;;:::i;19117:723::-;19173:13;19394:10;19390:53;;-1:-1:-1;;19421:10:0;;;;;;;;;;;;-1:-1:-1;;;19421:10:0;;;;;19117:723::o;19390:53::-;19468:5;19453:12;19509:78;19516:9;;19509:78;;19542:8;;;;:::i;:::-;;-1:-1:-1;19565:10:0;;-1:-1:-1;19573:2:0;19565:10;;:::i;:::-;;;19509:78;;;19597:19;19629:6;-1:-1:-1;;;;;19619:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19619:17:0;;19597:39;;19647:154;19654:10;;19647:154;;19681:11;19691:1;19681:11;;:::i;:::-;;-1:-1:-1;19750:10:0;19758:2;19750:5;:10;:::i;:::-;19737:24;;:2;:24;:::i;:::-;19724:39;;19707:6;19714;19707:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19707:56:0;;;;;;;;-1:-1:-1;19778:11:0;19787:2;19778:11;;:::i;:::-;;;19647:154;;44409:240;44470:7;-1:-1:-1;;;;;44502:19:0;;44486:102;;;;-1:-1:-1;;;44486:102:0;;22191:2:1;44486:102:0;;;22173:21:1;22230:2;22210:18;;;22203:30;22269:34;22249:18;;;22242:62;-1:-1:-1;;;22320:18:1;;;22313:47;22377:19;;44486:102:0;21989:413:1;44486:102:0;-1:-1:-1;;;;;;44610:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;44610:32:0;;-1:-1:-1;;;;;44610:32:0;;44409:240::o;51151:1434::-;51302:12;;-1:-1:-1;;;;;51329:16:0;;51321:62;;;;-1:-1:-1;;;51321:62:0;;22609:2:1;51321:62:0;;;22591:21:1;22648:2;22628:18;;;22621:30;22687:34;22667:18;;;22660:62;-1:-1:-1;;;22738:18:1;;;22731:31;22779:19;;51321:62:0;22407:397:1;51321:62:0;51520:21;51528:12;51520:7;:21::i;:::-;51519:22;51511:64;;;;-1:-1:-1;;;51511:64:0;;23011:2:1;51511:64:0;;;22993:21:1;23050:2;23030:18;;;23023:30;23089:31;23069:18;;;23062:59;23138:18;;51511:64:0;22809:353:1;51511:64:0;51661:20;51657:116;;51714:12;;51702:8;:24;;51694:71;;;;-1:-1:-1;;;51694:71:0;;23369:2:1;51694:71:0;;;23351:21:1;23408:2;23388:18;;;23381:30;23447:34;23427:18;;;23420:62;-1:-1:-1;;;23498:18:1;;;23491:32;23540:19;;51694:71:0;23167:398:1;51694:71:0;-1:-1:-1;;;;;51884:16:0;;51851:30;51884:16;;;:12;:16;;;;;;;;;51851:49;;;;;;;;;-1:-1:-1;;;;;51851:49:0;;;;;-1:-1:-1;;;51851:49:0;;;;;;;;;;;51926:139;;;;;;;;51946:19;;51851:49;;51926:139;;;51946:39;;51976:8;;51946:39;:::i;:::-;-1:-1:-1;;;;;51926:139:0;;;;;52022:11;:35;;52048:8;52022:35;;;52036:1;52022:35;51994:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;51926:139:0;;;;;;-1:-1:-1;;;;;51907:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;51907:158:0;;;;;;;;;;;;52100:43;;;;;;;;;;-1:-1:-1;;;;;52126:15:0;52100:43;;;;;;;;52072:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;52072:71:0;-1:-1:-1;;;;;;52072:71:0;;;;;;;;;;;;;;;;;;52084:12;;52196:281;52220:8;52216:1;:12;52196:281;;;52249:38;;52274:12;;-1:-1:-1;;;;;52249:38:0;;;52266:1;;52249:38;;52266:1;;52249:38;52314:59;52345:1;52349:2;52353:12;52367:5;52314:22;:59::i;:::-;52296:150;;;;-1:-1:-1;;;52296:150:0;;;;;;;:::i;:::-;52455:14;;;;:::i;:::-;;;;52230:3;;;;;:::i;:::-;;;;52196:281;;;-1:-1:-1;52485:12:0;:27;-1:-1:-1;;;;;;51151:1434:0:o;36488:701::-;36571:7;36616:4;36571:7;36633:515;36657:5;:12;36653:1;:16;36633:515;;;36693:20;36716:5;36722:1;36716:8;;;;;;;;:::i;:::-;;;;;;;36693:31;;36761:12;36745;:28;36741:394;;37267:13;37321:15;;;37359:4;37352:15;;;37408:4;37392:21;;36877:57;;36741:394;;;37267:13;37321:15;;;37359:4;37352:15;;;37408:4;37392:21;;37060:57;;36741:394;-1:-1:-1;36671:3:0;;;;:::i;:::-;;;;36633:515;;;-1:-1:-1;37167:12:0;36488:701;-1:-1:-1;;;36488:701:0:o;67718:175::-;67791:12;67809:8;-1:-1:-1;;;;;67809:13:0;67830:7;67809:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67790:52;;;67859:7;67851:36;;;;-1:-1:-1;;;67851:36:0;;23982:2:1;67851:36:0;;;23964:21:1;24021:2;24001:18;;;23994:30;-1:-1:-1;;;24040:18:1;;;24033:46;24096:18;;67851:36:0;23780:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;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:1266;8065:6;8073;8081;8089;8142:3;8130:9;8121:7;8117:23;8113:33;8110:53;;;8159:1;8156;8149:12;8110:53;8198:9;8185:23;8217:31;8242:5;8217:31;:::i;:::-;8267:5;-1:-1:-1;8324:2:1;8309:18;;8296:32;8337:33;8296:32;8337:33;:::i;:::-;8389:7;-1:-1:-1;8443:2:1;8428:18;;8415:32;;-1:-1:-1;8498:2:1;8483:18;;8470:32;-1:-1:-1;;;;;8551:14:1;;;8548:34;;;8578:1;8575;8568:12;8548:34;8616:6;8605:9;8601:22;8591:32;;8661:7;8654:4;8650:2;8646:13;8642:27;8632:55;;8683:1;8680;8673:12;8632:55;8719:2;8706:16;8741:2;8737;8734:10;8731:36;;;8747:18;;:::i;:::-;8822:2;8816:9;8790:2;8876:13;;-1:-1:-1;;8872:22:1;;;8896:2;8868:31;8864:40;8852:53;;;8920:18;;;8940:22;;;8917:46;8914:72;;;8966:18;;:::i;:::-;9006:10;9002:2;8995:22;9041:2;9033:6;9026:18;9081:7;9076:2;9071;9067;9063:11;9059:20;9056:33;9053:53;;;9102:1;9099;9092:12;9053:53;9158:2;9153;9149;9145:11;9140:2;9132:6;9128:15;9115:46;9203:1;9198:2;9193;9185:6;9181:15;9177:24;9170:35;9224:6;9214:16;;;;;;;7970:1266;;;;;;;:::o;9241:450::-;9315:6;9323;9331;9384:2;9372:9;9363:7;9359:23;9355:32;9352:52;;;9400:1;9397;9390:12;9352:52;9439:9;9426:23;9458:31;9483:5;9458:31;:::i;:::-;9508:5;-1:-1:-1;9565:2:1;9550:18;;9537:32;9578:30;9537:32;9578:30;:::i;9696:388::-;9764:6;9772;9825:2;9813:9;9804:7;9800:23;9796:32;9793:52;;;9841:1;9838;9831:12;9793:52;9880:9;9867:23;9899:31;9924:5;9899:31;:::i;:::-;9949:5;-1:-1:-1;10006:2:1;9991:18;;9978:32;10019:33;9978:32;10019:33;:::i;10089:127::-;10150:10;10145:3;10141:20;10138:1;10131:31;10181:4;10178:1;10171:15;10205:4;10202:1;10195:15;10221:128;10261:3;10292:1;10288:6;10285:1;10282:13;10279:39;;;10298:18;;:::i;:::-;-1:-1:-1;10334:9:1;;10221:128::o;10354:380::-;10433:1;10429:12;;;;10476;;;10497:61;;10551:4;10543:6;10539:17;10529:27;;10497:61;10604:2;10596:6;10593:14;10573:18;10570:38;10567:161;;;10650:10;10645:3;10641:20;10638:1;10631:31;10685:4;10682:1;10675:15;10713:4;10710:1;10703:15;10567:161;;10354:380;;;:::o;11982:168::-;12022:7;12088:1;12084;12080:6;12076:14;12073:1;12070:21;12065:1;12058:9;12051:17;12047:45;12044:71;;;12095:18;;:::i;:::-;-1:-1:-1;12135:9:1;;11982:168::o;12155:184::-;12225:6;12278:2;12266:9;12257:7;12253:23;12249:32;12246:52;;;12294:1;12291;12284:12;12246:52;-1:-1:-1;12317:16:1;;12155:184;-1:-1:-1;12155:184:1:o;13033:245::-;13100:6;13153:2;13141:9;13132:7;13128:23;13124:32;13121:52;;;13169:1;13166;13159:12;13121:52;13201:9;13195:16;13220:28;13242:5;13220:28;:::i;13283:251::-;13353:6;13406:2;13394:9;13385:7;13381:23;13377:32;13374:52;;;13422:1;13419;13412:12;13374:52;13454:9;13448:16;13473:31;13498:5;13473:31;:::i;13942:135::-;13981:3;-1:-1:-1;;14002:17:1;;13999:43;;;14022:18;;:::i;:::-;-1:-1:-1;14069:1:1;14058:13;;13942:135::o;16181:415::-;16383:2;16365:21;;;16422:2;16402:18;;;16395:30;16461:34;16456:2;16441:18;;16434:62;-1:-1:-1;;;16527:2:1;16512:18;;16505:49;16586:3;16571:19;;16181:415::o;16601:664::-;16828:3;16866:6;16860:13;16882:53;16928:6;16923:3;16916:4;16908:6;16904:17;16882:53;:::i;:::-;16998:13;;16957:16;;;;17020:57;16998:13;16957:16;17054:4;17042:17;;17020:57;:::i;:::-;17144:13;;17099:20;;;17166:57;17144:13;17099:20;17200:4;17188:17;;17166:57;:::i;:::-;17239:20;;16601:664;-1:-1:-1;;;;;16601:664:1:o;18909:246::-;18949:4;-1:-1:-1;;;;;19062:10:1;;;;19032;;19084:12;;;19081:38;;;19099:18;;:::i;:::-;19136:13;;18909:246;-1:-1:-1;;;18909:246:1:o;19160:253::-;19200:3;-1:-1:-1;;;;;19289:2:1;19286:1;19282:10;19319:2;19316:1;19312:10;19350:3;19346:2;19342:12;19337:3;19334:21;19331:47;;;19358:18;;:::i;:::-;19394:13;;19160:253;-1:-1:-1;;;;19160:253:1:o;20605:127::-;20666:10;20661:3;20657:20;20654:1;20647:31;20697:4;20694:1;20687:15;20721:4;20718:1;20711:15;20737:127;20798:10;20793:3;20789:20;20786:1;20779:31;20829:4;20826:1;20819:15;20853:4;20850:1;20843:15;20869:120;20909:1;20935;20925:35;;20940:18;;:::i;:::-;-1:-1:-1;20974:9:1;;20869:120::o;20994:489::-;-1:-1:-1;;;;;21263:15:1;;;21245:34;;21315:15;;21310:2;21295:18;;21288:43;21362:2;21347:18;;21340:34;;;21410:3;21405:2;21390:18;;21383:31;;;21188:4;;21431:46;;21457:19;;21449:6;21431:46;:::i;:::-;21423:54;20994:489;-1:-1:-1;;;;;;20994:489:1:o;21488:249::-;21557:6;21610:2;21598:9;21589:7;21585:23;21581:32;21578:52;;;21626:1;21623;21616:12;21578:52;21658:9;21652:16;21677:30;21701:5;21677:30;:::i;21742:125::-;21782:4;21810:1;21807;21804:8;21801:34;;;21815:18;;:::i;:::-;-1:-1:-1;21852:9:1;;21742:125::o;21872:112::-;21904:1;21930;21920:35;;21935:18;;:::i;:::-;-1:-1:-1;21969:9:1;;21872:112::o
Swarm Source
ipfs://d86f5fee83e520cb91f6cd28cbe77058b06614d803528b88306f3d7dd27f1118
[ 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.