ETH Price: $3,394.12 (-1.23%)
Gas: 2 Gwei

Token

Peeverse Genesis (PEE)
 

Overview

Max Total Supply

2,933 PEE

Holders

1,174

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
money1111.eth
Balance
1 PEE
0x8ffbc5de3b06c376633389dd0901c41a3368ae93
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Peeverse is the ecosystem of various ugly projects based on Pee and Trash. Peeverse = Lot of Pee & Trash and Genesis is the first collection of the Peeverse and it is key to the Peeverse ecosystem.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PeeverseGenesisContract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-29
*/

//*********************************************************************//
//*********************************************************************//
//
//
//  _______  _______  _______           _______  _______  _______  _______ 
// (  ____ )(  ____ \(  ____ \|\     /|(  ____ \(  ____ )(  ____ \(  ____ \
// | (    )|| (    \/| (    \/| )   ( || (    \/| (    )|| (    \/| (    \/
// | (____)|| (__    | (__    | |   | || (__    | (____)|| (_____ | (__    
// |  _____)|  __)   |  __)   ( (   ) )|  __)   |     __)(_____  )|  __)   
// | (      | (      | (       \ \_/ / | (      | (\ (         ) || (      
// | )      | (____/\| (____/\  \   /  | (____/\| ) \ \__/\____) || (____/\
// |/       (_______/(_______/   \_/   (_______/|/   \__/\_______)(_______/
//                                                                         
//
//
//*********************************************************************//
//*********************************************************************//
  
//-------------DEPENDENCIES--------------------------//

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if account is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, isContract will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on isContract to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's transfer: sends amount wei to
     * recipient, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by transfer, making them unable to receive funds via
     * transfer. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to recipient, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level call. A
     * plain call is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If target reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode].
     *
     * Requirements:
     *
     * - target must be a contract.
     * - calling target with data must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], but with
     * errorMessage as a fallback revert reason when target reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall],
     * but also transferring value wei to target.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least value.
     * - the called Solidity function must be payable.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[functionCallWithValue], but
     * with errorMessage as a fallback revert reason when target reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} tokenId token is transferred to this contract via {IERC721-safeTransferFrom}
     * by operator from from, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with IERC721.onERC721Received.selector.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * interfaceId. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * 
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when tokenId token is transferred from from to to.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when owner enables approved to manage the tokenId token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when owner enables or disables (approved) operator to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in owner's account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the tokenId token.
     *
     * Requirements:
     *
     * - tokenId must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers tokenId token from from to to, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - from cannot be the zero address.
     * - to cannot be the zero address.
     * - tokenId token must exist and be owned by from.
     * - If the caller is not from, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers tokenId token from from to to.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - from cannot be the zero address.
     * - to cannot be the zero address.
     * - tokenId token must be owned by from.
     * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to to to transfer tokenId token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - tokenId must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for tokenId token.
     *
     * Requirements:
     *
     * - tokenId must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove operator as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The operator cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the operator is allowed to manage all of the assets of owner.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers tokenId token from from to to.
     *
     * Requirements:
     *
     * - from cannot be the zero address.
     * - to cannot be the zero address.
     * - tokenId token must exist and be owned by from.
     * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by owner at a given index of its token list.
     * Use along with {balanceOf} to enumerate all of owner's tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given index of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for tokenId token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a uint256 to its ASCII string hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a uint256 to its ASCII string hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from ReentrancyGuard will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single nonReentrant guard, functions marked as
 * nonReentrant may not call one another. This can be worked around by making
 * those functions private, and then adding external nonReentrant entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a nonReentrant function from another nonReentrant
     * function is not supported. It is possible to prevent this from happening
     * by making the nonReentrant function external, and making it call a
     * private function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * onlyOwner, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * onlyOwner functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (newOwner).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (newOwner).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
//-------------END DEPENDENCIES------------------------//


  
// Rampp Contracts v2.1 (Teams.sol)

pragma solidity ^0.8.0;

/**
* Teams is a contract implementation to extend upon Ownable that allows multiple controllers
* of a single contract to modify specific mint settings but not have overall ownership of the contract.
* This will easily allow cross-collaboration via 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 {
    require(_address != address(0), "Invalid address");
    require(!inTeam(_address), "This address is already in your team.");
  
    team[_address] = true;
  }

  /**
  * @dev Removes an address to the team.
  * @param _address the ETH address to remove, cannot be 0x and must be in team
  **/
  function removeFromTeam(address _address) public onlyOwner {
    require(_address != address(0), "Invalid address");
    require(inTeam(_address), "This address is not in your team currently.");
  
    team[_address] = false;
  }

  /**
  * @dev Check if an address is valid and active in the team
  * @param _address ETH address to check for truthiness
  **/
  function inTeam(address _address)
    public
    view
    returns (bool)
  {
    require(_address != address(0), "Invalid address to check.");
    return team[_address] == true;
  }

  /**
  * @dev Throws if called by any account other than the owner or team member.
  */
  modifier onlyTeamOrOwner() {
    bool _isOwner = owner() == _msgSender();
    bool _isTeam = inTeam(_msgSender());
    require(_isOwner || _isTeam, "Team: caller is not the owner or in Team.");
    _;
  }
}


  
  pragma solidity ^0.8.0;

  /**
  * @dev These functions deal with verification of Merkle Trees proofs.
  *
  * The proofs can be generated using the JavaScript library
  * https://github.com/miguelmota/merkletreejs[merkletreejs].
  * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
  *
  *
  * WARNING: You should avoid using leaf values that are 64 bytes long prior to
  * hashing, or use a hash function other than keccak256 for hashing leaves.
  * This is because the concatenation of a sorted pair of internal nodes in
  * the merkle tree could be reinterpreted as a leaf value.
  */
  library MerkleProof {
      /**
      * @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree
      * defined by 'root'. For this, a 'proof' must be provided, containing
      * sibling hashes on the branch from the leaf to the root of the tree. Each
      * pair of leaves and each pair of pre-images are assumed to be sorted.
      */
      function verify(
          bytes32[] memory proof,
          bytes32 root,
          bytes32 leaf
      ) internal pure returns (bool) {
          return processProof(proof, leaf) == root;
      }

      /**
      * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
      * from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt
      * hash matches the root of the tree. When processing the proof, the pairs
      * of leafs & pre-images are assumed to be sorted.
      *
      * _Available since v4.4._
      */
      function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
          bytes32 computedHash = leaf;
          for (uint256 i = 0; i < proof.length; i++) {
              bytes32 proofElement = proof[i];
              if (computedHash <= proofElement) {
                  // Hash(current computed hash + current element of the proof)
                  computedHash = _efficientHash(computedHash, proofElement);
              } else {
                  // Hash(current element of the proof + current computed hash)
                  computedHash = _efficientHash(proofElement, computedHash);
              }
          }
          return computedHash;
      }

      function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
          assembly {
              mstore(0x00, a)
              mstore(0x20, b)
              value := keccak256(0x00, 0x40)
          }
      }
  }


  // File: Allowlist.sol

  pragma solidity ^0.8.0;

  abstract contract Allowlist is Teams {
    bytes32 public merkleRoot;
    bool public onlyAllowlistMode = false;

    /**
     * @dev Update merkle root to reflect changes in Allowlist
     * @param _newMerkleRoot new merkle root to reflect most recent Allowlist
     */
    function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyTeamOrOwner {
      require(_newMerkleRoot != merkleRoot, "Merkle root will be unchanged!");
      merkleRoot = _newMerkleRoot;
    }

    /**
     * @dev Check the proof of an address if valid for merkle root
     * @param _to address to check for proof
     * @param _merkleProof Proof of the address to validate against root and leaf
     */
    function isAllowlisted(address _to, bytes32[] calldata _merkleProof) public view returns(bool) {
      require(merkleRoot != 0, "Merkle root is not set!");
      bytes32 leaf = keccak256(abi.encodePacked(_to));

      return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    
    function enableAllowlistOnlyMode() public onlyTeamOrOwner {
      onlyAllowlistMode = true;
    }

    function disableAllowlistOnlyMode() public onlyTeamOrOwner {
        onlyAllowlistMode = false;
    }
  }
  
  
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 * 
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable,
  Teams
{
  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_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
    currentIndex = _startTokenId();
  }

  /**
  * To change the starting tokenId, please override this function.
  */
  function _startTokenId() internal view virtual returns (uint256) {
    return 1;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return _totalMinted();
  }

  function currentTokenId() public view returns (uint256) {
    return _totalMinted();
  }

  function getNextTokenId() public view returns (uint256) {
      return _totalMinted() + 1;
  }

  /**
  * Returns the total amount of tokens minted in the contract.
  */
  function _totalMinted() internal view returns (uint256) {
    unchecked {
      return currentIndex - _startTokenId();
    }
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    uint256 curr = tokenId;

    unchecked {
        if (_startTokenId() <= curr && curr < currentIndex) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }

            // Invariant:
            // There will always be an ownership that has an address and is not burned
            // before an ownership that does not have an address and is not burned.
            // Hence, curr will not underflow.
            while (true) {
                curr--;
                ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the baseURI and the tokenId. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev 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 {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");
    require(restrictedApprovalAddresses[to] == false, "ERC721RestrictedApproval: Address to approve has been restricted by contract owner and is not allowed to be marked for approval");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");
    require(restrictedApprovalAddresses[operator] == false, "ERC721RestrictedApproval: Operator address has been restricted by contract owner and is not allowed to be marked for approval");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether tokenId exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (_mint),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return _startTokenId() <= tokenId && tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity, bool isAdminMint) internal {
    _safeMint(to, quantity, isAdminMint, "");
  }

  /**
   * @dev Mints quantity tokens and transfers them to to.
   *
   * Requirements:
   *
   * - there must be quantity tokens remaining unminted in the total collection.
   * - to cannot be the zero address.
   * - quantity cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bool isAdminMint,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");

    // For admin mints we do not want to enforce the maxBatchSize limit
    if (isAdminMint == false) {
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
    }

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + (isAdminMint ? 0 : uint128(quantity))
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers tokenId from from to to.
   *
   * Requirements:
   *
   * - to cannot be the zero address.
   * - tokenId token must be owned by from.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @dev Approve to to operate on tokenId
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set owners to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet');

    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When from and to are both non-zero, from's tokenId will be
   * transferred to to.
   * - When from is zero, tokenId will be minted for to.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when from and to are both non-zero.
   * - from and to are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}



  
abstract contract Ramppable {
  address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;

  modifier isRampp() {
      require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP");
      _;
  }
}


  
  
interface IERC20 {
  function 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, Ramppable {
  struct acceptedERC20 {
    bool isActive;
    uint256 chargeAmount;
  }

  
  mapping(address => acceptedERC20) private allowedTokenContracts;
  address[] public payableAddresses = [RAMPPADDRESS,0x5cCa867939aA9CBbd8757339659bfDbf3948091B,0x0C732013264879D61b5ea16207b2e3Be7a9643aA];
  address[] public surchargePayableAddresses = [RAMPPADDRESS];
  address public erc20Payable = 0x0C732013264879D61b5ea16207b2e3Be7a9643aA;
  uint256[] public payableFees = [1,4,95];
  uint256[] public surchargePayableFees = [100];
  uint256 public payableAddressCount = 3;
  uint256 public surchargePayableAddressCount = 1;
  uint256 public ramppSurchargeBalance = 0 ether;
  uint256 public ramppSurchargeFee = 0.001 ether;
  bool public onlyERC20MintingMode = false;
  

  /**
  * @dev Calculates the true payable balance of the contract as the
  * value on contract may be from ERC-20 mint surcharges and not 
  * public mint charges - which are not eligable for rev share & user withdrawl
  */
  function calcAvailableBalance() public view returns(uint256) {
    return address(this).balance - ramppSurchargeBalance;
  }

  function withdrawAll() public onlyTeamOrOwner {
      require(calcAvailableBalance() > 0);
      _withdrawAll();
  }
  
  function withdrawAllRampp() public isRampp {
      require(calcAvailableBalance() > 0);
      _withdrawAll();
  }

  function _withdrawAll() private {
      uint256 balance = calcAvailableBalance();
      
      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 This function is similiar to the regular withdraw but operates only on the
  * balance that is available to surcharge payout addresses. This would be Rampp + partners
  **/
  function _withdrawAllSurcharges() private {
    uint256 balance = ramppSurchargeBalance;
    if(balance == 0) { return; }
    
    for(uint i=0; i < surchargePayableAddressCount; i++ ) {
        _widthdraw(
            surchargePayableAddresses[i],
            (balance * surchargePayableFees[i]) / 100
        );
    }
    ramppSurchargeBalance = 0 ether;
  }

  /**
  * @dev Allow contract owner to withdraw ERC-20 balance from contract
  * in the event ERC-20 tokens are paid to the contract for mints. This will
  * send the tokens to the payout as well as payout the surcharge fee to Rampp
  * @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 {
    require(_amountToWithdraw > 0);
    IERC20 tokenContract = IERC20(_tokenContract);
    require(tokenContract.balanceOf(address(this)) >= _amountToWithdraw, "WithdrawV2: Contract does not own enough tokens");
    tokenContract.transfer(erc20Payable, _amountToWithdraw); // Payout ERC-20 tokens to recipient
    _withdrawAllSurcharges();
  }

  /**
  * @dev Allow Rampp to be able to withdraw only its ERC-20 payment surcharges from the contract.
  */
  function withdrawRamppSurcharges() public isRampp {
    require(ramppSurchargeBalance > 0, "WithdrawableV2: No Rampp surcharges in balance.");
    _withdrawAllSurcharges();
  }

   /**
  * @dev Helper function to increment Rampp surcharge balance when ERC-20 payment is made.
  */
  function addSurcharge() internal {
    ramppSurchargeBalance += ramppSurchargeFee;
  }
  
  /**
  * @dev Helper function to enforce Rampp surcharge fee when ERC-20 mint is made.
  */
  function hasSurcharge() internal returns(bool) {
    return msg.value == ramppSurchargeFee;
  }

  /**
  * @dev Set surcharge fee for using ERC-20 payments on contract
  * @param _newSurcharge is the new surcharge value of native currency in wei to facilitate ERC-20 payments
  */
  function setRamppSurcharge(uint256 _newSurcharge) public isRampp {
    ramppSurchargeFee = _newSurcharge;
  }

  /**
  * @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) {
    require(isApprovedForERC20Payments(_erc20TokenContract), "This ERC-20 contract is not approved to make payments on this contract!");
    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 {
    require(_newErc20Payable != address(0), "WithdrawableV2: new ERC-20 payout cannot be the zero address");
    require(_newErc20Payable != erc20Payable, "WithdrawableV2: new ERC-20 payout is same as current payout");
    erc20Payable = _newErc20Payable;
  }

  /**
  * @dev Reset the Rampp surcharge total to zero regardless of value on contract currently.
  */
  function resetRamppSurchargeBalance() public isRampp {
    ramppSurchargeBalance = 0 ether;
  }

  /**
  * @dev Allows Rampp wallet to update its own reference as well as update
  * the address for the Rampp-owed payment split. Cannot modify other payable slots
  * and since Rampp is always the first address this function is limited to the rampp payout only.
  * @param _newAddress updated Rampp Address
  */
  function setRamppAddress(address _newAddress) public isRampp {
    require(_newAddress != RAMPPADDRESS, "WithdrawableV2: New Rampp address must be different");
    RAMPPADDRESS = _newAddress;
    payableAddresses[0] = _newAddress;
  }
}


  
  
  
  
abstract contract RamppERC721A is 
    Ownable,
    Teams,
    ERC721A,
    WithdrawableV2,
    ReentrancyGuard 
     
    , Allowlist 
    
{
  constructor(
    string memory tokenName,
    string memory tokenSymbol
  ) ERC721A(tokenName, tokenSymbol, 2, 2933) { }
    uint8 public CONTRACT_VERSION = 2;
    string public _baseTokenURI = "ipfs://bafybeiemknub55ujpp5rr5bzsesrpzeetmr3r5rprue357p7w7v7w33w54/";

    bool public mintingOpen = false;
    bool public isRevealed = false;
    
    uint256 public MAX_WALLET_MINTS = 4;

  
    /////////////// Admin Mint Functions
    /**
     * @dev Mints a token to an address with a tokenURI.
     * This is owner only and allows a fee-free drop
     * @param _to address of the future owner of the token
     * @param _qty amount of tokens to drop the owner
     */
     function mintToAdminV2(address _to, uint256 _qty) public onlyTeamOrOwner{
         require(_qty > 0, "Must mint at least 1 token.");
         require(currentTokenId() + _qty <= collectionSize, "Cannot mint over supply cap of 2933");
         _safeMint(_to, _qty, true);
     }

  
    /////////////// GENERIC MINT FUNCTIONS
    /**
    * @dev Mints a single token to an address.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintTo(address _to) public payable {
        require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 2933");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        
        
        _safeMint(_to, 1, false);
    }

    /**
    * @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 {
        require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 2933");
        

        _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 {
      require(_amount >= 1, "Must mint at least 1 token");
      require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
      require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 2933");
      require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
      
      require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");

      // ERC-20 Specific pre-flight checks
      require(isApprovedForERC20Payments(_erc20TokenContract), "ERC-20 Token is not approved for minting!");
      uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount;
      IERC20 payableToken = IERC20(_erc20TokenContract);

      require(payableToken.balanceOf(_to) >= tokensQtyToTransfer, "Buyer does not own enough of token to complete purchase");
      require(payableToken.allowance(_to, address(this)) >= tokensQtyToTransfer, "Buyer did not approve enough of ERC-20 token to complete purchase");
      require(hasSurcharge(), "Fee for ERC-20 payment not provided!");
      
      bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer);
      require(transferComplete, "ERC-20 token was unable to be transferred");
      
      _safeMint(_to, _amount, false);
      addSurcharge();
    }

    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 _merkleProof merkle proof array
    */
    function mintToAL(address _to, bytes32[] calldata _merkleProof) public payable {
        require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 2933");
        require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        
        

        _safeMint(_to, 1, 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
    */
    function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable {
        require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");

        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 2933");
        
        

        _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 {
      require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
      require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
      require(_amount >= 1, "Must mint at least 1 token");
      require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
      require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
      require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 2933");
      
    
      // ERC-20 Specific pre-flight checks
      require(isApprovedForERC20Payments(_erc20TokenContract), "ERC-20 Token is not approved for minting!");
      uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount;
      IERC20 payableToken = IERC20(_erc20TokenContract);
    
      require(payableToken.balanceOf(_to) >= tokensQtyToTransfer, "Buyer does not own enough of token to complete purchase");
      require(payableToken.allowance(_to, address(this)) >= tokensQtyToTransfer, "Buyer did not approve enough of ERC-20 token to complete purchase");
      require(hasSurcharge(), "Fee for ERC-20 payment not provided!");
      
      bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer);
      require(transferComplete, "ERC-20 token was unable to be transferred");
      
      _safeMint(_to, _amount, false);
      addSurcharge();
    }

    /**
     * @dev Enable allowlist minting fully by enabling both flags
     * This is a convenience function for the Rampp user
     */
    function openAllowlistMint() public onlyTeamOrOwner {
        enableAllowlistOnlyMode();
        mintingOpen = true;
    }

    /**
     * @dev Close allowlist minting fully by disabling both flags
     * This is a convenience function for the Rampp user
     */
    function closeAllowlistMint() public onlyTeamOrOwner {
        disableAllowlistOnlyMode();
        mintingOpen = false;
    }


  
    /**
    * @dev Check if wallet over MAX_WALLET_MINTS
    * @param _address address in question to check if minted count exceeds max
    */
    function canMintAmount(address _address, uint256 _amount) public view returns(bool) {
        require(_amount >= 1, "Amount must be greater than or equal to 1");
        return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS;
    }

    /**
    * @dev Update the maximum amount of tokens that can be minted by a unique wallet
    * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1
    */
    function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner {
        require(_newWalletMax >= 1, "Max mints per wallet must be at least 1");
        MAX_WALLET_MINTS = _newWalletMax;
    }
    

  
    /**
     * @dev Allows owner to set Max mints per tx
     * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1
     */
     function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner {
         require(_newMaxMint >= 1, "Max mint must be at least 1");
         maxBatchSize = _newMaxMint;
     }
    

  
    function unveil(string memory _updatedTokenURI) public onlyTeamOrOwner {
        require(isRevealed == false, "Tokens are already unveiled");
        _baseTokenURI = _updatedTokenURI;
        isRevealed = true;
    }
    

  function _baseURI() internal view virtual override returns(string memory) {
    return _baseTokenURI;
  }

  function baseTokenURI() public view returns(string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyTeamOrOwner {
    _baseTokenURI = baseURI;
  }

  function getOwnershipData(uint256 tokenId) external view returns(TokenOwnership memory) {
    return ownershipOf(tokenId);
  }
}


  
// File: contracts/PeeverseGenesisContract.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract PeeverseGenesisContract is RamppERC721A {
    constructor() RamppERC721A("Peeverse Genesis", "PEE"){}
}
  
//*********************************************************************//
//*********************************************************************//
//
//
//  _______  _______  _______           _______  _______  _______  _______ 
// (  ____ )(  ____ \(  ____ \|\     /|(  ____ \(  ____ )(  ____ \(  ____ \
// | (    )|| (    \/| (    \/| )   ( || (    \/| (    )|| (    \/| (    \/
// | (____)|| (__    | (__    | |   | || (__    | (____)|| (_____ | (__    
// |  _____)|  __)   |  __)   ( (   ) )|  __)   |     __)(_____  )|  __)   
// | (      | (      | (       \ \_/ / | (      | (\ (         ) || (      
// | )      | (____/\| (____/\  \   /  | (____/\| ) \ \__/\____) || (____/\
// |/       (_______/(_______/   \_/   (_______/|/   \__/\_______)(_______/
//                                                                         
//
//
//*********************************************************************//
//*********************************************************************//

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_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":[{"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":[],"name":"calcAvailableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"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":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"isApprovedForERC20Payments","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"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":"ramppSurchargeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ramppSurchargeFee","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":[],"name":"resetRamppSurchargeBalance","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":"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":"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":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSurcharge","type":"uint256"}],"name":"setRamppSurcharge","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":"surchargePayableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"surchargePayableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"surchargePayableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","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"},{"inputs":[],"name":"withdrawRamppSurcharges","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600b55600c80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915561010060405260a0908152735cca867939aa9cbbd8757339659bfdbf3948091b60c052730c732013264879d61b5ea16207b2e3be7a9643aa60e0526200007890600e9060036200036c565b506040805160208101909152600c546001600160a01b03168152620000a290600f9060016200036c565b50601080546001600160a01b031916730c732013264879d61b5ea16207b2e3be7a9643aa179055604080516060810182526001815260046020820152605f91810191909152620000f7906011906003620003d6565b5060408051602081019091526064815262000117906012906001620003d6565b5060036013556001601455600060155566038d7ea4c680006016556017805460ff19169055601a805461ffff191661020017905560408051608081019091526043808252620056b6602083013980516200017a91601b9160209091019062000419565b50601c805461ffff191690556004601d553480156200019857600080fd5b506040518060400160405280601081526020016f50656576657273652047656e6573697360801b8152506040518060400160405280600381526020016250454560e81b81525081816002610b75620001ff620001f96200031860201b60201c565b6200031c565b600081116200026c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002ce5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000263565b8351620002e390600490602087019062000419565b508251620002f990600590602086019062000419565b5060039190915560805250506001600281905560185550620004ea9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620003c4579160200282015b82811115620003c457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200038d565b50620003d292915062000496565b5090565b828054828255906000526020600020908101928215620003c4579160200282015b82811115620003c4578251829060ff16905591602001919060010190620003f7565b8280546200042790620004ad565b90600052602060002090601f0160209004810192826200044b5760008555620003c4565b82601f106200046657805160ff1916838001178555620003c4565b82800160010185558215620003c4579182015b82811115620003c457825182559160200191906001019062000479565b5b80821115620003d2576000815560010162000497565b600181811c90821680620004c257607f821691505b60208210811415620004e457634e487b7160e01b600052602260045260246000fd5b50919050565b60805161517f62000537600039600081816107e401528181610feb0152818161142501528181611adf01528181611c4a01528181612071015281816125160152613398015261517f6000f3fe6080604052600436106104a85760003560e01c8063715018a61161026b578063c3fb11c91161014f578063dcd4aa8b116100c1578063f05045c811610085578063f05045c814610dd3578063f2fde38b14610df3578063f70be5e214610e13578063f8c0fd2014610e28578063fd19eaf014610e3d578063fe154b2d14610e5d57600080fd5b8063dcd4aa8b14610d28578063df213e8a14610d3d578063dfdedf6914610d50578063e6c6990a14610d70578063e985e9c514610d8a57600080fd5b8063cfc86f7b11610113578063cfc86f7b14610c88578063cff4492314610c9d578063d266f3a914610cbd578063d547cfb714610cdd578063d7224ba014610cf2578063d83ae33214610d0857600080fd5b8063c3fb11c914610bf3578063c5815c4114610c13578063c87b56dd14610c33578063caa0f92a14610c53578063cacf084214610c6857600080fd5b80638ff4013f116101e8578063a22cb465116101ac578063a22cb46514610b49578063a91bd1a914610b69578063afe5608b14610b89578063b88d4fde14610b9e578063b94b237614610bbe578063bbd8556b14610bd357600080fd5b80638ff4013f14610a875780639231ab2a14610aa757806395d89b4114610af4578063a1af10ca14610b09578063a1db978214610b2957600080fd5b8063853828b61161022f578063853828b614610a05578063891bbe7314610a1a57806389f26d5814610a3a5780638da5cb5b14610a4f5780638f4bb49714610a6d57600080fd5b8063715018a614610988578063755edd171461099d57806379ab3c89146109b05780637fb8c6d3146109c557806383c81c41146109e557600080fd5b80633e07311c116103925780634ab8b5dd1161030f57806360986a71116102d357806360986a71146108f55780636352211e146109085780636ba9fd38146109285780636d3de8061461093d5780636eaf83441461095257806370a082311461096857600080fd5b80634ab8b5dd146108605780634f6ccce71461087657806354214f6914610896578063547520fe146108b557806355f804b3146108d557600080fd5b8063447abc7a11610356578063447abc7a146107bd57806345c0f533146107d2578063464c34281461080657806346f41ed5146108265780634783f0ef1461084057600080fd5b80633e07311c146107325780633e3e0b121461074857806340ccc0821461075d57806342842e0e1461077d57806343696f181461079d57600080fd5b806323b872dd1161042b5780632eb4a7ab116103ef5780632eb4a7ab146106785780632f745c591461068e57806333006786146106ae57806338b90333146106ce5780633c003254146106ff5780633d3f9c571461071257600080fd5b806323b872dd146105f7578063286c8137146106175780632913daa0146106375780632a000d4e1461064d5780632b5269b41461066357600080fd5b806306fdde031161047257806306fdde0314610582578063081812fc146105a4578063095ea7b3146105c457806316b88a1d146105e457806318160ddd146104ea57600080fd5b8062641e48146104ad5780629a9b7b146104ea57806301ffc9a71461050d578063043a2a401461053d5780630644cefa1461056d575b600080fd5b3480156104b957600080fd5b506104cd6104c8366004614510565b610e73565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156104f657600080fd5b506104ff610e9d565b6040519081526020016104e1565b34801561051957600080fd5b5061052d61052836600461453f565b610eb1565b60405190151581526020016104e1565b34801561054957600080fd5b5061052d610558366004614578565b600a6020526000908152604090205460ff1681565b61058061057b366004614593565b610f1e565b005b34801561058e57600080fd5b5061059761104b565b6040516104e19190614615565b3480156105b057600080fd5b506104cd6105bf366004614510565b6110dd565b3480156105d057600080fd5b506105806105df366004614593565b611166565b6105806105f2366004614673565b611359565b34801561060357600080fd5b506105806106123660046146e1565b6116d9565b34801561062357600080fd5b506104ff610632366004614510565b6116e4565b34801561064357600080fd5b506104ff60035481565b34801561065957600080fd5b506104ff60155481565b34801561066f57600080fd5b50610580611705565b34801561068457600080fd5b506104ff60195481565b34801561069a57600080fd5b506104ff6106a9366004614593565b6117a3565b3480156106ba57600080fd5b5061052d6106c936600461471d565b61191a565b3480156106da57600080fd5b50601a546106ed90610100900460ff1681565b60405160ff90911681526020016104e1565b61058061070d36600461476f565b6119f0565b34801561071e57600080fd5b5061052d61072d366004614578565b611b41565b34801561073e57600080fd5b506104ff60135481565b34801561075457600080fd5b50610580611b64565b34801561076957600080fd5b50610580610778366004614593565b611bb5565b34801561078957600080fd5b506105806107983660046146e1565b611ca6565b3480156107a957600080fd5b506105806107b8366004614578565b611cc1565b3480156107c957600080fd5b506104ff611dbe565b3480156107de57600080fd5b506104ff7f000000000000000000000000000000000000000000000000000000000000000081565b34801561081257600080fd5b50610580610821366004614578565b611dce565b34801561083257600080fd5b5060175461052d9060ff1681565b34801561084c57600080fd5b5061058061085b366004614510565b611e37565b34801561086c57600080fd5b506104ff601d5481565b34801561088257600080fd5b506104ff610891366004614510565b611ed3565b3480156108a257600080fd5b50601c5461052d90610100900460ff1681565b3480156108c157600080fd5b506105806108d0366004614510565b611f3b565b3480156108e157600080fd5b506105806108f03660046147c8565b611fd6565b610580610903366004614839565b61202c565b34801561091457600080fd5b506104cd610923366004614510565b612375565b34801561093457600080fd5b50610580612387565b34801561094957600080fd5b506105806123db565b34801561095e57600080fd5b506104ff60165481565b34801561097457600080fd5b506104ff610983366004614578565b61242c565b34801561099457600080fd5b506105806124bd565b6105806109ab366004614578565b6124f1565b3480156109bc57600080fd5b506105806125c8565b3480156109d157600080fd5b506010546104cd906001600160a01b031681565b3480156109f157600080fd5b50610580610a00366004614883565b61261c565b348015610a1157600080fd5b5061058061268c565b348015610a2657600080fd5b506104cd610a35366004614510565b6126eb565b348015610a4657600080fd5b506105806126fb565b348015610a5b57600080fd5b506000546001600160a01b03166104cd565b348015610a7957600080fd5b50601c5461052d9060ff1681565b348015610a9357600080fd5b50610580610aa2366004614510565b61274f565b348015610ab357600080fd5b50610ac7610ac2366004614510565b6127fa565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016104e1565b348015610b0057600080fd5b50610597612817565b348015610b1557600080fd5b5061052d610b24366004614578565b612826565b348015610b3557600080fd5b50610580610b44366004614593565b6128a3565b348015610b5557600080fd5b50610580610b64366004614883565b612a63565b348015610b7557600080fd5b50610580610b84366004614578565b612c03565b348015610b9557600080fd5b50610580612d6a565b348015610baa57600080fd5b50610580610bb9366004614945565b612db5565b348015610bca57600080fd5b50610580612de8565b348015610bdf57600080fd5b50610580610bee366004614578565b612e39565b348015610bff57600080fd5b50610580610c0e366004614510565b612f3f565b348015610c1f57600080fd5b50600c546104cd906001600160a01b031681565b348015610c3f57600080fd5b50610597610c4e366004614510565b612f6e565b348015610c5f57600080fd5b506104ff612fcc565b348015610c7457600080fd5b50610580610c83366004614578565b612fe6565b348015610c9457600080fd5b5061059761304c565b348015610ca957600080fd5b50610580610cb83660046149c0565b6130da565b348015610cc957600080fd5b506104ff610cd8366004614578565b61319d565b348015610ce957600080fd5b50610597613249565b348015610cfe57600080fd5b506104ff600b5481565b348015610d1457600080fd5b50610580610d23366004614a08565b613258565b348015610d3457600080fd5b506105806132cc565b610580610d4b36600461471d565b613312565b348015610d5c57600080fd5b50610580610d6b366004614578565b613411565b348015610d7c57600080fd5b50601a5461052d9060ff1681565b348015610d9657600080fd5b5061052d610da5366004614a47565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ddf57600080fd5b506104ff610dee366004614510565b61350d565b348015610dff57600080fd5b50610580610e0e366004614578565b61351d565b348015610e1f57600080fd5b506105806135b5565b348015610e3457600080fd5b506105806135e6565b348015610e4957600080fd5b5061052d610e58366004614593565b613631565b348015610e6957600080fd5b506104ff60145481565b600f8181548110610e8357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610eac6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610ee257506001600160e01b03198216635b5e139f60e01b145b80610efd57506001600160e01b0319821663780e9d6360e01b145b80610f1857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60175460ff1615610f4a5760405162461bcd60e51b8152600401610f4190614a7a565b60405180910390fd5b6001811015610f6b5760405162461bcd60e51b8152600401610f4190614ac5565b600354811115610f8d5760405162461bcd60e51b8152600401610f4190614afc565b601c5460ff1615156001148015610fa75750601a5460ff16155b610fc35760405162461bcd60e51b8152600401610f4190614b4a565b610fcd8282613631565b610fe95760405162461bcd60e51b8152600401610f4190614b8f565b7f000000000000000000000000000000000000000000000000000000000000000081611013610e9d565b61101d9190614bf5565b111561103b5760405162461bcd60e51b8152600401610f4190614c0d565b611047828260006136b6565b5050565b60606004805461105a90614c50565b80601f016020809104026020016040519081016040528092919081815260200182805461108690614c50565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b5050505050905090565b60006110e8826136d1565b61114a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610f41565b506000908152600860205260409020546001600160a01b031690565b600061117182612375565b9050806001600160a01b0316836001600160a01b031614156111e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610f41565b6001600160a01b0383166000908152600a602052604090205460ff16156112bb5760405162461bcd60e51b815260206004820152607f60248201527f45524337323152657374726963746564417070726f76616c3a2041646472657360448201527f7320746f20617070726f766520686173206265656e207265737472696374656460648201527f20627920636f6e7472616374206f776e657220616e64206973206e6f7420616c60848201527f6c6f77656420746f206265206d61726b656420666f7220617070726f76616c0060a482015260c401610f41565b336001600160a01b03821614806112d757506112d78133610da5565b6113495760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610f41565b6113548383836136e7565b505050565b601a5460ff16151560011480156113775750601c5460ff1615156001145b6113935760405162461bcd60e51b8152600401610f4190614c8b565b61139e85848461191a565b6113ba5760405162461bcd60e51b8152600401610f4190614cc2565b60018410156113db5760405162461bcd60e51b8152600401610f4190614ac5565b6003548411156113fd5760405162461bcd60e51b8152600401610f4190614afc565b6114078585613631565b6114235760405162461bcd60e51b8152600401610f4190614b8f565b7f00000000000000000000000000000000000000000000000000000000000000008461144d610e9d565b6114579190614bf5565b11156114755760405162461bcd60e51b8152600401610f4190614c0d565b61147e81611b41565b61149a5760405162461bcd60e51b8152600401610f4190614cf9565b6000846114a68361319d565b6114b09190614d42565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b1580156114f957600080fd5b505afa15801561150d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115319190614d61565b101561154f5760405162461bcd60e51b8152600401610f4190614d7a565b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561159957600080fd5b505afa1580156115ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d19190614d61565b10156115ef5760405162461bcd60e51b8152600401610f4190614dd7565b60165434146116105760405162461bcd60e51b8152600401610f4190614e3e565b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561166457600080fd5b505af1158015611678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169c9190614e82565b9050806116bb5760405162461bcd60e51b8152600401610f4190614e9f565b6116c7888860006136b6565b6116cf613743565b5050505050505050565b61135483838361375e565b601181815481106116f457600080fd5b600091825260209091200154905081565b600c546001600160a01b0316331461172f5760405162461bcd60e51b8152600401610f4190614ee8565b6000601554116117995760405162461bcd60e51b815260206004820152602f60248201527f576974686472617761626c6556323a204e6f2052616d7070207375726368617260448201526e33b2b99034b7103130b630b731b29760891b6064820152608401610f41565b6117a1613ade565b565b60006117ae8361242c565b82106118075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610f41565b6000611811610e9d565b905060008060005b838110156118ba576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561186b57805192505b876001600160a01b0316836001600160a01b031614156118a7578684141561189957509350610f1892505050565b836118a381614f1f565b9450505b50806118b281614f1f565b915050611819565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610f41565b60195460009061196c5760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610f41565b6040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506119e7848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506019549150849050613b7f565b95945050505050565b60175460ff1615611a135760405162461bcd60e51b8152600401610f4190614a7a565b601a5460ff1615156001148015611a315750601c5460ff1615156001145b611a4d5760405162461bcd60e51b8152600401610f4190614c8b565b611a5884838361191a565b611a745760405162461bcd60e51b8152600401610f4190614cc2565b6001831015611a955760405162461bcd60e51b8152600401610f4190614ac5565b600354831115611ab75760405162461bcd60e51b8152600401610f4190614afc565b611ac18484613631565b611add5760405162461bcd60e51b8152600401610f4190614b8f565b7f000000000000000000000000000000000000000000000000000000000000000083611b07610e9d565b611b119190614bf5565b1115611b2f5760405162461bcd60e51b8152600401610f4190614c0d565b611b3b848460006136b6565b50505050565b6001600160a01b03166000908152600d602052604090205460ff16151560011490565b600080546001600160a01b0316339081149190611b8090612826565b90508180611b8b5750805b611ba75760405162461bcd60e51b8152600401610f4190614f3a565b5050601c805460ff19169055565b600080546001600160a01b0316339081149190611bd190612826565b90508180611bdc5750805b611bf85760405162461bcd60e51b8152600401610f4190614f3a565b60008311611c485760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610f41565b7f000000000000000000000000000000000000000000000000000000000000000083611c72610e9d565b611c7c9190614bf5565b1115611c9a5760405162461bcd60e51b8152600401610f4190614c0d565b611b3b848460016136b6565b61135483838360405180602001604052806000815250612db5565b6000546001600160a01b03163314611ceb5760405162461bcd60e51b8152600401610f4190614f83565b6001600160a01b038116611d335760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f41565b611d3c81612826565b15611d975760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610f41565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600060155447610eac9190614fb8565b600080546001600160a01b0316339081149190611dea90612826565b90508180611df55750805b611e115760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600080546001600160a01b0316339081149190611e5390612826565b90508180611e5e5750805b611e7a5760405162461bcd60e51b8152600401610f4190614f3a565b601954831415611ecc5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610f41565b5050601955565b6000611edd610e9d565b8210611f375760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610f41565b5090565b600080546001600160a01b0316339081149190611f5790612826565b90508180611f625750805b611f7e5760405162461bcd60e51b8152600401610f4190614f3a565b6001831015611fcf5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610f41565b5050600355565b600080546001600160a01b0316339081149190611ff290612826565b90508180611ffd5750805b6120195760405162461bcd60e51b8152600401610f4190614f3a565b612025601b8585614407565b5050505050565b600182101561204d5760405162461bcd60e51b8152600401610f4190614ac5565b60035482111561206f5760405162461bcd60e51b8152600401610f4190614afc565b7f0000000000000000000000000000000000000000000000000000000000000000612098612fcc565b11156120b65760405162461bcd60e51b8152600401610f4190614c0d565b601c5460ff16151560011480156120d05750601a5460ff16155b6120ec5760405162461bcd60e51b8152600401610f4190614b4a565b6120f7836001613631565b6121135760405162461bcd60e51b8152600401610f4190614b8f565b61211c81611b41565b6121385760405162461bcd60e51b8152600401610f4190614cf9565b6000826121448361319d565b61214e9190614d42565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561219757600080fd5b505afa1580156121ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cf9190614d61565b10156121ed5760405162461bcd60e51b8152600401610f4190614d7a565b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561223757600080fd5b505afa15801561224b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061226f9190614d61565b101561228d5760405162461bcd60e51b8152600401610f4190614dd7565b60165434146122ae5760405162461bcd60e51b8152600401610f4190614e3e565b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561230257600080fd5b505af1158015612316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233a9190614e82565b9050806123595760405162461bcd60e51b8152600401610f4190614e9f565b612365868660006136b6565b61236d613743565b505050505050565b600061238082613b95565b5192915050565b600080546001600160a01b03163390811491906123a390612826565b905081806123ae5750805b6123ca5760405162461bcd60e51b8152600401610f4190614f3a565b5050601c805460ff19166001179055565b600080546001600160a01b03163390811491906123f790612826565b905081806124025750805b61241e5760405162461bcd60e51b8152600401610f4190614f3a565b5050601a805460ff19169055565b60006001600160a01b0382166124985760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610f41565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b031633146124e75760405162461bcd60e51b8152600401610f4190614f83565b6117a16000613cc3565b60175460ff16156125145760405162461bcd60e51b8152600401610f4190614a7a565b7f000000000000000000000000000000000000000000000000000000000000000061253d612fcc565b111561255b5760405162461bcd60e51b8152600401610f4190614c0d565b601c5460ff16151560011480156125755750601a5460ff16155b6125915760405162461bcd60e51b8152600401610f4190614b4a565b61259c816001613631565b6125b85760405162461bcd60e51b8152600401610f4190614b8f565b6125c581600160006136b6565b50565b600080546001600160a01b03163390811491906125e490612826565b905081806125ef5750805b61260b5760405162461bcd60e51b8152600401610f4190614f3a565b5050601a805460ff19166001179055565b600080546001600160a01b031633908114919061263890612826565b905081806126435750805b61265f5760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600080546001600160a01b03163390811491906126a890612826565b905081806126b35750805b6126cf5760405162461bcd60e51b8152600401610f4190614f3a565b60006126d9611dbe565b116126e357600080fd5b611047613d13565b600e8181548110610e8357600080fd5b600080546001600160a01b031633908114919061271790612826565b905081806127225750805b61273e5760405162461bcd60e51b8152600401610f4190614f3a565b50506017805460ff19166001179055565b600080546001600160a01b031633908114919061276b90612826565b905081806127765750805b6127925760405162461bcd60e51b8152600401610f4190614f3a565b60018310156127f35760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610f41565b5050601d55565b6040805180820190915260008082526020820152610f1882613b95565b60606005805461105a90614c50565b60006001600160a01b03821661287e5760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610f41565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b600080546001600160a01b03163390811491906128bf90612826565b905081806128ca5750805b6128e65760405162461bcd60e51b8152600401610f4190614f3a565b600083116128f357600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a082319060240160206040518083038186803b15801561293657600080fd5b505afa15801561294a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296e9190614d61565b10156129d45760405162461bcd60e51b815260206004820152602f60248201527f576974686472617756323a20436f6e747261637420646f6573206e6f74206f7760448201526e6e20656e6f75676820746f6b656e7360881b6064820152608401610f41565b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529082169063a9059cbb90604401602060405180830381600087803b158015612a2257600080fd5b505af1158015612a36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5a9190614e82565b50612025613ade565b6001600160a01b038216331415612abc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610f41565b6001600160a01b0382166000908152600a602052604090205460ff1615612b975760405162461bcd60e51b815260206004820152607d60248201527f45524337323152657374726963746564417070726f76616c3a204f706572617460448201527f6f72206164647265737320686173206265656e2072657374726963746564206260648201527f7920636f6e7472616374206f776e657220616e64206973206e6f7420616c6c6f60848201527f77656420746f206265206d61726b656420666f7220617070726f76616c00000060a482015260c401610f41565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190612c1f90612826565b90508180612c2a5750805b612c465760405162461bcd60e51b8152600401610f4190614f3a565b6001600160a01b038316612cc25760405162461bcd60e51b815260206004820152603c60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742063616e6e6f7420626520746865207a65726f2061646472657373000000006064820152608401610f41565b6010546001600160a01b0384811691161415612d465760405162461bcd60e51b815260206004820152603b60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742069732073616d652061732063757272656e74207061796f757400000000006064820152608401610f41565b5050601080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b0316339081149190612d8690612826565b90508180612d915750805b612dad5760405162461bcd60e51b8152600401610f4190614f3a565b611ba76123db565b612dc084848461375e565b612dcc84848484613d87565b611b3b5760405162461bcd60e51b8152600401610f4190614fcf565b600080546001600160a01b0316339081149190612e0490612826565b90508180612e0f5750805b612e2b5760405162461bcd60e51b8152600401610f4190614f3a565b50506017805460ff19169055565b600c546001600160a01b03163314612e635760405162461bcd60e51b8152600401610f4190614ee8565b600c546001600160a01b0382811691161415612edd5760405162461bcd60e51b815260206004820152603360248201527f576974686472617761626c6556323a204e65772052616d7070206164647265736044820152721cc81b5d5cdd08189948191a5999995c995b9d606a1b6064820152608401610f41565b600c80546001600160a01b0319166001600160a01b038316179055600e8054829190600090612f0e57612f0e615022565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600c546001600160a01b03163314612f695760405162461bcd60e51b8152600401610f4190614ee8565b601655565b60606000612f7a613249565b90506000815111612f9a5760405180602001604052806000815250612fc5565b80612fa484613e95565b604051602001612fb5929190615038565b6040516020818303038152906040525b9392505050565b6000612fdb6002546000190190565b610eac906001614bf5565b600080546001600160a01b031633908114919061300290612826565b9050818061300d5750805b6130295760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03166000908152600d60205260409020805460ff19169055565b601b805461305990614c50565b80601f016020809104026020016040519081016040528092919081815260200182805461308590614c50565b80156130d25780601f106130a7576101008083540402835291602001916130d2565b820191906000526020600020905b8154815290600101906020018083116130b557829003601f168201915b505050505081565b600080546001600160a01b03163390811491906130f690612826565b905081806131015750805b61311d5760405162461bcd60e51b8152600401610f4190614f3a565b601c54610100900460ff16156131755760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610f41565b825161318890601b906020860190614487565b5050601c805461ff0019166101001790555050565b60006131a882611b41565b61322a5760405162461bcd60e51b815260206004820152604760248201527f54686973204552432d323020636f6e7472616374206973206e6f74206170707260448201527f6f76656420746f206d616b65207061796d656e7473206f6e207468697320636f6064820152666e74726163742160c81b608482015260a401610f41565b506001600160a01b03166000908152600d602052604090206001015490565b6060601b805461105a90614c50565b600080546001600160a01b031633908114919061327490612826565b9050818061327f5750805b61329b5760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03929092166000908152600d60205260409020805460ff191691151591909117815560010155565b600c546001600160a01b031633146132f65760405162461bcd60e51b8152600401610f4190614ee8565b6000613300611dbe565b1161330a57600080fd5b6117a1613d13565b60175460ff16156133355760405162461bcd60e51b8152600401610f4190614a7a565b601a5460ff16151560011480156133535750601c5460ff1615156001145b61336f5760405162461bcd60e51b8152600401610f4190614c8b565b61337a83838361191a565b6133965760405162461bcd60e51b8152600401610f4190614cc2565b7f00000000000000000000000000000000000000000000000000000000000000006133bf612fcc565b11156133dd5760405162461bcd60e51b8152600401610f4190614c0d565b6133e8836001613631565b6134045760405162461bcd60e51b8152600401610f4190614b8f565b61135483600160006136b6565b6000546001600160a01b0316331461343b5760405162461bcd60e51b8152600401610f4190614f83565b6001600160a01b0381166134835760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f41565b61348c81612826565b6134ec5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610f41565b6001600160a01b03166000908152600160205260409020805460ff19169055565b601281815481106116f457600080fd5b6000546001600160a01b031633146135475760405162461bcd60e51b8152600401610f4190614f83565b6001600160a01b0381166135ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f41565b6125c581613cc3565b600c546001600160a01b031633146135df5760405162461bcd60e51b8152600401610f4190614ee8565b6000601555565b600080546001600160a01b031633908114919061360290612826565b9050818061360d5750805b6136295760405162461bcd60e51b8152600401610f4190614f3a565b6123ca6125c8565b600060018210156136965760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610f41565b601d54826136a385613f92565b6136ad9190614bf5565b11159392505050565b61135483838360405180602001604052806000815250614030565b600081600111158015610f185750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601654601560008282546137579190614bf5565b9091555050565b600061376982613b95565b80519091506000906001600160a01b0316336001600160a01b031614806137a0575033613795846110dd565b6001600160a01b0316145b806137b2575081516137b29033610da5565b90508061381c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610f41565b846001600160a01b031682600001516001600160a01b0316146138905760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610f41565b6001600160a01b0384166138f45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610f41565b61390460008484600001516136e7565b6001600160a01b03851660009081526007602052604081208054600192906139369084906001600160801b0316615067565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260076020526040812080546001945090926139829185911661508f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055613a09846001614bf5565b6000818152600660205260409020549091506001600160a01b0316613a9857613a31816136d1565b15613a985760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461236d565b60155480613ae95750565b60005b601454811015613b7657613b64600f8281548110613b0c57613b0c615022565b9060005260206000200160009054906101000a90046001600160a01b0316606460128481548110613b3f57613b3f615022565b906000526020600020015485613b559190614d42565b613b5f91906150c7565b6142fd565b80613b6e81614f1f565b915050613aec565b50506000601555565b600082613b8c8584614393565b14949350505050565b60408051808201909152600080825260208201528180600111158015613bbc575060025481105b15613c63576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613c0d579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613c5e579392505050565b613c0d565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610f41565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000613d1d611dbe565b905060005b60135481101561104757613d75600e8281548110613d4257613d42615022565b9060005260206000200160009054906101000a90046001600160a01b0316606460118481548110613b3f57613b3f615022565b80613d7f81614f1f565b915050613d22565b60006001600160a01b0384163b15613e8957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613dcb9033908990889088906004016150db565b602060405180830381600087803b158015613de557600080fd5b505af1925050508015613e15575060408051601f3d908101601f19168201909252613e1291810190615118565b60015b613e6f573d808015613e43576040519150601f19603f3d011682016040523d82523d6000602084013e613e48565b606091505b508051613e675760405162461bcd60e51b8152600401610f4190614fcf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613e8d565b5060015b949350505050565b606081613eb95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613ee35780613ecd81614f1f565b9150613edc9050600a836150c7565b9150613ebd565b6000816001600160401b03811115613efd57613efd6148ba565b6040519080825280601f01601f191660200182016040528015613f27576020820181803683370190505b5090505b8415613e8d57613f3c600183614fb8565b9150613f49600a86615135565b613f54906030614bf5565b60f81b818381518110613f6957613f69615022565b60200101906001600160f81b031916908160001a905350613f8b600a866150c7565b9450613f2b565b60006001600160a01b0382166140045760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610f41565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166140935760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610f41565b61409c816136d1565b156140e95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610f41565b8261414b5760035484111561414b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610f41565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906141a790889061508f565b6001600160801b03168152602001856141c057866141c3565b60005b83602001516141d2919061508f565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156142f15760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46142b56000898488613d87565b6142d15760405162461bcd60e51b8152600401610f4190614fcf565b816142db81614f1f565b92505080806142e990614f1f565b915050614268565b50600255505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461434a576040519150601f19603f3d011682016040523d82523d6000602084013e61434f565b606091505b50509050806113545760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610f41565b600081815b84518110156143ff5760008582815181106143b5576143b5615022565b602002602001015190508083116143db57600083815260208290526040902092506143ec565b600081815260208490526040902092505b50806143f781614f1f565b915050614398565b509392505050565b82805461441390614c50565b90600052602060002090601f016020900481019282614435576000855561447b565b82601f1061444e5782800160ff1982351617855561447b565b8280016001018555821561447b579182015b8281111561447b578235825591602001919060010190614460565b50611f379291506144fb565b82805461449390614c50565b90600052602060002090601f0160209004810192826144b5576000855561447b565b82601f106144ce57805160ff191683800117855561447b565b8280016001018555821561447b579182015b8281111561447b5782518255916020019190600101906144e0565b5b80821115611f3757600081556001016144fc565b60006020828403121561452257600080fd5b5035919050565b6001600160e01b0319811681146125c557600080fd5b60006020828403121561455157600080fd5b8135612fc581614529565b80356001600160a01b038116811461457357600080fd5b919050565b60006020828403121561458a57600080fd5b612fc58261455c565b600080604083850312156145a657600080fd5b6145af8361455c565b946020939093013593505050565b60005b838110156145d85781810151838201526020016145c0565b83811115611b3b5750506000910152565b600081518084526146018160208601602086016145bd565b601f01601f19169290920160200192915050565b602081526000612fc560208301846145e9565b60008083601f84011261463a57600080fd5b5081356001600160401b0381111561465157600080fd5b6020830191508360208260051b850101111561466c57600080fd5b9250929050565b60008060008060006080868803121561468b57600080fd5b6146948661455c565b94506020860135935060408601356001600160401b038111156146b657600080fd5b6146c288828901614628565b90945092506146d590506060870161455c565b90509295509295909350565b6000806000606084860312156146f657600080fd5b6146ff8461455c565b925061470d6020850161455c565b9150604084013590509250925092565b60008060006040848603121561473257600080fd5b61473b8461455c565b925060208401356001600160401b0381111561475657600080fd5b61476286828701614628565b9497909650939450505050565b6000806000806060858703121561478557600080fd5b61478e8561455c565b93506020850135925060408501356001600160401b038111156147b057600080fd5b6147bc87828801614628565b95989497509550505050565b600080602083850312156147db57600080fd5b82356001600160401b03808211156147f257600080fd5b818501915085601f83011261480657600080fd5b81358181111561481557600080fd5b86602082850101111561482757600080fd5b60209290920196919550909350505050565b60008060006060848603121561484e57600080fd5b6148578461455c565b92506020840135915061486c6040850161455c565b90509250925092565b80151581146125c557600080fd5b6000806040838503121561489657600080fd5b61489f8361455c565b915060208301356148af81614875565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156148ea576148ea6148ba565b604051601f8501601f19908116603f01168101908282118183101715614912576149126148ba565b8160405280935085815286868601111561492b57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561495b57600080fd5b6149648561455c565b93506149726020860161455c565b92506040850135915060608501356001600160401b0381111561499457600080fd5b8501601f810187136149a557600080fd5b6149b4878235602084016148d0565b91505092959194509250565b6000602082840312156149d257600080fd5b81356001600160401b038111156149e857600080fd5b8201601f810184136149f957600080fd5b613e8d848235602084016148d0565b600080600060608486031215614a1d57600080fd5b614a268461455c565b92506020840135614a3681614875565b929592945050506040919091013590565b60008060408385031215614a5a57600080fd5b614a638361455c565b9150614a716020840161455c565b90509250929050565b6020808252602b908201527f4f6e6c79206d696e74696e672077697468204552432d323020746f6b656e732060408201526a34b99032b730b13632b21760a91b606082015260800190565b6020808252601a908201527f4d757374206d696e74206174206c65617374203120746f6b656e000000000000604082015260600190565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614c0857614c08614bdf565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203260408201526239333360e81b606082015260800190565b600181811c90821680614c6457607f821691505b60208210811415614c8557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601b908201527f416c6c6f776c697374206d696e74696e6720697320636c6f7365640000000000604082015260600190565b6020808252601c908201527f41646472657373206973206e6f7420696e20416c6c6f776c6973742100000000604082015260600190565b60208082526029908201527f4552432d323020546f6b656e206973206e6f7420617070726f76656420666f72604082015268206d696e74696e672160b81b606082015260800190565b6000816000190483118215151615614d5c57614d5c614bdf565b500290565b600060208284031215614d7357600080fd5b5051919050565b60208082526037908201527f427579657220646f6573206e6f74206f776e20656e6f756768206f6620746f6b60408201527f656e20746f20636f6d706c657465207075726368617365000000000000000000606082015260800190565b60208082526041908201527f427579657220646964206e6f7420617070726f766520656e6f756768206f662060408201527f4552432d323020746f6b656e20746f20636f6d706c65746520707572636861736060820152606560f81b608082015260a00190565b60208082526024908201527f46656520666f72204552432d3230207061796d656e74206e6f742070726f76696040820152636465642160e01b606082015260800190565b600060208284031215614e9457600080fd5b8151612fc581614875565b60208082526029908201527f4552432d323020746f6b656e2077617320756e61626c6520746f206265207472604082015268185b9cd9995c9c995960ba1b606082015260800190565b6020808252601c908201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604082015260600190565b6000600019821415614f3357614f33614bdf565b5060010190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015614fca57614fca614bdf565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000835161504a8184602088016145bd565b83519083019061505e8183602088016145bd565b01949350505050565b60006001600160801b038381169083168181101561508757615087614bdf565b039392505050565b60006001600160801b0380831681851680830382111561505e5761505e614bdf565b634e487b7160e01b600052601260045260246000fd5b6000826150d6576150d66150b1565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061510e908301846145e9565b9695505050505050565b60006020828403121561512a57600080fd5b8151612fc581614529565b600082615144576151446150b1565b50069056fea2646970667358221220a29e88a836d9f6a79ec6b8199e570d62fe7ff0e8104b74f0e5d9ecb6acf9a1a164736f6c63430008090033697066733a2f2f62616679626569656d6b6e75623535756a707035727235627a73657372707a6565746d7233723572707275653335377037773776377733337735342f

Deployed Bytecode

0x6080604052600436106104a85760003560e01c8063715018a61161026b578063c3fb11c91161014f578063dcd4aa8b116100c1578063f05045c811610085578063f05045c814610dd3578063f2fde38b14610df3578063f70be5e214610e13578063f8c0fd2014610e28578063fd19eaf014610e3d578063fe154b2d14610e5d57600080fd5b8063dcd4aa8b14610d28578063df213e8a14610d3d578063dfdedf6914610d50578063e6c6990a14610d70578063e985e9c514610d8a57600080fd5b8063cfc86f7b11610113578063cfc86f7b14610c88578063cff4492314610c9d578063d266f3a914610cbd578063d547cfb714610cdd578063d7224ba014610cf2578063d83ae33214610d0857600080fd5b8063c3fb11c914610bf3578063c5815c4114610c13578063c87b56dd14610c33578063caa0f92a14610c53578063cacf084214610c6857600080fd5b80638ff4013f116101e8578063a22cb465116101ac578063a22cb46514610b49578063a91bd1a914610b69578063afe5608b14610b89578063b88d4fde14610b9e578063b94b237614610bbe578063bbd8556b14610bd357600080fd5b80638ff4013f14610a875780639231ab2a14610aa757806395d89b4114610af4578063a1af10ca14610b09578063a1db978214610b2957600080fd5b8063853828b61161022f578063853828b614610a05578063891bbe7314610a1a57806389f26d5814610a3a5780638da5cb5b14610a4f5780638f4bb49714610a6d57600080fd5b8063715018a614610988578063755edd171461099d57806379ab3c89146109b05780637fb8c6d3146109c557806383c81c41146109e557600080fd5b80633e07311c116103925780634ab8b5dd1161030f57806360986a71116102d357806360986a71146108f55780636352211e146109085780636ba9fd38146109285780636d3de8061461093d5780636eaf83441461095257806370a082311461096857600080fd5b80634ab8b5dd146108605780634f6ccce71461087657806354214f6914610896578063547520fe146108b557806355f804b3146108d557600080fd5b8063447abc7a11610356578063447abc7a146107bd57806345c0f533146107d2578063464c34281461080657806346f41ed5146108265780634783f0ef1461084057600080fd5b80633e07311c146107325780633e3e0b121461074857806340ccc0821461075d57806342842e0e1461077d57806343696f181461079d57600080fd5b806323b872dd1161042b5780632eb4a7ab116103ef5780632eb4a7ab146106785780632f745c591461068e57806333006786146106ae57806338b90333146106ce5780633c003254146106ff5780633d3f9c571461071257600080fd5b806323b872dd146105f7578063286c8137146106175780632913daa0146106375780632a000d4e1461064d5780632b5269b41461066357600080fd5b806306fdde031161047257806306fdde0314610582578063081812fc146105a4578063095ea7b3146105c457806316b88a1d146105e457806318160ddd146104ea57600080fd5b8062641e48146104ad5780629a9b7b146104ea57806301ffc9a71461050d578063043a2a401461053d5780630644cefa1461056d575b600080fd5b3480156104b957600080fd5b506104cd6104c8366004614510565b610e73565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156104f657600080fd5b506104ff610e9d565b6040519081526020016104e1565b34801561051957600080fd5b5061052d61052836600461453f565b610eb1565b60405190151581526020016104e1565b34801561054957600080fd5b5061052d610558366004614578565b600a6020526000908152604090205460ff1681565b61058061057b366004614593565b610f1e565b005b34801561058e57600080fd5b5061059761104b565b6040516104e19190614615565b3480156105b057600080fd5b506104cd6105bf366004614510565b6110dd565b3480156105d057600080fd5b506105806105df366004614593565b611166565b6105806105f2366004614673565b611359565b34801561060357600080fd5b506105806106123660046146e1565b6116d9565b34801561062357600080fd5b506104ff610632366004614510565b6116e4565b34801561064357600080fd5b506104ff60035481565b34801561065957600080fd5b506104ff60155481565b34801561066f57600080fd5b50610580611705565b34801561068457600080fd5b506104ff60195481565b34801561069a57600080fd5b506104ff6106a9366004614593565b6117a3565b3480156106ba57600080fd5b5061052d6106c936600461471d565b61191a565b3480156106da57600080fd5b50601a546106ed90610100900460ff1681565b60405160ff90911681526020016104e1565b61058061070d36600461476f565b6119f0565b34801561071e57600080fd5b5061052d61072d366004614578565b611b41565b34801561073e57600080fd5b506104ff60135481565b34801561075457600080fd5b50610580611b64565b34801561076957600080fd5b50610580610778366004614593565b611bb5565b34801561078957600080fd5b506105806107983660046146e1565b611ca6565b3480156107a957600080fd5b506105806107b8366004614578565b611cc1565b3480156107c957600080fd5b506104ff611dbe565b3480156107de57600080fd5b506104ff7f0000000000000000000000000000000000000000000000000000000000000b7581565b34801561081257600080fd5b50610580610821366004614578565b611dce565b34801561083257600080fd5b5060175461052d9060ff1681565b34801561084c57600080fd5b5061058061085b366004614510565b611e37565b34801561086c57600080fd5b506104ff601d5481565b34801561088257600080fd5b506104ff610891366004614510565b611ed3565b3480156108a257600080fd5b50601c5461052d90610100900460ff1681565b3480156108c157600080fd5b506105806108d0366004614510565b611f3b565b3480156108e157600080fd5b506105806108f03660046147c8565b611fd6565b610580610903366004614839565b61202c565b34801561091457600080fd5b506104cd610923366004614510565b612375565b34801561093457600080fd5b50610580612387565b34801561094957600080fd5b506105806123db565b34801561095e57600080fd5b506104ff60165481565b34801561097457600080fd5b506104ff610983366004614578565b61242c565b34801561099457600080fd5b506105806124bd565b6105806109ab366004614578565b6124f1565b3480156109bc57600080fd5b506105806125c8565b3480156109d157600080fd5b506010546104cd906001600160a01b031681565b3480156109f157600080fd5b50610580610a00366004614883565b61261c565b348015610a1157600080fd5b5061058061268c565b348015610a2657600080fd5b506104cd610a35366004614510565b6126eb565b348015610a4657600080fd5b506105806126fb565b348015610a5b57600080fd5b506000546001600160a01b03166104cd565b348015610a7957600080fd5b50601c5461052d9060ff1681565b348015610a9357600080fd5b50610580610aa2366004614510565b61274f565b348015610ab357600080fd5b50610ac7610ac2366004614510565b6127fa565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016104e1565b348015610b0057600080fd5b50610597612817565b348015610b1557600080fd5b5061052d610b24366004614578565b612826565b348015610b3557600080fd5b50610580610b44366004614593565b6128a3565b348015610b5557600080fd5b50610580610b64366004614883565b612a63565b348015610b7557600080fd5b50610580610b84366004614578565b612c03565b348015610b9557600080fd5b50610580612d6a565b348015610baa57600080fd5b50610580610bb9366004614945565b612db5565b348015610bca57600080fd5b50610580612de8565b348015610bdf57600080fd5b50610580610bee366004614578565b612e39565b348015610bff57600080fd5b50610580610c0e366004614510565b612f3f565b348015610c1f57600080fd5b50600c546104cd906001600160a01b031681565b348015610c3f57600080fd5b50610597610c4e366004614510565b612f6e565b348015610c5f57600080fd5b506104ff612fcc565b348015610c7457600080fd5b50610580610c83366004614578565b612fe6565b348015610c9457600080fd5b5061059761304c565b348015610ca957600080fd5b50610580610cb83660046149c0565b6130da565b348015610cc957600080fd5b506104ff610cd8366004614578565b61319d565b348015610ce957600080fd5b50610597613249565b348015610cfe57600080fd5b506104ff600b5481565b348015610d1457600080fd5b50610580610d23366004614a08565b613258565b348015610d3457600080fd5b506105806132cc565b610580610d4b36600461471d565b613312565b348015610d5c57600080fd5b50610580610d6b366004614578565b613411565b348015610d7c57600080fd5b50601a5461052d9060ff1681565b348015610d9657600080fd5b5061052d610da5366004614a47565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ddf57600080fd5b506104ff610dee366004614510565b61350d565b348015610dff57600080fd5b50610580610e0e366004614578565b61351d565b348015610e1f57600080fd5b506105806135b5565b348015610e3457600080fd5b506105806135e6565b348015610e4957600080fd5b5061052d610e58366004614593565b613631565b348015610e6957600080fd5b506104ff60145481565b600f8181548110610e8357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610eac6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610ee257506001600160e01b03198216635b5e139f60e01b145b80610efd57506001600160e01b0319821663780e9d6360e01b145b80610f1857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60175460ff1615610f4a5760405162461bcd60e51b8152600401610f4190614a7a565b60405180910390fd5b6001811015610f6b5760405162461bcd60e51b8152600401610f4190614ac5565b600354811115610f8d5760405162461bcd60e51b8152600401610f4190614afc565b601c5460ff1615156001148015610fa75750601a5460ff16155b610fc35760405162461bcd60e51b8152600401610f4190614b4a565b610fcd8282613631565b610fe95760405162461bcd60e51b8152600401610f4190614b8f565b7f0000000000000000000000000000000000000000000000000000000000000b7581611013610e9d565b61101d9190614bf5565b111561103b5760405162461bcd60e51b8152600401610f4190614c0d565b611047828260006136b6565b5050565b60606004805461105a90614c50565b80601f016020809104026020016040519081016040528092919081815260200182805461108690614c50565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b5050505050905090565b60006110e8826136d1565b61114a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610f41565b506000908152600860205260409020546001600160a01b031690565b600061117182612375565b9050806001600160a01b0316836001600160a01b031614156111e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610f41565b6001600160a01b0383166000908152600a602052604090205460ff16156112bb5760405162461bcd60e51b815260206004820152607f60248201527f45524337323152657374726963746564417070726f76616c3a2041646472657360448201527f7320746f20617070726f766520686173206265656e207265737472696374656460648201527f20627920636f6e7472616374206f776e657220616e64206973206e6f7420616c60848201527f6c6f77656420746f206265206d61726b656420666f7220617070726f76616c0060a482015260c401610f41565b336001600160a01b03821614806112d757506112d78133610da5565b6113495760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610f41565b6113548383836136e7565b505050565b601a5460ff16151560011480156113775750601c5460ff1615156001145b6113935760405162461bcd60e51b8152600401610f4190614c8b565b61139e85848461191a565b6113ba5760405162461bcd60e51b8152600401610f4190614cc2565b60018410156113db5760405162461bcd60e51b8152600401610f4190614ac5565b6003548411156113fd5760405162461bcd60e51b8152600401610f4190614afc565b6114078585613631565b6114235760405162461bcd60e51b8152600401610f4190614b8f565b7f0000000000000000000000000000000000000000000000000000000000000b758461144d610e9d565b6114579190614bf5565b11156114755760405162461bcd60e51b8152600401610f4190614c0d565b61147e81611b41565b61149a5760405162461bcd60e51b8152600401610f4190614cf9565b6000846114a68361319d565b6114b09190614d42565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b1580156114f957600080fd5b505afa15801561150d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115319190614d61565b101561154f5760405162461bcd60e51b8152600401610f4190614d7a565b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561159957600080fd5b505afa1580156115ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d19190614d61565b10156115ef5760405162461bcd60e51b8152600401610f4190614dd7565b60165434146116105760405162461bcd60e51b8152600401610f4190614e3e565b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561166457600080fd5b505af1158015611678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169c9190614e82565b9050806116bb5760405162461bcd60e51b8152600401610f4190614e9f565b6116c7888860006136b6565b6116cf613743565b5050505050505050565b61135483838361375e565b601181815481106116f457600080fd5b600091825260209091200154905081565b600c546001600160a01b0316331461172f5760405162461bcd60e51b8152600401610f4190614ee8565b6000601554116117995760405162461bcd60e51b815260206004820152602f60248201527f576974686472617761626c6556323a204e6f2052616d7070207375726368617260448201526e33b2b99034b7103130b630b731b29760891b6064820152608401610f41565b6117a1613ade565b565b60006117ae8361242c565b82106118075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610f41565b6000611811610e9d565b905060008060005b838110156118ba576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561186b57805192505b876001600160a01b0316836001600160a01b031614156118a7578684141561189957509350610f1892505050565b836118a381614f1f565b9450505b50806118b281614f1f565b915050611819565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610f41565b60195460009061196c5760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610f41565b6040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506119e7848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506019549150849050613b7f565b95945050505050565b60175460ff1615611a135760405162461bcd60e51b8152600401610f4190614a7a565b601a5460ff1615156001148015611a315750601c5460ff1615156001145b611a4d5760405162461bcd60e51b8152600401610f4190614c8b565b611a5884838361191a565b611a745760405162461bcd60e51b8152600401610f4190614cc2565b6001831015611a955760405162461bcd60e51b8152600401610f4190614ac5565b600354831115611ab75760405162461bcd60e51b8152600401610f4190614afc565b611ac18484613631565b611add5760405162461bcd60e51b8152600401610f4190614b8f565b7f0000000000000000000000000000000000000000000000000000000000000b7583611b07610e9d565b611b119190614bf5565b1115611b2f5760405162461bcd60e51b8152600401610f4190614c0d565b611b3b848460006136b6565b50505050565b6001600160a01b03166000908152600d602052604090205460ff16151560011490565b600080546001600160a01b0316339081149190611b8090612826565b90508180611b8b5750805b611ba75760405162461bcd60e51b8152600401610f4190614f3a565b5050601c805460ff19169055565b600080546001600160a01b0316339081149190611bd190612826565b90508180611bdc5750805b611bf85760405162461bcd60e51b8152600401610f4190614f3a565b60008311611c485760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610f41565b7f0000000000000000000000000000000000000000000000000000000000000b7583611c72610e9d565b611c7c9190614bf5565b1115611c9a5760405162461bcd60e51b8152600401610f4190614c0d565b611b3b848460016136b6565b61135483838360405180602001604052806000815250612db5565b6000546001600160a01b03163314611ceb5760405162461bcd60e51b8152600401610f4190614f83565b6001600160a01b038116611d335760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f41565b611d3c81612826565b15611d975760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610f41565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600060155447610eac9190614fb8565b600080546001600160a01b0316339081149190611dea90612826565b90508180611df55750805b611e115760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600080546001600160a01b0316339081149190611e5390612826565b90508180611e5e5750805b611e7a5760405162461bcd60e51b8152600401610f4190614f3a565b601954831415611ecc5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610f41565b5050601955565b6000611edd610e9d565b8210611f375760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610f41565b5090565b600080546001600160a01b0316339081149190611f5790612826565b90508180611f625750805b611f7e5760405162461bcd60e51b8152600401610f4190614f3a565b6001831015611fcf5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610f41565b5050600355565b600080546001600160a01b0316339081149190611ff290612826565b90508180611ffd5750805b6120195760405162461bcd60e51b8152600401610f4190614f3a565b612025601b8585614407565b5050505050565b600182101561204d5760405162461bcd60e51b8152600401610f4190614ac5565b60035482111561206f5760405162461bcd60e51b8152600401610f4190614afc565b7f0000000000000000000000000000000000000000000000000000000000000b75612098612fcc565b11156120b65760405162461bcd60e51b8152600401610f4190614c0d565b601c5460ff16151560011480156120d05750601a5460ff16155b6120ec5760405162461bcd60e51b8152600401610f4190614b4a565b6120f7836001613631565b6121135760405162461bcd60e51b8152600401610f4190614b8f565b61211c81611b41565b6121385760405162461bcd60e51b8152600401610f4190614cf9565b6000826121448361319d565b61214e9190614d42565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561219757600080fd5b505afa1580156121ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cf9190614d61565b10156121ed5760405162461bcd60e51b8152600401610f4190614d7a565b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561223757600080fd5b505afa15801561224b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061226f9190614d61565b101561228d5760405162461bcd60e51b8152600401610f4190614dd7565b60165434146122ae5760405162461bcd60e51b8152600401610f4190614e3e565b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561230257600080fd5b505af1158015612316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233a9190614e82565b9050806123595760405162461bcd60e51b8152600401610f4190614e9f565b612365868660006136b6565b61236d613743565b505050505050565b600061238082613b95565b5192915050565b600080546001600160a01b03163390811491906123a390612826565b905081806123ae5750805b6123ca5760405162461bcd60e51b8152600401610f4190614f3a565b5050601c805460ff19166001179055565b600080546001600160a01b03163390811491906123f790612826565b905081806124025750805b61241e5760405162461bcd60e51b8152600401610f4190614f3a565b5050601a805460ff19169055565b60006001600160a01b0382166124985760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610f41565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b031633146124e75760405162461bcd60e51b8152600401610f4190614f83565b6117a16000613cc3565b60175460ff16156125145760405162461bcd60e51b8152600401610f4190614a7a565b7f0000000000000000000000000000000000000000000000000000000000000b7561253d612fcc565b111561255b5760405162461bcd60e51b8152600401610f4190614c0d565b601c5460ff16151560011480156125755750601a5460ff16155b6125915760405162461bcd60e51b8152600401610f4190614b4a565b61259c816001613631565b6125b85760405162461bcd60e51b8152600401610f4190614b8f565b6125c581600160006136b6565b50565b600080546001600160a01b03163390811491906125e490612826565b905081806125ef5750805b61260b5760405162461bcd60e51b8152600401610f4190614f3a565b5050601a805460ff19166001179055565b600080546001600160a01b031633908114919061263890612826565b905081806126435750805b61265f5760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600080546001600160a01b03163390811491906126a890612826565b905081806126b35750805b6126cf5760405162461bcd60e51b8152600401610f4190614f3a565b60006126d9611dbe565b116126e357600080fd5b611047613d13565b600e8181548110610e8357600080fd5b600080546001600160a01b031633908114919061271790612826565b905081806127225750805b61273e5760405162461bcd60e51b8152600401610f4190614f3a565b50506017805460ff19166001179055565b600080546001600160a01b031633908114919061276b90612826565b905081806127765750805b6127925760405162461bcd60e51b8152600401610f4190614f3a565b60018310156127f35760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610f41565b5050601d55565b6040805180820190915260008082526020820152610f1882613b95565b60606005805461105a90614c50565b60006001600160a01b03821661287e5760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610f41565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b600080546001600160a01b03163390811491906128bf90612826565b905081806128ca5750805b6128e65760405162461bcd60e51b8152600401610f4190614f3a565b600083116128f357600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a082319060240160206040518083038186803b15801561293657600080fd5b505afa15801561294a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296e9190614d61565b10156129d45760405162461bcd60e51b815260206004820152602f60248201527f576974686472617756323a20436f6e747261637420646f6573206e6f74206f7760448201526e6e20656e6f75676820746f6b656e7360881b6064820152608401610f41565b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529082169063a9059cbb90604401602060405180830381600087803b158015612a2257600080fd5b505af1158015612a36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5a9190614e82565b50612025613ade565b6001600160a01b038216331415612abc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610f41565b6001600160a01b0382166000908152600a602052604090205460ff1615612b975760405162461bcd60e51b815260206004820152607d60248201527f45524337323152657374726963746564417070726f76616c3a204f706572617460448201527f6f72206164647265737320686173206265656e2072657374726963746564206260648201527f7920636f6e7472616374206f776e657220616e64206973206e6f7420616c6c6f60848201527f77656420746f206265206d61726b656420666f7220617070726f76616c00000060a482015260c401610f41565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190612c1f90612826565b90508180612c2a5750805b612c465760405162461bcd60e51b8152600401610f4190614f3a565b6001600160a01b038316612cc25760405162461bcd60e51b815260206004820152603c60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742063616e6e6f7420626520746865207a65726f2061646472657373000000006064820152608401610f41565b6010546001600160a01b0384811691161415612d465760405162461bcd60e51b815260206004820152603b60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742069732073616d652061732063757272656e74207061796f757400000000006064820152608401610f41565b5050601080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b0316339081149190612d8690612826565b90508180612d915750805b612dad5760405162461bcd60e51b8152600401610f4190614f3a565b611ba76123db565b612dc084848461375e565b612dcc84848484613d87565b611b3b5760405162461bcd60e51b8152600401610f4190614fcf565b600080546001600160a01b0316339081149190612e0490612826565b90508180612e0f5750805b612e2b5760405162461bcd60e51b8152600401610f4190614f3a565b50506017805460ff19169055565b600c546001600160a01b03163314612e635760405162461bcd60e51b8152600401610f4190614ee8565b600c546001600160a01b0382811691161415612edd5760405162461bcd60e51b815260206004820152603360248201527f576974686472617761626c6556323a204e65772052616d7070206164647265736044820152721cc81b5d5cdd08189948191a5999995c995b9d606a1b6064820152608401610f41565b600c80546001600160a01b0319166001600160a01b038316179055600e8054829190600090612f0e57612f0e615022565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600c546001600160a01b03163314612f695760405162461bcd60e51b8152600401610f4190614ee8565b601655565b60606000612f7a613249565b90506000815111612f9a5760405180602001604052806000815250612fc5565b80612fa484613e95565b604051602001612fb5929190615038565b6040516020818303038152906040525b9392505050565b6000612fdb6002546000190190565b610eac906001614bf5565b600080546001600160a01b031633908114919061300290612826565b9050818061300d5750805b6130295760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03166000908152600d60205260409020805460ff19169055565b601b805461305990614c50565b80601f016020809104026020016040519081016040528092919081815260200182805461308590614c50565b80156130d25780601f106130a7576101008083540402835291602001916130d2565b820191906000526020600020905b8154815290600101906020018083116130b557829003601f168201915b505050505081565b600080546001600160a01b03163390811491906130f690612826565b905081806131015750805b61311d5760405162461bcd60e51b8152600401610f4190614f3a565b601c54610100900460ff16156131755760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610f41565b825161318890601b906020860190614487565b5050601c805461ff0019166101001790555050565b60006131a882611b41565b61322a5760405162461bcd60e51b815260206004820152604760248201527f54686973204552432d323020636f6e7472616374206973206e6f74206170707260448201527f6f76656420746f206d616b65207061796d656e7473206f6e207468697320636f6064820152666e74726163742160c81b608482015260a401610f41565b506001600160a01b03166000908152600d602052604090206001015490565b6060601b805461105a90614c50565b600080546001600160a01b031633908114919061327490612826565b9050818061327f5750805b61329b5760405162461bcd60e51b8152600401610f4190614f3a565b50506001600160a01b03929092166000908152600d60205260409020805460ff191691151591909117815560010155565b600c546001600160a01b031633146132f65760405162461bcd60e51b8152600401610f4190614ee8565b6000613300611dbe565b1161330a57600080fd5b6117a1613d13565b60175460ff16156133355760405162461bcd60e51b8152600401610f4190614a7a565b601a5460ff16151560011480156133535750601c5460ff1615156001145b61336f5760405162461bcd60e51b8152600401610f4190614c8b565b61337a83838361191a565b6133965760405162461bcd60e51b8152600401610f4190614cc2565b7f0000000000000000000000000000000000000000000000000000000000000b756133bf612fcc565b11156133dd5760405162461bcd60e51b8152600401610f4190614c0d565b6133e8836001613631565b6134045760405162461bcd60e51b8152600401610f4190614b8f565b61135483600160006136b6565b6000546001600160a01b0316331461343b5760405162461bcd60e51b8152600401610f4190614f83565b6001600160a01b0381166134835760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f41565b61348c81612826565b6134ec5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610f41565b6001600160a01b03166000908152600160205260409020805460ff19169055565b601281815481106116f457600080fd5b6000546001600160a01b031633146135475760405162461bcd60e51b8152600401610f4190614f83565b6001600160a01b0381166135ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f41565b6125c581613cc3565b600c546001600160a01b031633146135df5760405162461bcd60e51b8152600401610f4190614ee8565b6000601555565b600080546001600160a01b031633908114919061360290612826565b9050818061360d5750805b6136295760405162461bcd60e51b8152600401610f4190614f3a565b6123ca6125c8565b600060018210156136965760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610f41565b601d54826136a385613f92565b6136ad9190614bf5565b11159392505050565b61135483838360405180602001604052806000815250614030565b600081600111158015610f185750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601654601560008282546137579190614bf5565b9091555050565b600061376982613b95565b80519091506000906001600160a01b0316336001600160a01b031614806137a0575033613795846110dd565b6001600160a01b0316145b806137b2575081516137b29033610da5565b90508061381c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610f41565b846001600160a01b031682600001516001600160a01b0316146138905760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610f41565b6001600160a01b0384166138f45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610f41565b61390460008484600001516136e7565b6001600160a01b03851660009081526007602052604081208054600192906139369084906001600160801b0316615067565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260076020526040812080546001945090926139829185911661508f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055613a09846001614bf5565b6000818152600660205260409020549091506001600160a01b0316613a9857613a31816136d1565b15613a985760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461236d565b60155480613ae95750565b60005b601454811015613b7657613b64600f8281548110613b0c57613b0c615022565b9060005260206000200160009054906101000a90046001600160a01b0316606460128481548110613b3f57613b3f615022565b906000526020600020015485613b559190614d42565b613b5f91906150c7565b6142fd565b80613b6e81614f1f565b915050613aec565b50506000601555565b600082613b8c8584614393565b14949350505050565b60408051808201909152600080825260208201528180600111158015613bbc575060025481105b15613c63576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613c0d579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215613c5e579392505050565b613c0d565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610f41565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000613d1d611dbe565b905060005b60135481101561104757613d75600e8281548110613d4257613d42615022565b9060005260206000200160009054906101000a90046001600160a01b0316606460118481548110613b3f57613b3f615022565b80613d7f81614f1f565b915050613d22565b60006001600160a01b0384163b15613e8957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613dcb9033908990889088906004016150db565b602060405180830381600087803b158015613de557600080fd5b505af1925050508015613e15575060408051601f3d908101601f19168201909252613e1291810190615118565b60015b613e6f573d808015613e43576040519150601f19603f3d011682016040523d82523d6000602084013e613e48565b606091505b508051613e675760405162461bcd60e51b8152600401610f4190614fcf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613e8d565b5060015b949350505050565b606081613eb95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613ee35780613ecd81614f1f565b9150613edc9050600a836150c7565b9150613ebd565b6000816001600160401b03811115613efd57613efd6148ba565b6040519080825280601f01601f191660200182016040528015613f27576020820181803683370190505b5090505b8415613e8d57613f3c600183614fb8565b9150613f49600a86615135565b613f54906030614bf5565b60f81b818381518110613f6957613f69615022565b60200101906001600160f81b031916908160001a905350613f8b600a866150c7565b9450613f2b565b60006001600160a01b0382166140045760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610f41565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166140935760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610f41565b61409c816136d1565b156140e95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610f41565b8261414b5760035484111561414b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610f41565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906141a790889061508f565b6001600160801b03168152602001856141c057866141c3565b60005b83602001516141d2919061508f565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156142f15760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46142b56000898488613d87565b6142d15760405162461bcd60e51b8152600401610f4190614fcf565b816142db81614f1f565b92505080806142e990614f1f565b915050614268565b50600255505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461434a576040519150601f19603f3d011682016040523d82523d6000602084013e61434f565b606091505b50509050806113545760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610f41565b600081815b84518110156143ff5760008582815181106143b5576143b5615022565b602002602001015190508083116143db57600083815260208290526040902092506143ec565b600081815260208490526040902092505b50806143f781614f1f565b915050614398565b509392505050565b82805461441390614c50565b90600052602060002090601f016020900481019282614435576000855561447b565b82601f1061444e5782800160ff1982351617855561447b565b8280016001018555821561447b579182015b8281111561447b578235825591602001919060010190614460565b50611f379291506144fb565b82805461449390614c50565b90600052602060002090601f0160209004810192826144b5576000855561447b565b82601f106144ce57805160ff191683800117855561447b565b8280016001018555821561447b579182015b8281111561447b5782518255916020019190600101906144e0565b5b80821115611f3757600081556001016144fc565b60006020828403121561452257600080fd5b5035919050565b6001600160e01b0319811681146125c557600080fd5b60006020828403121561455157600080fd5b8135612fc581614529565b80356001600160a01b038116811461457357600080fd5b919050565b60006020828403121561458a57600080fd5b612fc58261455c565b600080604083850312156145a657600080fd5b6145af8361455c565b946020939093013593505050565b60005b838110156145d85781810151838201526020016145c0565b83811115611b3b5750506000910152565b600081518084526146018160208601602086016145bd565b601f01601f19169290920160200192915050565b602081526000612fc560208301846145e9565b60008083601f84011261463a57600080fd5b5081356001600160401b0381111561465157600080fd5b6020830191508360208260051b850101111561466c57600080fd5b9250929050565b60008060008060006080868803121561468b57600080fd5b6146948661455c565b94506020860135935060408601356001600160401b038111156146b657600080fd5b6146c288828901614628565b90945092506146d590506060870161455c565b90509295509295909350565b6000806000606084860312156146f657600080fd5b6146ff8461455c565b925061470d6020850161455c565b9150604084013590509250925092565b60008060006040848603121561473257600080fd5b61473b8461455c565b925060208401356001600160401b0381111561475657600080fd5b61476286828701614628565b9497909650939450505050565b6000806000806060858703121561478557600080fd5b61478e8561455c565b93506020850135925060408501356001600160401b038111156147b057600080fd5b6147bc87828801614628565b95989497509550505050565b600080602083850312156147db57600080fd5b82356001600160401b03808211156147f257600080fd5b818501915085601f83011261480657600080fd5b81358181111561481557600080fd5b86602082850101111561482757600080fd5b60209290920196919550909350505050565b60008060006060848603121561484e57600080fd5b6148578461455c565b92506020840135915061486c6040850161455c565b90509250925092565b80151581146125c557600080fd5b6000806040838503121561489657600080fd5b61489f8361455c565b915060208301356148af81614875565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156148ea576148ea6148ba565b604051601f8501601f19908116603f01168101908282118183101715614912576149126148ba565b8160405280935085815286868601111561492b57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561495b57600080fd5b6149648561455c565b93506149726020860161455c565b92506040850135915060608501356001600160401b0381111561499457600080fd5b8501601f810187136149a557600080fd5b6149b4878235602084016148d0565b91505092959194509250565b6000602082840312156149d257600080fd5b81356001600160401b038111156149e857600080fd5b8201601f810184136149f957600080fd5b613e8d848235602084016148d0565b600080600060608486031215614a1d57600080fd5b614a268461455c565b92506020840135614a3681614875565b929592945050506040919091013590565b60008060408385031215614a5a57600080fd5b614a638361455c565b9150614a716020840161455c565b90509250929050565b6020808252602b908201527f4f6e6c79206d696e74696e672077697468204552432d323020746f6b656e732060408201526a34b99032b730b13632b21760a91b606082015260800190565b6020808252601a908201527f4d757374206d696e74206174206c65617374203120746f6b656e000000000000604082015260600190565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614c0857614c08614bdf565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203260408201526239333360e81b606082015260800190565b600181811c90821680614c6457607f821691505b60208210811415614c8557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601b908201527f416c6c6f776c697374206d696e74696e6720697320636c6f7365640000000000604082015260600190565b6020808252601c908201527f41646472657373206973206e6f7420696e20416c6c6f776c6973742100000000604082015260600190565b60208082526029908201527f4552432d323020546f6b656e206973206e6f7420617070726f76656420666f72604082015268206d696e74696e672160b81b606082015260800190565b6000816000190483118215151615614d5c57614d5c614bdf565b500290565b600060208284031215614d7357600080fd5b5051919050565b60208082526037908201527f427579657220646f6573206e6f74206f776e20656e6f756768206f6620746f6b60408201527f656e20746f20636f6d706c657465207075726368617365000000000000000000606082015260800190565b60208082526041908201527f427579657220646964206e6f7420617070726f766520656e6f756768206f662060408201527f4552432d323020746f6b656e20746f20636f6d706c65746520707572636861736060820152606560f81b608082015260a00190565b60208082526024908201527f46656520666f72204552432d3230207061796d656e74206e6f742070726f76696040820152636465642160e01b606082015260800190565b600060208284031215614e9457600080fd5b8151612fc581614875565b60208082526029908201527f4552432d323020746f6b656e2077617320756e61626c6520746f206265207472604082015268185b9cd9995c9c995960ba1b606082015260800190565b6020808252601c908201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604082015260600190565b6000600019821415614f3357614f33614bdf565b5060010190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015614fca57614fca614bdf565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000835161504a8184602088016145bd565b83519083019061505e8183602088016145bd565b01949350505050565b60006001600160801b038381169083168181101561508757615087614bdf565b039392505050565b60006001600160801b0380831681851680830382111561505e5761505e614bdf565b634e487b7160e01b600052601260045260246000fd5b6000826150d6576150d66150b1565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061510e908301846145e9565b9695505050505050565b60006020828403121561512a57600080fd5b8151612fc581614529565b600082615144576151446150b1565b50069056fea2646970667358221220a29e88a836d9f6a79ec6b8199e570d62fe7ff0e8104b74f0e5d9ecb6acf9a1a164736f6c63430008090033

Deployed Bytecode Sourcemap

72611:114:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53326:59;;;;;;;;;;-1:-1:-1;53326:59:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;363:32:1;;;345:51;;333:2;318:18;53326:59:0;;;;;;;;36352:90;;;;;;;;;;;;;:::i;:::-;;;553:25:1;;;541:2;526:18;36352:90:0;407:177:1;38104:370:0;;;;;;;;;;-1:-1:-1;38104:370:0;;;;;:::i;:::-;;:::i;:::-;;;1140:14:1;;1133:22;1115:41;;1103:2;1088:18;38104:370:0;975:187:1;35308:59:0;;;;;;;;;;-1:-1:-1;35308:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;63471:703;;;;;;:::i;:::-;;:::i;:::-;;40169:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42500:204::-;;;;;;;;;;-1:-1:-1;42500:204:0;;;;;:::i;:::-;;:::i;41876:566::-;;;;;;;;;;-1:-1:-1;41876:566:0;;;;;:::i;:::-;;:::i;68479:1603::-;;;;;;:::i;:::-;;:::i;43541:142::-;;;;;;;;;;-1:-1:-1;43541:142:0;;;;;:::i;:::-;;:::i;53467:39::-;;;;;;;;;;-1:-1:-1;53467:39:0;;;;;:::i;:::-;;:::i;34037:27::-;;;;;;;;;;;;;;;;53656:46;;;;;;;;;;;;;;;;56426:179;;;;;;;;;;;;;:::i;31955:25::-;;;;;;;;;;;;;;;;37296:744;;;;;;;;;;-1:-1:-1;37296:744:0;;;;;:::i;:::-;;:::i;32614:287::-;;;;;;;;;;-1:-1:-1;32614:287:0;;;;;:::i;:::-;;:::i;61679:33::-;;;;;;;;;;-1:-1:-1;61679:33:0;;;;;;;;;;;;;;4780:4:1;4768:17;;;4750:36;;4738:2;4723:18;61679:33:0;4608:184:1;67322:813:0;;;;;;:::i;:::-;;:::i;57489:170::-;;;;;;;;;;-1:-1:-1;57489:170:0;;;;;:::i;:::-;;:::i;53561:38::-;;;;;;;;;;;;;;;;66073:84;;;;;;;;;;;;;:::i;62244:280::-;;;;;;;;;;-1:-1:-1;62244:280:0;;;;;:::i;:::-;;:::i;43746:157::-;;;;;;;;;;-1:-1:-1;43746:157:0;;;;;:::i;:::-;;:::i;28060:223::-;;;;;;;;;;-1:-1:-1;28060:223:0;;;;;:::i;:::-;;:::i;54039:126::-;;;;;;;;;;;;;:::i;33993:39::-;;;;;;;;;;;;;;;59091:161;;;;;;;;;;-1:-1:-1;59091:161:0;;;;;:::i;:::-;;:::i;53758:40::-;;;;;;;;;;-1:-1:-1;53758:40:0;;;;;;;;32194:197;;;;;;;;;;-1:-1:-1;32194:197:0;;;;;:::i;:::-;;:::i;61908:35::-;;;;;;;;;;;;;;;;36828:177;;;;;;;;;;-1:-1:-1;36828:177:0;;;;;:::i;:::-;;:::i;61865:30::-;;;;;;;;;;-1:-1:-1;61865:30:0;;;;;;;;;;;71609:179;;;;;;;;;;-1:-1:-1;71609:179:0;;;;;:::i;:::-;;:::i;72249:106::-;;;;;;;;;;-1:-1:-1;72249:106:0;;;;;:::i;:::-;;:::i;64501:1473::-;;;;;;:::i;:::-;;:::i;39992:118::-;;;;;;;;;;-1:-1:-1;39992:118:0;;;;;:::i;:::-;;:::i;65982:83::-;;;;;;;;;;;;;:::i;33022:103::-;;;;;;;;;;;;;:::i;53707:46::-;;;;;;;;;;;;;;;;38530:211;;;;;;;;;;-1:-1:-1;38530:211:0;;;;;:::i;:::-;;:::i;26574:103::-;;;;;;;;;;;;;:::i;62743:509::-;;;;;;:::i;:::-;;:::i;32915:99::-;;;;;;;;;;;;;:::i;53390:72::-;;;;;;;;;;-1:-1:-1;53390:72:0;;;;-1:-1:-1;;;;;53390:72:0;;;41663:159;;;;;;;;;;-1:-1:-1;41663:159:0;;;;;:::i;:::-;;:::i;54171:119::-;;;;;;;;;;;;;:::i;53185:136::-;;;;;;;;;;-1:-1:-1;53185:136:0;;;;;:::i;:::-;;:::i;59808:97::-;;;;;;;;;;;;;:::i;25925:87::-;;;;;;;;;;-1:-1:-1;25971:7:0;25998:6;-1:-1:-1;;;;;25998:6:0;25925:87;;61827:31;;;;;;;;;;-1:-1:-1;61827:31:0;;;;;;;;71233:200;;;;;;;;;;-1:-1:-1;71233:200:0;;;;;:::i;:::-;;:::i;72361:128::-;;;;;;;;;;-1:-1:-1;72361:128:0;;;;;:::i;:::-;;:::i;:::-;;;;7171:13:1;;-1:-1:-1;;;;;7167:39:1;7149:58;;7267:4;7255:17;;;7249:24;-1:-1:-1;;;;;7245:49:1;7223:20;;;7216:79;;;;7122:18;72361:128:0;6939:362:1;40324:98:0;;;;;;;;;;;;;:::i;28799:188::-;;;;;;;;;;-1:-1:-1;28799:188:0;;;;;:::i;:::-;;:::i;55860:448::-;;;;;;;;;;-1:-1:-1;55860:448:0;;;;;:::i;:::-;;:::i;42768:465::-;;;;;;;;;;-1:-1:-1;42768:465:0;;;;;:::i;:::-;;:::i;60251:346::-;;;;;;;;;;-1:-1:-1;60251:346:0;;;;;:::i;:::-;;:::i;70509:128::-;;;;;;;;;;;;;:::i;43966:311::-;;;;;;;;;;-1:-1:-1;43966:311:0;;;;;:::i;:::-;;:::i;59992:99::-;;;;;;;;;;;;;:::i;61132:238::-;;;;;;;;;;-1:-1:-1;61132:238:0;;;;;:::i;:::-;;:::i;57200:111::-;;;;;;;;;;-1:-1:-1;57200:111:0;;;;;:::i;:::-;;:::i;52026:72::-;;;;;;;;;;-1:-1:-1;52026:72:0;;;;-1:-1:-1;;;;;52026:72:0;;;40485:288;;;;;;;;;;-1:-1:-1;40485:288:0;;;;;:::i;:::-;;:::i;36448:96::-;;;;;;;;;;;;;:::i;59559:163::-;;;;;;;;;;-1:-1:-1;59559:163:0;;;;;:::i;:::-;;:::i;61719:99::-;;;;;;;;;;;;;:::i;71806:220::-;;;;;;;;;;-1:-1:-1;71806:220:0;;;;;:::i;:::-;;:::i;57817:301::-;;;;;;;;;;-1:-1:-1;57817:301:0;;;;;:::i;:::-;;:::i;72151:92::-;;;;;;;;;;;;;:::i;48574:43::-;;;;;;;;;;;;;;;;58484:304;;;;;;;;;;-1:-1:-1;58484:304:0;;;;;:::i;:::-;;:::i;54298:116::-;;;;;;;;;;;;;:::i;66438:609::-;;;;;;:::i;:::-;;:::i;28426:234::-;;;;;;;;;;-1:-1:-1;28426:234:0;;;;;:::i;:::-;;:::i;31987:37::-;;;;;;;;;;-1:-1:-1;31987:37:0;;;;;;;;43296:186;;;;;;;;;;-1:-1:-1;43296:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;43441:25:0;;;43418:4;43441:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43296:186;53511:45;;;;;;;;;;-1:-1:-1;53511:45:0;;;;;:::i;:::-;;:::i;26830:201::-;;;;;;;;;;-1:-1:-1;26830:201:0;;;;;:::i;:::-;;:::i;60709:97::-;;;;;;;;;;;;;:::i;70233:125::-;;;;;;;;;;;;;:::i;70798:242::-;;;;;;;;;;-1:-1:-1;70798:242:0;;;;;:::i;:::-;;:::i;53604:47::-;;;;;;;;;;;;;;;;53326:59;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53326:59:0;;-1:-1:-1;53326:59:0;:::o;36352:90::-;36399:7;36422:14;36716:12;;-1:-1:-1;;36716:30:0;;36627:132;36422:14;36415:21;;36352:90;:::o;38104:370::-;38231:4;-1:-1:-1;;;;;;38261:40:0;;-1:-1:-1;;;38261:40:0;;:99;;-1:-1:-1;;;;;;;38312:48:0;;-1:-1:-1;;;38312:48:0;38261:99;:160;;;-1:-1:-1;;;;;;;38371:50:0;;-1:-1:-1;;;38371:50:0;38261:160;:207;;;-1:-1:-1;;;;;;;;;;12419:40:0;;;38432:36;38247:221;38104:370;-1:-1:-1;;38104:370:0:o;63471:703::-;63559:20;;;;:29;63551:85;;;;-1:-1:-1;;;63551:85:0;;;;;;;:::i;:::-;;;;;;;;;63666:1;63655:7;:12;;63647:51;;;;-1:-1:-1;;;63647:51:0;;;;;;;:::i;:::-;63728:12;;63717:7;:23;;63709:82;;;;-1:-1:-1;;;63709:82:0;;;;;;;:::i;:::-;63810:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;63833:17:0;;;;:26;63810:49;63802:99;;;;-1:-1:-1;;;63802:99:0;;;;;;;:::i;:::-;63930:27;63944:3;63949:7;63930:13;:27::i;:::-;63922:88;;;;-1:-1:-1;;;63922:88:0;;;;;;;:::i;:::-;64059:14;64048:7;64029:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;64021:92;;;;-1:-1:-1;;;64021:92:0;;;;;;;:::i;:::-;64136:30;64146:3;64151:7;64160:5;64136:9;:30::i;:::-;63471:703;;:::o;40169:94::-;40223:13;40252:5;40245:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40169:94;:::o;42500:204::-;42568:7;42592:16;42600:7;42592;:16::i;:::-;42584:74;;;;-1:-1:-1;;;42584:74:0;;13114:2:1;42584:74:0;;;13096:21:1;13153:2;13133:18;;;13126:30;13192:34;13172:18;;;13165:62;-1:-1:-1;;;13243:18:1;;;13236:43;13296:19;;42584:74:0;12912:409:1;42584:74:0;-1:-1:-1;42674:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42674:24:0;;42500:204::o;41876:566::-;41945:13;41961:24;41977:7;41961:15;:24::i;:::-;41945:40;;42006:5;-1:-1:-1;;;;;42000:11:0;:2;-1:-1:-1;;;;;42000:11:0;;;41992:58;;;;-1:-1:-1;;;41992:58:0;;13528:2:1;41992:58:0;;;13510:21:1;13567:2;13547:18;;;13540:30;13606:34;13586:18;;;13579:62;-1:-1:-1;;;13657:18:1;;;13650:32;13699:19;;41992:58:0;13326:398:1;41992:58:0;-1:-1:-1;;;;;42065:31:0;;;;;;:27;:31;;;;;;;;:40;42057:180;;;;-1:-1:-1;;;42057:180:0;;13931:2:1;42057:180:0;;;13913:21:1;13970:3;13950:18;;;13943:31;14010:34;13990:18;;;13983:62;14081:34;14061:18;;;14054:62;14153:34;14132:19;;;14125:63;14225:33;14204:19;;;14197:62;14276:19;;42057:180:0;13729:572:1;42057:180:0;24731:10;-1:-1:-1;;;;;42262:21:0;;;;:62;;-1:-1:-1;42287:37:0;42304:5;24731:10;43296:186;:::i;42287:37::-;42246:153;;;;-1:-1:-1;;;42246:153:0;;14508:2:1;42246:153:0;;;14490:21:1;14547:2;14527:18;;;14520:30;14586:34;14566:18;;;14559:62;14657:27;14637:18;;;14630:55;14702:19;;42246:153:0;14306:421:1;42246:153:0;42408:28;42417:2;42421:7;42430:5;42408:8;:28::i;:::-;41938:504;41876:566;;:::o;68479:1603::-;68634:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;68663:11:0;;;;:19;;:11;:19;68634:48;68626:88;;;;-1:-1:-1;;;68626:88:0;;;;;;;:::i;:::-;68731:32;68745:3;68750:12;;68731:13;:32::i;:::-;68723:73;;;;-1:-1:-1;;;68723:73:0;;;;;;;:::i;:::-;68824:1;68813:7;:12;;68805:51;;;;-1:-1:-1;;;68805:51:0;;;;;;;:::i;:::-;68884:12;;68873:7;:23;;68865:82;;;;-1:-1:-1;;;68865:82:0;;;;;;;:::i;:::-;68964:27;68978:3;68983:7;68964:13;:27::i;:::-;68956:88;;;;-1:-1:-1;;;68956:88:0;;;;;;;:::i;:::-;69091:14;69080:7;69061:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;69053:92;;;;-1:-1:-1;;;69053:92:0;;;;;;;:::i;:::-;69220:47;69247:19;69220:26;:47::i;:::-;69212:101;;;;-1:-1:-1;;;69212:101:0;;;;;;;:::i;:::-;69322:27;69396:7;69352:41;69373:19;69352:20;:41::i;:::-;:51;;;;:::i;:::-;69484:27;;-1:-1:-1;;;69484:27:0;;-1:-1:-1;;;;;363:32:1;;;69484:27:0;;;345:51:1;69322:81:0;;-1:-1:-1;69441:19:0;;69322:81;;69484:22;;;;;;318:18:1;;69484:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;69476:118;;;;-1:-1:-1;;;69476:118:0;;;;;;;:::i;:::-;69611:42;;-1:-1:-1;;;69611:42:0;;-1:-1:-1;;;;;16871:15:1;;;69611:42:0;;;16853:34:1;69647:4:0;16903:18:1;;;16896:43;69657:19:0;;69611:22;;;;;;16788:18:1;;69611:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;69603:143;;;;-1:-1:-1;;;69603:143:0;;;;;;;:::i;:::-;56983:17;;56970:9;:30;69755:63;;;;-1:-1:-1;;;69755:63:0;;;;;;;:::i;:::-;69859:66;;-1:-1:-1;;;69859:66:0;;-1:-1:-1;;;;;18087:15:1;;;69859:66:0;;;18069:34:1;69898:4:0;18119:18:1;;;18112:43;18171:18;;;18164:34;;;69835:21:0;;69859:25;;;;;;18004:18:1;;69859:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69835:90;;69942:16;69934:70;;;;-1:-1:-1;;;69934:70:0;;;;;;;:::i;:::-;70021:30;70031:3;70036:7;70045:5;70021:9;:30::i;:::-;70060:14;:12;:14::i;:::-;68617:1465;;;68479:1603;;;;;:::o;43541:142::-;43649:28;43659:4;43665:2;43669:7;43649:9;:28::i;53467:39::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53467:39:0;:::o;56426:179::-;52155:12;;-1:-1:-1;;;;;52155:12:0;52141:10;:26;52133:67;;;;-1:-1:-1;;;52133:67:0;;;;;;;:::i;:::-;56515:1:::1;56491:21;;:25;56483:85;;;::::0;-1:-1:-1;;;56483:85:0;;19428:2:1;56483:85:0::1;::::0;::::1;19410:21:1::0;19467:2;19447:18;;;19440:30;19506:34;19486:18;;;19479:62;-1:-1:-1;;;19557:18:1;;;19550:45;19612:19;;56483:85:0::1;19226:411:1::0;56483:85:0::1;56575:24;:22;:24::i;:::-;56426:179::o:0;37296:744::-;37405:7;37440:16;37450:5;37440:9;:16::i;:::-;37432:5;:24;37424:71;;;;-1:-1:-1;;;37424:71:0;;19844:2:1;37424:71:0;;;19826:21:1;19883:2;19863:18;;;19856:30;19922:34;19902:18;;;19895:62;-1:-1:-1;;;19973:18:1;;;19966:32;20015:19;;37424:71:0;19642:398:1;37424:71:0;37502:22;37527:13;:11;:13::i;:::-;37502:38;;37547:19;37577:25;37627:9;37622:350;37646:14;37642:1;:18;37622:350;;;37676:31;37710:14;;;:11;:14;;;;;;;;;37676:48;;;;;;;;;-1:-1:-1;;;;;37676:48:0;;;;;-1:-1:-1;;;37676:48:0;;;-1:-1:-1;;;;;37676:48:0;;;;;;;;37737:28;37733:89;;37798:14;;;-1:-1:-1;37733:89:0;37855:5;-1:-1:-1;;;;;37834:26:0;:17;-1:-1:-1;;;;;37834:26:0;;37830:135;;;37892:5;37877:11;:20;37873:59;;;-1:-1:-1;37919:1:0;-1:-1:-1;37912:8:0;;-1:-1:-1;;;37912:8:0;37873:59;37942:13;;;;:::i;:::-;;;;37830:135;-1:-1:-1;37662:3:0;;;;:::i;:::-;;;;37622:350;;;-1:-1:-1;37978:56:0;;-1:-1:-1;;;37978:56:0;;20387:2:1;37978:56:0;;;20369:21:1;20426:2;20406:18;;;20399:30;20465:34;20445:18;;;20438:62;-1:-1:-1;;;20516:18:1;;;20509:44;20570:19;;37978:56:0;20185:410:1;32614:287:0;32726:10;;32703:4;;32718:51;;;;-1:-1:-1;;;32718:51:0;;20802:2:1;32718:51:0;;;20784:21:1;20841:2;20821:18;;;20814:30;20880:25;20860:18;;;20853:53;20923:18;;32718:51:0;20600:347:1;32718:51:0;32803:21;;-1:-1:-1;;21101:2:1;21097:15;;;21093:53;32803:21:0;;;21081:66:1;32778:12:0;;21163::1;;32803:21:0;;;;;;;;;;;;32793:32;;;;;;32778:47;;32843:50;32862:12;;32843:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32876:10:0;;;-1:-1:-1;32888:4:0;;-1:-1:-1;32843:18:0;:50::i;:::-;32836:57;32614:287;-1:-1:-1;;;;;32614:287:0:o;67322:813::-;67445:20;;;;:29;67437:85;;;;-1:-1:-1;;;67437:85:0;;;;;;;:::i;:::-;67541:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;67570:11:0;;;;:19;;:11;:19;67541:48;67533:88;;;;-1:-1:-1;;;67533:88:0;;;;;;;:::i;:::-;67640:32;67654:3;67659:12;;67640:13;:32::i;:::-;67632:73;;;;-1:-1:-1;;;67632:73:0;;;;;;;:::i;:::-;67735:1;67724:7;:12;;67716:51;;;;-1:-1:-1;;;67716:51:0;;;;;;;:::i;:::-;67797:12;;67786:7;:23;;67778:82;;;;-1:-1:-1;;;67778:82:0;;;;;;;:::i;:::-;67881:27;67895:3;67900:7;67881:13;:27::i;:::-;67873:88;;;;-1:-1:-1;;;67873:88:0;;;;;;;:::i;:::-;68010:14;67999:7;67980:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;67972:92;;;;-1:-1:-1;;;67972:92:0;;;;;;;:::i;:::-;68097:30;68107:3;68112:7;68121:5;68097:9;:30::i;:::-;67322:813;;;;:::o;57489:170::-;-1:-1:-1;;;;;57594:42:0;57574:4;57594:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;57489:170::o;66073:84::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;66130:11:0::1;:19:::0;;-1:-1:-1;;66130:19:0::1;::::0;;66073:84::o;62244:280::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;62343:1:::1;62336:4;:8;62328:48;;;::::0;-1:-1:-1;;;62328:48:0;;21798:2:1;62328:48:0::1;::::0;::::1;21780:21:1::0;21837:2;21817:18;;;21810:30;21876:29;21856:18;;;21849:57;21923:18;;62328:48:0::1;21596:351:1::0;62328:48:0::1;62423:14;62415:4;62396:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;62388:89;;;;-1:-1:-1::0;;;62388:89:0::1;;;;;;;:::i;:::-;62489:26;62499:3;62504:4;62510;62489:9;:26::i;43746:157::-:0;43858:39;43875:4;43881:2;43885:7;43858:39;;;;;;;;;;;;:16;:39::i;28060:223::-;25971:7;25998:6;-1:-1:-1;;;;;25998:6:0;24731:10;26145:23;26137:68;;;;-1:-1:-1;;;26137:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28129:22:0;::::1;28121:50;;;::::0;-1:-1:-1;;;28121:50:0;;22515:2:1;28121:50:0::1;::::0;::::1;22497:21:1::0;22554:2;22534:18;;;22527:30;-1:-1:-1;;;22573:18:1;;;22566:45;22628:18;;28121:50:0::1;22313:339:1::0;28121:50:0::1;28187:16;28194:8;28187:6;:16::i;:::-;28186:17;28178:67;;;::::0;-1:-1:-1;;;28178:67:0;;22859:2:1;28178:67:0::1;::::0;::::1;22841:21:1::0;22898:2;22878:18;;;22871:30;22937:34;22917:18;;;22910:62;-1:-1:-1;;;22988:18:1;;;22981:35;23033:19;;28178:67:0::1;22657:401:1::0;28178:67:0::1;-1:-1:-1::0;;;;;28256:14:0::1;;::::0;;;28273:4:::1;28256:14;::::0;;;;;;;:21;;-1:-1:-1;;28256:21:0::1;::::0;;::::1;::::0;;28060:223::o;54039:126::-;54091:7;54138:21;;54114;:45;;;;:::i;59091:161::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;59188:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;59188:58:0::1;59242:4;59188:58;::::0;;59091:161::o;32194:197::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;32302:10:::1;;32284:14;:28;;32276:71;;;::::0;-1:-1:-1;;;32276:71:0;;23395:2:1;32276:71:0::1;::::0;::::1;23377:21:1::0;23434:2;23414:18;;;23407:30;23473:32;23453:18;;;23446:60;23523:18;;32276:71:0::1;23193:354:1::0;32276:71:0::1;-1:-1:-1::0;;32356:10:0::1;:27:::0;32194:197::o;36828:177::-;36895:7;36927:13;:11;:13::i;:::-;36919:5;:21;36911:69;;;;-1:-1:-1;;;36911:69:0;;23754:2:1;36911:69:0;;;23736:21:1;23793:2;23773:18;;;23766:30;23832:34;23812:18;;;23805:62;-1:-1:-1;;;23883:18:1;;;23876:33;23926:19;;36911:69:0;23552:399:1;36911:69:0;-1:-1:-1;36994:5:0;36828:177::o;71609:179::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;71708:1:::1;71693:11;:16;;71685:56;;;::::0;-1:-1:-1;;;71685:56:0;;24158:2:1;71685:56:0::1;::::0;::::1;24140:21:1::0;24197:2;24177:18;;;24170:30;24236:29;24216:18;;;24209:57;24283:18;;71685:56:0::1;23956:351:1::0;71685:56:0::1;-1:-1:-1::0;;71753:12:0::1;:26:::0;71609:179::o;72249:106::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;72326:23:::1;:13;72342:7:::0;;72326:23:::1;:::i;:::-;;29112:182:::0;;72249:106;;:::o;64501:1473::-;64632:1;64621:7;:12;;64613:51;;;;-1:-1:-1;;;64613:51:0;;;;;;;:::i;:::-;64692:12;;64681:7;:23;;64673:82;;;;-1:-1:-1;;;64673:82:0;;;;;;;:::i;:::-;64792:14;64772:16;:14;:16::i;:::-;:34;;64764:82;;;;-1:-1:-1;;;64764:82:0;;;;;;;:::i;:::-;64863:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;64886:17:0;;;;:26;64863:49;64855:99;;;;-1:-1:-1;;;64855:99:0;;;;;;;:::i;:::-;64979:21;64993:3;64998:1;64979:13;:21::i;:::-;64971:82;;;;-1:-1:-1;;;64971:82:0;;;;;;;:::i;:::-;65116:47;65143:19;65116:26;:47::i;:::-;65108:101;;;;-1:-1:-1;;;65108:101:0;;;;;;;:::i;:::-;65218:27;65292:7;65248:41;65269:19;65248:20;:41::i;:::-;:51;;;;:::i;:::-;65376:27;;-1:-1:-1;;;65376:27:0;;-1:-1:-1;;;;;363:32:1;;;65376:27:0;;;345:51:1;65218:81:0;;-1:-1:-1;65337:19:0;;65218:81;;65376:22;;;;;;318:18:1;;65376:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;65368:118;;;;-1:-1:-1;;;65368:118:0;;;;;;;:::i;:::-;65503:42;;-1:-1:-1;;;65503:42:0;;-1:-1:-1;;;;;16871:15:1;;;65503:42:0;;;16853:34:1;65539:4:0;16903:18:1;;;16896:43;65549:19:0;;65503:22;;;;;;16788:18:1;;65503:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;65495:143;;;;-1:-1:-1;;;65495:143:0;;;;;;;:::i;:::-;56983:17;;56970:9;:30;65647:63;;;;-1:-1:-1;;;65647:63:0;;;;;;;:::i;:::-;65751:66;;-1:-1:-1;;;65751:66:0;;-1:-1:-1;;;;;18087:15:1;;;65751:66:0;;;18069:34:1;65790:4:0;18119:18:1;;;18112:43;18171:18;;;18164:34;;;65727:21:0;;65751:25;;;;;;18004:18:1;;65751:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65727:90;;65834:16;65826:70;;;;-1:-1:-1;;;65826:70:0;;;;;;;:::i;:::-;65913:30;65923:3;65928:7;65937:5;65913:9;:30::i;:::-;65952:14;:12;:14::i;:::-;64604:1370;;;64501:1473;;;:::o;39992:118::-;40056:7;40079:20;40091:7;40079:11;:20::i;:::-;:25;;39992:118;-1:-1:-1;;39992:118:0:o;65982:83::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;66039:11:0::1;:18:::0;;-1:-1:-1;;66039:18:0::1;66053:4;66039:18;::::0;;65982:83::o;33022:103::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;33092:17:0::1;:25:::0;;-1:-1:-1;;33092:25:0::1;::::0;;33022:103::o;38530:211::-;38594:7;-1:-1:-1;;;;;38618:19:0;;38610:75;;;;-1:-1:-1;;;38610:75:0;;24514:2:1;38610:75:0;;;24496:21:1;24553:2;24533:18;;;24526:30;24592:34;24572:18;;;24565:62;-1:-1:-1;;;24643:18:1;;;24636:41;24694:19;;38610:75:0;24312:407:1;38610:75:0;-1:-1:-1;;;;;;38707:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38707:27:0;;38530:211::o;26574:103::-;25971:7;25998:6;-1:-1:-1;;;;;25998:6:0;24731:10;26145:23;26137:68;;;;-1:-1:-1;;;26137:68:0;;;;;;;:::i;:::-;26639:30:::1;26666:1;26639:18;:30::i;62743:509::-:0;62806:20;;;;:29;62798:85;;;;-1:-1:-1;;;62798:85:0;;;;;;;:::i;:::-;62922:14;62902:16;:14;:16::i;:::-;:34;;62894:82;;;;-1:-1:-1;;;62894:82:0;;;;;;;:::i;:::-;62995:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;63018:17:0;;;;:26;62995:49;62987:99;;;;-1:-1:-1;;;62987:99:0;;;;;;;:::i;:::-;63115:21;63129:3;63134:1;63115:13;:21::i;:::-;63107:82;;;;-1:-1:-1;;;63107:82:0;;;;;;;:::i;:::-;63220:24;63230:3;63235:1;63238:5;63220:9;:24::i;:::-;62743:509;:::o;32915:99::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32982:17:0::1;:24:::0;;-1:-1:-1;;32982:24:0::1;33002:4;32982:24;::::0;;32915:99::o;41663:159::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;41763:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:53;;-1:-1:-1;;41763:53:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41663:159::o;54171:119::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;54259:1:::1;54234:22;:20;:22::i;:::-;:26;54226:35;;;::::0;::::1;;54270:14;:12;:14::i;53185:136::-:0;;;;;;;;;;;;59808:97;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;59872:20:0::1;:27:::0;;-1:-1:-1;;59872:27:0::1;59895:4;59872:27;::::0;;59808:97::o;71233:200::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;71337:1:::1;71320:13;:18;;71312:70;;;::::0;-1:-1:-1;;;71312:70:0;;24926:2:1;71312:70:0::1;::::0;::::1;24908:21:1::0;24965:2;24945:18;;;24938:30;25004:34;24984:18;;;24977:62;-1:-1:-1;;;25055:18:1;;;25048:37;25102:19;;71312:70:0::1;24724:403:1::0;71312:70:0::1;-1:-1:-1::0;;71393:16:0::1;:32:::0;71233:200::o;72361:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;72463:20:0;72475:7;72463:11;:20::i;40324:98::-;40380:13;40409:7;40402:14;;;;;:::i;28799:188::-;28869:4;-1:-1:-1;;;;;28893:22:0;;28885:60;;;;-1:-1:-1;;;28885:60:0;;25334:2:1;28885:60:0;;;25316:21:1;25373:2;25353:18;;;25346:30;25412:27;25392:18;;;25385:55;25457:18;;28885:60:0;25132:349:1;28885:60:0;-1:-1:-1;;;;;;28959:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;28799:188::o;55860:448::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;55992:1:::1;55972:17;:21;55964:30;;;::::0;::::1;;56061:38;::::0;-1:-1:-1;;;56061:38:0;;56093:4:::1;56061:38;::::0;::::1;345:51:1::0;56031:14:0;;56103:17;;-1:-1:-1;;;;;56061:23:0;::::1;::::0;::::1;::::0;318:18:1;;56061:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;56053:119;;;::::0;-1:-1:-1;;;56053:119:0;;25688:2:1;56053:119:0::1;::::0;::::1;25670:21:1::0;25727:2;25707:18;;;25700:30;25766:34;25746:18;;;25739:62;-1:-1:-1;;;25817:18:1;;;25810:45;25872:19;;56053:119:0::1;25486:411:1::0;56053:119:0::1;56202:12;::::0;56179:55:::1;::::0;-1:-1:-1;;;56179:55:0;;-1:-1:-1;;;;;56202:12:0;;::::1;56179:55;::::0;::::1;26076:51:1::0;26143:18;;;26136:34;;;56179:22:0;;::::1;::::0;::::1;::::0;26049:18:1;;56179:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56278:24;:22;:24::i;42768:465::-:0;-1:-1:-1;;;;;42859:24:0;;24731:10;42859:24;;42851:63;;;;-1:-1:-1;;;42851:63:0;;26383:2:1;42851:63:0;;;26365:21:1;26422:2;26402:18;;;26395:30;26461:28;26441:18;;;26434:56;26507:18;;42851:63:0;26181:350:1;42851:63:0;-1:-1:-1;;;;;42929:37:0;;;;;;:27;:37;;;;;;;;:46;42921:184;;;;-1:-1:-1;;;42921:184:0;;26738:2:1;42921:184:0;;;26720:21:1;26777:3;26757:18;;;26750:31;26817:34;26797:18;;;26790:62;26888:34;26868:18;;;26861:62;26960:34;26939:19;;;26932:63;27032:31;27011:19;;;27004:60;27081:19;;42921:184:0;26536:570:1;42921:184:0;24731:10;43114:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43114:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43114:53:0;;;;;;;;;;43179:48;;1115:41:1;;;43114:42:0;;24731:10;43179:48;;1088:18:1;43179:48:0;;;;;;;42768:465;;:::o;60251:346::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60347:30:0;::::1;60339:103;;;::::0;-1:-1:-1;;;60339:103:0;;27313:2:1;60339:103:0::1;::::0;::::1;27295:21:1::0;27352:2;27332:18;;;27325:30;27391:34;27371:18;;;27364:62;27462:30;27442:18;;;27435:58;27510:19;;60339:103:0::1;27111:424:1::0;60339:103:0::1;60477:12;::::0;-1:-1:-1;;;;;60457:32:0;;::::1;60477:12:::0;::::1;60457:32;;60449:104;;;::::0;-1:-1:-1;;;60449:104:0;;27742:2:1;60449:104:0::1;::::0;::::1;27724:21:1::0;27781:2;27761:18;;;27754:30;27820:34;27800:18;;;27793:62;27891:29;27871:18;;;27864:57;27938:19;;60449:104:0::1;27540:423:1::0;60449:104:0::1;-1:-1:-1::0;;60560:12:0::1;:31:::0;;-1:-1:-1;;;;;;60560:31:0::1;-1:-1:-1::0;;;;;60560:31:0;;;::::1;::::0;;;::::1;::::0;;60251:346::o;70509:128::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;70573:26:::1;:24;:26::i;43966:311::-:0;44103:28;44113:4;44119:2;44123:7;44103:9;:28::i;:::-;44154:48;44177:4;44183:2;44187:7;44196:5;44154:22;:48::i;:::-;44138:133;;;;-1:-1:-1;;;44138:133:0;;;;;;;:::i;59992:99::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;60057:20:0::1;:28:::0;;-1:-1:-1;;60057:28:0::1;::::0;;59992:99::o;61132:238::-;52155:12;;-1:-1:-1;;;;;52155:12:0;52141:10;:26;52133:67;;;;-1:-1:-1;;;52133:67:0;;;;;;;:::i;:::-;61223:12:::1;::::0;-1:-1:-1;;;;;61208:27:0;;::::1;61223:12:::0;::::1;61208:27;;61200:91;;;::::0;-1:-1:-1;;;61200:91:0;;28590:2:1;61200:91:0::1;::::0;::::1;28572:21:1::0;28629:2;28609:18;;;28602:30;28668:34;28648:18;;;28641:62;-1:-1:-1;;;28719:18:1;;;28712:49;28778:19;;61200:91:0::1;28388:415:1::0;61200:91:0::1;61298:12;:26:::0;;-1:-1:-1;;;;;;61298:26:0::1;-1:-1:-1::0;;;;;61298:26:0;::::1;;::::0;;61331:16:::1;:19:::0;;61298:26;;61331:16;-1:-1:-1;;61331:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;61331:33:0::1;;;;;-1:-1:-1::0;;;;;61331:33:0::1;;;;;;61132:238:::0;:::o;57200:111::-;52155:12;;-1:-1:-1;;;;;52155:12:0;52141:10;:26;52133:67;;;;-1:-1:-1;;;52133:67:0;;;;;;;:::i;:::-;57272:17:::1;:33:::0;57200:111::o;40485:288::-;40583:13;40608:21;40632:10;:8;:10::i;:::-;40608:34;;40687:1;40669:7;40663:21;:25;:104;;;;;;;;;;;;;;;;;40724:7;40733:18;:7;:16;:18::i;:::-;40707:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40663:104;40649:118;40485:288;-1:-1:-1;;;40485:288:0:o;36448:96::-;36495:7;36520:14;36716:12;;-1:-1:-1;;36716:30:0;;36627:132;36520:14;:18;;36537:1;36520:18;:::i;59559:163::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;59657:42:0::1;59711:5;59657:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;59657:59:0::1;::::0;;59559:163::o;61719:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71806:220::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;71896:10:::1;::::0;::::1;::::0;::::1;;;:19;71888:59;;;::::0;-1:-1:-1;;;71888:59:0;;29617:2:1;71888:59:0::1;::::0;::::1;29599:21:1::0;29656:2;29636:18;;;29629:30;29695:29;29675:18;;;29668:57;29742:18;;71888:59:0::1;29415:351:1::0;71888:59:0::1;71958:32:::0;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;72001:10:0::1;:17:::0;;-1:-1:-1;;72001:17:0::1;;;::::0;;-1:-1:-1;;71806:220:0:o;57817:301::-;57896:7;57920:47;57947:19;57920:26;:47::i;:::-;57912:131;;;;-1:-1:-1;;;57912:131:0;;29973:2:1;57912:131:0;;;29955:21:1;30012:2;29992:18;;;29985:30;30051:34;30031:18;;;30024:62;30122:34;30102:18;;;30095:62;-1:-1:-1;;;30173:19:1;;;30166:38;30221:19;;57912:131:0;29771:475:1;57912:131:0;-1:-1:-1;;;;;;58057:42:0;;;;;:21;:42;;;;;:55;;;;57817:301::o;72151:92::-;72195:13;72224;72217:20;;;;;:::i;58484:304::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;58633:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;58633:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;58703:55:0::1;:79:::0;58484:304::o;54298:116::-;52155:12;;-1:-1:-1;;;;;52155:12:0;52141:10;:26;52133:67;;;;-1:-1:-1;;;52133:67:0;;;;;;;:::i;:::-;54383:1:::1;54358:22;:20;:22::i;:::-;:26;54350:35;;;::::0;::::1;;54394:14;:12;:14::i;66438:609::-:0;66536:20;;;;:29;66528:85;;;;-1:-1:-1;;;66528:85:0;;;;;;;:::i;:::-;66632:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;66661:11:0;;;;:19;;:11;:19;66632:48;66624:88;;;;-1:-1:-1;;;66624:88:0;;;;;;;:::i;:::-;66731:32;66745:3;66750:12;;66731:13;:32::i;:::-;66723:73;;;;-1:-1:-1;;;66723:73:0;;;;;;;:::i;:::-;66835:14;66815:16;:14;:16::i;:::-;:34;;66807:82;;;;-1:-1:-1;;;66807:82:0;;;;;;;:::i;:::-;66908:21;66922:3;66927:1;66908:13;:21::i;:::-;66900:82;;;;-1:-1:-1;;;66900:82:0;;;;;;;:::i;:::-;67015:24;67025:3;67030:1;67033:5;67015:9;:24::i;28426:234::-;25971:7;25998:6;-1:-1:-1;;;;;25998:6:0;24731:10;26145:23;26137:68;;;;-1:-1:-1;;;26137:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28500:22:0;::::1;28492:50;;;::::0;-1:-1:-1;;;28492:50:0;;22515:2:1;28492:50:0::1;::::0;::::1;22497:21:1::0;22554:2;22534:18;;;22527:30;-1:-1:-1;;;22573:18:1;;;22566:45;22628:18;;28492:50:0::1;22313:339:1::0;28492:50:0::1;28557:16;28564:8;28557:6;:16::i;:::-;28549:72;;;::::0;-1:-1:-1;;;28549:72:0;;30453:2:1;28549:72:0::1;::::0;::::1;30435:21:1::0;30492:2;30472:18;;;30465:30;30531:34;30511:18;;;30504:62;-1:-1:-1;;;30582:18:1;;;30575:41;30633:19;;28549:72:0::1;30251:407:1::0;28549:72:0::1;-1:-1:-1::0;;;;;28632:14:0::1;28649:5;28632:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;28632:22:0::1;::::0;;28426:234::o;53511:45::-;;;;;;;;;;;;26830:201;25971:7;25998:6;-1:-1:-1;;;;;25998:6:0;24731:10;26145:23;26137:68;;;;-1:-1:-1;;;26137:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26919:22:0;::::1;26911:73;;;::::0;-1:-1:-1;;;26911:73:0;;30865:2:1;26911:73:0::1;::::0;::::1;30847:21:1::0;30904:2;30884:18;;;30877:30;30943:34;30923:18;;;30916:62;-1:-1:-1;;;30994:18:1;;;30987:36;31040:19;;26911:73:0::1;30663:402:1::0;26911:73:0::1;26995:28;27014:8;26995:18;:28::i;60709:97::-:0;52155:12;;-1:-1:-1;;;;;52155:12:0;52141:10;:26;52133:67;;;;-1:-1:-1;;;52133:67:0;;;;;;;:::i;:::-;60793:7:::1;60769:21;:31:::0;60709:97::o;70233:125::-;29119:13;25998:6;;-1:-1:-1;;;;;25998:6:0;24731:10;29135:23;;;;29119:13;29180:20;;28799:188;:::i;29180:20::-;29165:35;;29215:8;:19;;;;29227:7;29215:19;29207:73;;;;-1:-1:-1;;;29207:73:0;;;;;;;:::i;:::-;70296:25:::1;:23;:25::i;70798:242::-:0;70876:4;70912:1;70901:7;:12;;70893:66;;;;-1:-1:-1;;;70893:66:0;;31272:2:1;70893:66:0;;;31254:21:1;31311:2;31291:18;;;31284:30;31350:34;31330:18;;;31323:62;-1:-1:-1;;;31401:18:1;;;31394:39;31450:19;;70893:66:0;31070:405:1;70893:66:0;71016:16;;71004:7;70978:23;70992:8;70978:13;:23::i;:::-;:33;;;;:::i;:::-;70977:55;;;70798:242;-1:-1:-1;;;70798:242:0:o;44653:129::-;44736:40;44746:2;44750:8;44760:11;44736:40;;;;;;;;;;;;:9;:40::i;44512:135::-;44569:4;44608:7;36175:1;44589:26;;:52;;;;-1:-1:-1;;44629:12:0;;-1:-1:-1;44619:22:0;44512:135::o;48396:172::-;48493:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48493:29:0;-1:-1:-1;;;;;48493:29:0;;;;;;;;;48534:28;;48493:24;;48534:28;;;;;;;48396:172;;;:::o;56717:88::-;56782:17;;56757:21;;:42;;;;;;;:::i;:::-;;;;-1:-1:-1;;56717:88:0:o;46765:1529::-;46862:35;46900:20;46912:7;46900:11;:20::i;:::-;46971:18;;46862:58;;-1:-1:-1;46929:22:0;;-1:-1:-1;;;;;46955:34:0;24731:10;-1:-1:-1;;;;;46955:34:0;;:81;;;-1:-1:-1;24731:10:0;47000:20;47012:7;47000:11;:20::i;:::-;-1:-1:-1;;;;;47000:36:0;;46955:81;:142;;;-1:-1:-1;47064:18:0;;47047:50;;24731:10;43296:186;:::i;47047:50::-;46929:169;;47123:17;47107:101;;;;-1:-1:-1;;;47107:101:0;;31682:2:1;47107:101:0;;;31664:21:1;31721:2;31701:18;;;31694:30;31760:34;31740:18;;;31733:62;-1:-1:-1;;;31811:18:1;;;31804:48;31869:19;;47107:101:0;31480:414:1;47107:101:0;47255:4;-1:-1:-1;;;;;47233:26:0;:13;:18;;;-1:-1:-1;;;;;47233:26:0;;47217:98;;;;-1:-1:-1;;;47217:98:0;;32101:2:1;47217:98:0;;;32083:21:1;32140:2;32120:18;;;32113:30;32179:34;32159:18;;;32152:62;-1:-1:-1;;;32230:18:1;;;32223:36;32276:19;;47217:98:0;31899:402:1;47217:98:0;-1:-1:-1;;;;;47330:16:0;;47322:66;;;;-1:-1:-1;;;47322:66:0;;32508:2:1;47322:66:0;;;32490:21:1;32547:2;32527:18;;;32520:30;32586:34;32566:18;;;32559:62;-1:-1:-1;;;32637:18:1;;;32630:35;32682:19;;47322:66:0;32306:401:1;47322:66:0;47497:49;47514:1;47518:7;47527:13;:18;;;47497:8;:49::i;:::-;-1:-1:-1;;;;;47555:18:0;;;;;;:12;:18;;;;;:31;;47585:1;;47555:18;:31;;47585:1;;-1:-1:-1;;;;;47555:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;47555:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47593:16:0;;-1:-1:-1;47593:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;47593:16:0;;:29;;-1:-1:-1;;47593:29:0;;:::i;:::-;;;-1:-1:-1;;;;;47593:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47652:43:0;;;;;;;;-1:-1:-1;;;;;47652:43:0;;;;;-1:-1:-1;;;;;47678:15:0;47652:43;;;;;;;;;-1:-1:-1;47629:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;47629:66:0;-1:-1:-1;;;;;;47629:66:0;;;;;;;;;;;47945:11;47641:7;-1:-1:-1;47945:11:0;:::i;:::-;48008:1;47967:24;;;:11;:24;;;;;:29;47923:33;;-1:-1:-1;;;;;;47967:29:0;47963:236;;48025:20;48033:11;48025:7;:20::i;:::-;48021:171;;;48085:97;;;;;;;;48112:18;;-1:-1:-1;;;;;48085:97:0;;;;;;48143:28;;;;-1:-1:-1;;;;;48085:97:0;;;;;;;;;-1:-1:-1;48058:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;48058:124:0;-1:-1:-1;;;;;;48058:124:0;;;;;;;;;;;;48021:171;48231:7;48227:2;-1:-1:-1;;;;;48212:27:0;48221:4;-1:-1:-1;;;;;48212:27:0;;;;;;;;;;;48246:42;67322:813;55080:371;55147:21;;55178:12;55175:28;;55194:7;55080:371::o;55175:28::-;55219:6;55215:193;55233:28;;55229:1;:32;55215:193;;;55280:120;55305:25;55331:1;55305:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55305:28:0;55386:3;55359:20;55380:1;55359:23;;;;;;;;:::i;:::-;;;;;;;;;55349:7;:33;;;;:::i;:::-;55348:41;;;;:::i;:::-;55280:10;:120::i;:::-;55263:3;;;;:::i;:::-;;;;55215:193;;;-1:-1:-1;;55438:7:0;55414:21;:31;55080:371::o;30320:202::-;30453:4;30508;30479:25;30492:5;30499:4;30479:12;:25::i;:::-;:33;;30320:202;-1:-1:-1;;;;30320:202:0:o;38993:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;39117:7:0;;36175:1;39158:23;;:46;;;;;39192:12;;39185:4;:19;39158:46;39154:706;;;39221:31;39255:17;;;:11;:17;;;;;;;;;39221:51;;;;;;;;;-1:-1:-1;;;;;39221:51:0;;;;;-1:-1:-1;;;39221:51:0;;;-1:-1:-1;;;;;39221:51:0;;;;;;;;39291:28;39287:85;;39347:9;38993:945;-1:-1:-1;;;38993:945:0:o;39287:85::-;-1:-1:-1;;;39668:6:0;39705:17;;;;:11;:17;;;;;;;;;39693:29;;;;;;;;;-1:-1:-1;;;;;39693:29:0;;;;;-1:-1:-1;;;39693:29:0;;;-1:-1:-1;;;;;39693:29:0;;;;;;;;39745:28;39741:93;;39805:9;38993:945;-1:-1:-1;;;38993:945:0:o;39741:93::-;39636:213;;39154:706;39875:57;;-1:-1:-1;;;39875:57:0;;33680:2:1;39875:57:0;;;33662:21:1;33719:2;33699:18;;;33692:30;33758:34;33738:18;;;33731:62;-1:-1:-1;;;33809:18:1;;;33802:45;33864:19;;39875:57:0;33478:411:1;27189:191:0;27263:16;27282:6;;-1:-1:-1;;;;;27299:17:0;;;-1:-1:-1;;;;;;27299:17:0;;;;;;27332:40;;27282:6;;;;;;;27332:40;;27263:16;27332:40;27252:128;27189:191;:::o;54420:279::-;54461:15;54479:22;:20;:22::i;:::-;54461:40;;54522:6;54518:176;54536:19;;54532:1;:23;54518:176;;;54576:108;54603:16;54620:1;54603:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54603:19:0;54668:3;54650:11;54662:1;54650:14;;;;;;;;:::i;54576:108::-;54557:3;;;;:::i;:::-;;;;54518:176;;50185:690;50322:4;-1:-1:-1;;;;;50339:13:0;;2594:19;:23;50335:535;;50378:72;;-1:-1:-1;;;50378:72:0;;-1:-1:-1;;;;;50378:36:0;;;;;:72;;24731:10;;50429:4;;50435:7;;50444:5;;50378:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50378:72:0;;;;;;;;-1:-1:-1;;50378:72:0;;;;;;;;;;;;:::i;:::-;;;50365:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50609:13:0;;50605:215;;50642:61;;-1:-1:-1;;;50642:61:0;;;;;;;:::i;50605:215::-;50788:6;50782:13;50773:6;50769:2;50765:15;50758:38;50365:464;-1:-1:-1;;;;;;50500:55:0;-1:-1:-1;;;50500:55:0;;-1:-1:-1;50493:62:0;;50335:535;-1:-1:-1;50858:4:0;50335:535;50185:690;;;;;;:::o;19482:723::-;19538:13;19759:10;19755:53;;-1:-1:-1;;19786:10:0;;;;;;;;;;;;-1:-1:-1;;;19786:10:0;;;;;19482:723::o;19755:53::-;19833:5;19818:12;19874:78;19881:9;;19874:78;;19907:8;;;;:::i;:::-;;-1:-1:-1;19930:10:0;;-1:-1:-1;19938:2:0;19930:10;;:::i;:::-;;;19874:78;;;19962:19;19994:6;-1:-1:-1;;;;;19984:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19984:17:0;;19962:39;;20012:154;20019:10;;20012:154;;20046:11;20056:1;20046:11;;:::i;:::-;;-1:-1:-1;20115:10:0;20123:2;20115:5;:10;:::i;:::-;20102:24;;:2;:24;:::i;:::-;20089:39;;20072:6;20079;20072:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20072:56:0;;;;;;;;-1:-1:-1;20143:11:0;20152:2;20143:11;;:::i;:::-;;;20012:154;;38747:240;38808:7;-1:-1:-1;;;;;38840:19:0;;38824:102;;;;-1:-1:-1;;;38824:102:0;;34961:2:1;38824:102:0;;;34943:21:1;35000:2;34980:18;;;34973:30;35039:34;35019:18;;;35012:62;-1:-1:-1;;;35090:18:1;;;35083:47;35147:19;;38824:102:0;34759:413:1;38824:102:0;-1:-1:-1;;;;;;38948:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38948:32:0;;-1:-1:-1;;;;;38948:32:0;;38747:240::o;45111:1434::-;45262:12;;-1:-1:-1;;;;;45289:16:0;;45281:62;;;;-1:-1:-1;;;45281:62:0;;35379:2:1;45281:62:0;;;35361:21:1;35418:2;35398:18;;;35391:30;35457:34;35437:18;;;35430:62;-1:-1:-1;;;35508:18:1;;;35501:31;35549:19;;45281:62:0;35177:397:1;45281:62:0;45480:21;45488:12;45480:7;:21::i;:::-;45479:22;45471:64;;;;-1:-1:-1;;;45471:64:0;;35781:2:1;45471:64:0;;;35763:21:1;35820:2;35800:18;;;35793:30;35859:31;35839:18;;;35832:59;35908:18;;45471:64:0;35579:353:1;45471:64:0;45621:20;45617:116;;45674:12;;45662:8;:24;;45654:71;;;;-1:-1:-1;;;45654:71:0;;36139:2:1;45654:71:0;;;36121:21:1;36178:2;36158:18;;;36151:30;36217:34;36197:18;;;36190:62;-1:-1:-1;;;36268:18:1;;;36261:32;36310:19;;45654:71:0;35937:398:1;45654:71:0;-1:-1:-1;;;;;45844:16:0;;45811:30;45844:16;;;:12;:16;;;;;;;;;45811:49;;;;;;;;;-1:-1:-1;;;;;45811:49:0;;;;;-1:-1:-1;;;45811:49:0;;;;;;;;;;;45886:139;;;;;;;;45906:19;;45811:49;;45886:139;;;45906:39;;45936:8;;45906:39;:::i;:::-;-1:-1:-1;;;;;45886:139:0;;;;;45982:11;:35;;46008:8;45982:35;;;45996:1;45982:35;45954:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;45886:139:0;;;;;;-1:-1:-1;;;;;45867:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;45867:158:0;;;;;;;;;;;;46060:43;;;;;;;;;;-1:-1:-1;;;;;46086:15:0;46060:43;;;;;;;;46032:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;46032:71:0;-1:-1:-1;;;;;;46032:71:0;;;;;;;;;;;;;;;;;;46044:12;;46156:281;46180:8;46176:1;:12;46156:281;;;46209:38;;46234:12;;-1:-1:-1;;;;;46209:38:0;;;46226:1;;46209:38;;46226:1;;46209:38;46274:59;46305:1;46309:2;46313:12;46327:5;46274:22;:59::i;:::-;46256:150;;;;-1:-1:-1;;;46256:150:0;;;;;;;:::i;:::-;46415:14;;;;:::i;:::-;;;;46190:3;;;;;:::i;:::-;;;;46156:281;;;-1:-1:-1;46445:12:0;:27;-1:-1:-1;;;;;;45111:1434:0:o;54707:175::-;54780:12;54798:8;-1:-1:-1;;;;;54798:13:0;54819:7;54798:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54779:52;;;54848:7;54840:36;;;;-1:-1:-1;;;54840:36:0;;36752:2:1;54840:36:0;;;36734:21:1;36791:2;36771:18;;;36764:30;-1:-1:-1;;;36810:18:1;;;36803:46;36866:18;;54840:36:0;36550:340:1;30894:701:0;30977:7;31022:4;30977:7;31039:515;31063:5;:12;31059:1;:16;31039:515;;;31099:20;31122:5;31128:1;31122:8;;;;;;;;:::i;:::-;;;;;;;31099:31;;31167:12;31151;:28;31147:394;;31673:13;31727:15;;;31765:4;31758:15;;;31814:4;31798:21;;31283:57;;31147:394;;;31673:13;31727:15;;;31765:4;31758:15;;;31814:4;31798:21;;31466:57;;31147:394;-1:-1:-1;31077:3:0;;;;:::i;:::-;;;;31039:515;;;-1:-1:-1;31573:12:0;30894:701;-1:-1:-1;;;30894:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;589:131::-;-1:-1:-1;;;;;;663:32:1;;653:43;;643:71;;710:1;707;700:12;725:245;783:6;836:2;824:9;815:7;811:23;807:32;804:52;;;852:1;849;842:12;804:52;891:9;878:23;910:30;934:5;910:30;:::i;1167:173::-;1235:20;;-1:-1:-1;;;;;1284:31:1;;1274:42;;1264:70;;1330:1;1327;1320:12;1264:70;1167:173;;;:::o;1345:186::-;1404:6;1457:2;1445:9;1436:7;1432:23;1428:32;1425:52;;;1473:1;1470;1463:12;1425:52;1496:29;1515:9;1496:29;:::i;1536:254::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1704:29;1723:9;1704:29;:::i;:::-;1694:39;1780:2;1765:18;;;;1752:32;;-1:-1:-1;;;1536:254:1:o;1795:258::-;1867:1;1877:113;1891:6;1888:1;1885:13;1877:113;;;1967:11;;;1961:18;1948:11;;;1941:39;1913:2;1906:10;1877:113;;;2008:6;2005:1;2002:13;1999:48;;;-1:-1:-1;;2043:1:1;2025:16;;2018:27;1795:258::o;2058:::-;2100:3;2138:5;2132:12;2165:6;2160:3;2153:19;2181:63;2237:6;2230:4;2225:3;2221:14;2214:4;2207:5;2203:16;2181:63;:::i;:::-;2298:2;2277:15;-1:-1:-1;;2273:29:1;2264:39;;;;2305:4;2260:50;;2058:258;-1:-1:-1;;2058:258:1:o;2321:220::-;2470:2;2459:9;2452:21;2433:4;2490:45;2531:2;2520:9;2516:18;2508:6;2490:45;:::i;2546:367::-;2609:8;2619:6;2673:3;2666:4;2658:6;2654:17;2650:27;2640:55;;2691:1;2688;2681:12;2640:55;-1:-1:-1;2714:20:1;;-1:-1:-1;;;;;2746:30:1;;2743:50;;;2789:1;2786;2779:12;2743:50;2826:4;2818:6;2814:17;2802:29;;2886:3;2879:4;2869:6;2866:1;2862:14;2854:6;2850:27;2846:38;2843:47;2840:67;;;2903:1;2900;2893:12;2840:67;2546:367;;;;;:::o;2918:654::-;3031:6;3039;3047;3055;3063;3116:3;3104:9;3095:7;3091:23;3087:33;3084:53;;;3133:1;3130;3123:12;3084:53;3156:29;3175:9;3156:29;:::i;:::-;3146:39;;3232:2;3221:9;3217:18;3204:32;3194:42;;3287:2;3276:9;3272:18;3259:32;-1:-1:-1;;;;;3306:6:1;3303:30;3300:50;;;3346:1;3343;3336:12;3300:50;3385:70;3447:7;3438:6;3427:9;3423:22;3385:70;:::i;:::-;3474:8;;-1:-1:-1;3359:96:1;-1:-1:-1;3528:38:1;;-1:-1:-1;3562:2:1;3547:18;;3528:38;:::i;:::-;3518:48;;2918:654;;;;;;;;:::o;3577:328::-;3654:6;3662;3670;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3762:29;3781:9;3762:29;:::i;:::-;3752:39;;3810:38;3844:2;3833:9;3829:18;3810:38;:::i;:::-;3800:48;;3895:2;3884:9;3880:18;3867:32;3857:42;;3577:328;;;;;:::o;4092:511::-;4187:6;4195;4203;4256:2;4244:9;4235:7;4231:23;4227:32;4224:52;;;4272:1;4269;4262:12;4224:52;4295:29;4314:9;4295:29;:::i;:::-;4285:39;;4375:2;4364:9;4360:18;4347:32;-1:-1:-1;;;;;4394:6:1;4391:30;4388:50;;;4434:1;4431;4424:12;4388:50;4473:70;4535:7;4526:6;4515:9;4511:22;4473:70;:::i;:::-;4092:511;;4562:8;;-1:-1:-1;4447:96:1;;-1:-1:-1;;;;4092:511:1:o;4797:579::-;4901:6;4909;4917;4925;4978:2;4966:9;4957:7;4953:23;4949:32;4946:52;;;4994:1;4991;4984:12;4946:52;5017:29;5036:9;5017:29;:::i;:::-;5007:39;;5093:2;5082:9;5078:18;5065:32;5055:42;;5148:2;5137:9;5133:18;5120:32;-1:-1:-1;;;;;5167:6:1;5164:30;5161:50;;;5207:1;5204;5197:12;5161:50;5246:70;5308:7;5299:6;5288:9;5284:22;5246:70;:::i;:::-;4797:579;;;;-1:-1:-1;5335:8:1;-1:-1:-1;;;;4797:579:1:o;5566:592::-;5637:6;5645;5698:2;5686:9;5677:7;5673:23;5669:32;5666:52;;;5714:1;5711;5704:12;5666:52;5754:9;5741:23;-1:-1:-1;;;;;5824:2:1;5816:6;5813:14;5810:34;;;5840:1;5837;5830:12;5810:34;5878:6;5867:9;5863:22;5853:32;;5923:7;5916:4;5912:2;5908:13;5904:27;5894:55;;5945:1;5942;5935:12;5894:55;5985:2;5972:16;6011:2;6003:6;6000:14;5997:34;;;6027:1;6024;6017:12;5997:34;6072:7;6067:2;6058:6;6054:2;6050:15;6046:24;6043:37;6040:57;;;6093:1;6090;6083:12;6040:57;6124:2;6116:11;;;;;6146:6;;-1:-1:-1;5566:592:1;;-1:-1:-1;;;;5566:592:1:o;6163:328::-;6240:6;6248;6256;6309:2;6297:9;6288:7;6284:23;6280:32;6277:52;;;6325:1;6322;6315:12;6277:52;6348:29;6367:9;6348:29;:::i;:::-;6338:39;;6424:2;6413:9;6409:18;6396:32;6386:42;;6447:38;6481:2;6470:9;6466:18;6447:38;:::i;:::-;6437:48;;6163:328;;;;;:::o;6496:118::-;6582:5;6575:13;6568:21;6561:5;6558:32;6548:60;;6604:1;6601;6594:12;6619:315;6684:6;6692;6745:2;6733:9;6724:7;6720:23;6716:32;6713:52;;;6761:1;6758;6751:12;6713:52;6784:29;6803:9;6784:29;:::i;:::-;6774:39;;6863:2;6852:9;6848:18;6835:32;6876:28;6898:5;6876:28;:::i;:::-;6923:5;6913:15;;;6619:315;;;;;:::o;7306:127::-;7367:10;7362:3;7358:20;7355:1;7348:31;7398:4;7395:1;7388:15;7422:4;7419:1;7412:15;7438:631;7502:5;-1:-1:-1;;;;;7573:2:1;7565:6;7562:14;7559:40;;;7579:18;;:::i;:::-;7654:2;7648:9;7622:2;7708:15;;-1:-1:-1;;7704:24:1;;;7730:2;7700:33;7696:42;7684:55;;;7754:18;;;7774:22;;;7751:46;7748:72;;;7800:18;;:::i;:::-;7840:10;7836:2;7829:22;7869:6;7860:15;;7899:6;7891;7884:22;7939:3;7930:6;7925:3;7921:16;7918:25;7915:45;;;7956:1;7953;7946:12;7915:45;8006:6;8001:3;7994:4;7986:6;7982:17;7969:44;8061:1;8054:4;8045:6;8037;8033:19;8029:30;8022:41;;;;7438:631;;;;;:::o;8074:666::-;8169:6;8177;8185;8193;8246:3;8234:9;8225:7;8221:23;8217:33;8214:53;;;8263:1;8260;8253:12;8214:53;8286:29;8305:9;8286:29;:::i;:::-;8276:39;;8334:38;8368:2;8357:9;8353:18;8334:38;:::i;:::-;8324:48;;8419:2;8408:9;8404:18;8391:32;8381:42;;8474:2;8463:9;8459:18;8446:32;-1:-1:-1;;;;;8493:6:1;8490:30;8487:50;;;8533:1;8530;8523:12;8487:50;8556:22;;8609:4;8601:13;;8597:27;-1:-1:-1;8587:55:1;;8638:1;8635;8628:12;8587:55;8661:73;8726:7;8721:2;8708:16;8703:2;8699;8695:11;8661:73;:::i;:::-;8651:83;;;8074:666;;;;;;;:::o;8745:450::-;8814:6;8867:2;8855:9;8846:7;8842:23;8838:32;8835:52;;;8883:1;8880;8873:12;8835:52;8923:9;8910:23;-1:-1:-1;;;;;8948:6:1;8945:30;8942:50;;;8988:1;8985;8978:12;8942:50;9011:22;;9064:4;9056:13;;9052:27;-1:-1:-1;9042:55:1;;9093:1;9090;9083:12;9042:55;9116:73;9181:7;9176:2;9163:16;9158:2;9154;9150:11;9116:73;:::i;9200:383::-;9274:6;9282;9290;9343:2;9331:9;9322:7;9318:23;9314:32;9311:52;;;9359:1;9356;9349:12;9311:52;9382:29;9401:9;9382:29;:::i;:::-;9372:39;;9461:2;9450:9;9446:18;9433:32;9474:28;9496:5;9474:28;:::i;:::-;9200:383;;9521:5;;-1:-1:-1;;;9573:2:1;9558:18;;;;9545:32;;9200:383::o;9588:260::-;9656:6;9664;9717:2;9705:9;9696:7;9692:23;9688:32;9685:52;;;9733:1;9730;9723:12;9685:52;9756:29;9775:9;9756:29;:::i;:::-;9746:39;;9804:38;9838:2;9827:9;9823:18;9804:38;:::i;:::-;9794:48;;9588:260;;;;;:::o;9853:407::-;10055:2;10037:21;;;10094:2;10074:18;;;10067:30;10133:34;10128:2;10113:18;;10106:62;-1:-1:-1;;;10199:2:1;10184:18;;10177:41;10250:3;10235:19;;9853:407::o;10265:350::-;10467:2;10449:21;;;10506:2;10486:18;;;10479:30;10545:28;10540:2;10525:18;;10518:56;10606:2;10591:18;;10265:350::o;10620:410::-;10822:2;10804:21;;;10861:2;10841:18;;;10834:30;10900:34;10895:2;10880:18;;10873:62;-1:-1:-1;;;10966:2:1;10951:18;;10944:44;11020:3;11005:19;;10620:410::o;11035:401::-;11237:2;11219:21;;;11276:2;11256:18;;;11249:30;11315:34;11310:2;11295:18;;11288:62;-1:-1:-1;;;11381:2:1;11366:18;;11359:35;11426:3;11411:19;;11035:401::o;11441:412::-;11643:2;11625:21;;;11682:2;11662:18;;;11655:30;11721:34;11716:2;11701:18;;11694:62;-1:-1:-1;;;11787:2:1;11772:18;;11765:46;11843:3;11828:19;;11441:412::o;11858:127::-;11919:10;11914:3;11910:20;11907:1;11900:31;11950:4;11947:1;11940:15;11974:4;11971:1;11964:15;11990:128;12030:3;12061:1;12057:6;12054:1;12051:13;12048:39;;;12067:18;;:::i;:::-;-1:-1:-1;12103:9:1;;11990:128::o;12123:399::-;12325:2;12307:21;;;12364:2;12344:18;;;12337:30;12403:34;12398:2;12383:18;;12376:62;-1:-1:-1;;;12469:2:1;12454:18;;12447:33;12512:3;12497:19;;12123:399::o;12527:380::-;12606:1;12602:12;;;;12649;;;12670:61;;12724:4;12716:6;12712:17;12702:27;;12670:61;12777:2;12769:6;12766:14;12746:18;12743:38;12740:161;;;12823:10;12818:3;12814:20;12811:1;12804:31;12858:4;12855:1;12848:15;12886:4;12883:1;12876:15;12740:161;;12527:380;;;:::o;14732:351::-;14934:2;14916:21;;;14973:2;14953:18;;;14946:30;15012:29;15007:2;14992:18;;14985:57;15074:2;15059:18;;14732:351::o;15088:352::-;15290:2;15272:21;;;15329:2;15309:18;;;15302:30;15368;15363:2;15348:18;;15341:58;15431:2;15416:18;;15088:352::o;15445:405::-;15647:2;15629:21;;;15686:2;15666:18;;;15659:30;15725:34;15720:2;15705:18;;15698:62;-1:-1:-1;;;15791:2:1;15776:18;;15769:39;15840:3;15825:19;;15445:405::o;15855:168::-;15895:7;15961:1;15957;15953:6;15949:14;15946:1;15943:21;15938:1;15931:9;15924:17;15920:45;15917:71;;;15968:18;;:::i;:::-;-1:-1:-1;16008:9:1;;15855:168::o;16028:184::-;16098:6;16151:2;16139:9;16130:7;16126:23;16122:32;16119:52;;;16167:1;16164;16157:12;16119:52;-1:-1:-1;16190:16:1;;16028:184;-1:-1:-1;16028:184:1:o;16217:419::-;16419:2;16401:21;;;16458:2;16438:18;;;16431:30;16497:34;16492:2;16477:18;;16470:62;16568:25;16563:2;16548:18;;16541:53;16626:3;16611:19;;16217:419::o;16950:469::-;17152:2;17134:21;;;17191:2;17171:18;;;17164:30;17230:34;17225:2;17210:18;;17203:62;17301:34;17296:2;17281:18;;17274:62;-1:-1:-1;;;17367:3:1;17352:19;;17345:32;17409:3;17394:19;;16950:469::o;17424:400::-;17626:2;17608:21;;;17665:2;17645:18;;;17638:30;17704:34;17699:2;17684:18;;17677:62;-1:-1:-1;;;17770:2:1;17755:18;;17748:34;17814:3;17799:19;;17424:400::o;18209:245::-;18276:6;18329:2;18317:9;18308:7;18304:23;18300:32;18297:52;;;18345:1;18342;18335:12;18297:52;18377:9;18371:16;18396:28;18418:5;18396:28;:::i;18459:405::-;18661:2;18643:21;;;18700:2;18680:18;;;18673:30;18739:34;18734:2;18719:18;;18712:62;-1:-1:-1;;;18805:2:1;18790:18;;18783:39;18854:3;18839:19;;18459:405::o;18869:352::-;19071:2;19053:21;;;19110:2;19090:18;;;19083:30;19149;19144:2;19129:18;;19122:58;19212:2;19197:18;;18869:352::o;20045:135::-;20084:3;-1:-1:-1;;20105:17:1;;20102:43;;;20125:18;;:::i;:::-;-1:-1:-1;20172:1:1;20161:13;;20045:135::o;21186:405::-;21388:2;21370:21;;;21427:2;21407:18;;;21400:30;21466:34;21461:2;21446:18;;21439:62;-1:-1:-1;;;21532:2:1;21517:18;;21510:39;21581:3;21566:19;;21186:405::o;21952:356::-;22154:2;22136:21;;;22173:18;;;22166:30;22232:34;22227:2;22212:18;;22205:62;22299:2;22284:18;;21952:356::o;23063:125::-;23103:4;23131:1;23128;23125:8;23122:34;;;23136:18;;:::i;:::-;-1:-1:-1;23173:9:1;;23063:125::o;27968:415::-;28170:2;28152:21;;;28209:2;28189:18;;;28182:30;28248:34;28243:2;28228:18;;28221:62;-1:-1:-1;;;28314:2:1;28299:18;;28292:49;28373:3;28358:19;;27968:415::o;28808:127::-;28869:10;28864:3;28860:20;28857:1;28850:31;28900:4;28897:1;28890:15;28924:4;28921:1;28914:15;28940:470;29119:3;29157:6;29151:13;29173:53;29219:6;29214:3;29207:4;29199:6;29195:17;29173:53;:::i;:::-;29289:13;;29248:16;;;;29311:57;29289:13;29248:16;29345:4;29333:17;;29311:57;:::i;:::-;29384:20;;28940:470;-1:-1:-1;;;;28940:470:1:o;32712:246::-;32752:4;-1:-1:-1;;;;;32865:10:1;;;;32835;;32887:12;;;32884:38;;;32902:18;;:::i;:::-;32939:13;;32712:246;-1:-1:-1;;;32712:246:1:o;32963:253::-;33003:3;-1:-1:-1;;;;;33092:2:1;33089:1;33085:10;33122:2;33119:1;33115:10;33153:3;33149:2;33145:12;33140:3;33137:21;33134:47;;;33161:18;;:::i;33221:127::-;33282:10;33277:3;33273:20;33270:1;33263:31;33313:4;33310:1;33303:15;33337:4;33334:1;33327:15;33353:120;33393:1;33419;33409:35;;33424:18;;:::i;:::-;-1:-1:-1;33458:9:1;;33353:120::o;33894:489::-;-1:-1:-1;;;;;34163:15:1;;;34145:34;;34215:15;;34210:2;34195:18;;34188:43;34262:2;34247:18;;34240:34;;;34310:3;34305:2;34290:18;;34283:31;;;34088:4;;34331:46;;34357:19;;34349:6;34331:46;:::i;:::-;34323:54;33894:489;-1:-1:-1;;;;;;33894:489:1:o;34388:249::-;34457:6;34510:2;34498:9;34489:7;34485:23;34481:32;34478:52;;;34526:1;34523;34516:12;34478:52;34558:9;34552:16;34577:30;34601:5;34577:30;:::i;34642:112::-;34674:1;34700;34690:35;;34705:18;;:::i;:::-;-1:-1:-1;34739:9:1;;34642:112::o

Swarm Source

ipfs://a29e88a836d9f6a79ec6b8199e570d62fe7ff0e8104b74f0e5d9ecb6acf9a1a1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.