ETH Price: $3,274.72 (-4.13%)
Gas: 6 Gwei

Token

troll y00t club (ty00t)
 

Overview

Max Total Supply

7,777 ty00t

Holders

637

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
allreasons.eth
Balance
10 ty00t
0x72bE0aeE75AFEb770Ae7565838FDdA70222713A6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
y00ts

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: magic.sol

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

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

/**
 *Submitted for verification at Etherscan.io on 2022-08-31
*/

//-------------DEPENDENCIES--------------------------//

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
* Teams is a contract implementation to extend upon Ownable that allows multiple controllers
* of a single contract to modify specific mint settings but not have overall ownership of the contract.
* This will easily allow cross-collaboration via Rampp.xyz.
**/
abstract contract Teams is Ownable{
  mapping (address => bool) internal team;

  /**
  * @dev Adds an address to the team. Allows them to execute protected functions
  * @param _address the ETH address to add, cannot be 0x and cannot be in team already
  **/
  function addToTeam(address _address) public onlyOwner {
    require(_address != address(0), "Invalid address");
    require(!inTeam(_address), "This address is already in your team.");
  
    team[_address] = true;
  }

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

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

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


  
  pragma solidity ^0.8.0;

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

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

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


  // File: Allowlist.sol

  pragma solidity ^0.8.0;

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

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

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

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

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

    function disableAllowlistOnlyMode() public onlyTeamOrOwner {
        onlyAllowlistMode = false;
    }
  }
  
  
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 * 
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex;

  uint256 public immutable collectionSize;
  uint256 public maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  /**
   * @dev
   * maxBatchSize refers to how much a minter can mint at a time.
   * collectionSize_ refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
    currentIndex = _startTokenId();
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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



  
abstract contract Ramppable {
  address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;

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


  
  
interface IERC20 {
  function transfer(address _to, uint256 _amount) external returns (bool);
  function balanceOf(address account) external view returns (uint256);
}

abstract contract Withdrawable is Teams, Ramppable {
  address[] public payableAddresses = [RAMPPADDRESS,0x8900a69d2c726051928F9F0f2A27B2CC6432C9a2];
  uint256[] public payableFees = [5,95];
  uint256 public payableAddressCount = 2;

  function withdrawAll() public onlyTeamOrOwner {
      require(address(this).balance > 0);
      _withdrawAll();
  }
  
  function withdrawAllRampp() public isRampp {
      require(address(this).balance > 0);
      _withdrawAll();
  }

  function _withdrawAll() private {
      uint256 balance = address(this).balance;
      
      for(uint i=0; i < payableAddressCount; i++ ) {
          _widthdraw(
              payableAddresses[i],
              (balance * payableFees[i]) / 100
          );
      }
  }
  
  function _widthdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{value: _amount}("");
      require(success, "Transfer failed.");
  }

  /**
    * @dev Allow contract owner to withdraw ERC-20 balance from contract
    * while still splitting royalty payments to all other team members.
    * in the event ERC-20 tokens are paid to the contract.
    * @param _tokenContract contract of ERC-20 token to withdraw
    * @param _amount balance to withdraw according to balanceOf of ERC-20 token
    */
  function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyTeamOrOwner {
    require(_amount > 0);
    IERC20 tokenContract = IERC20(_tokenContract);
    require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens');

    for(uint i=0; i < payableAddressCount; i++ ) {
        tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100);
    }
  }

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


  
// File: isFeeable.sol
abstract contract Feeable is Teams {
  uint256 public PRICE = 0 ether;

  function setPrice(uint256 _feeInWei) public onlyTeamOrOwner {
    PRICE = _feeInWei;
  }

  function getPrice(uint256 _count) public view returns (uint256) {
    return PRICE * _count;
  }
}

  
  
abstract contract RamppERC721A is 
    Ownable,
    Teams,
    ERC721A,
    Withdrawable,
    ReentrancyGuard 
    , Feeable 
    , Allowlist 
    
{
  constructor(
    string memory tokenName,
    string memory tokenSymbol
  ) ERC721A(tokenName, tokenSymbol, 2, 7777) { }
    uint8 public CONTRACT_VERSION = 2;
    string public _baseTokenURI = "";

    bool public mintingOpen = true;
    
    
    uint256 public MAX_WALLET_MINTS = 5000;

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

  
    /////////////// GENERIC MINT FUNCTIONS
    /**
    * @dev Mints a single token to an address.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintTo(address _to) public payable {
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 10000");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(canMintAmount(_to, 200), "Wallet address is over the maximum allowed mints");
        require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!");
        
        _safeMint(_to, 1, false);
    }

    /**
    * @dev Mints a token to an address with a tokenURI.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultiple(address _to, uint256 _amount) public payable {
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 88888");
        require(msg.value == getPrice(_amount), "Value below required mint fee for amount");

        _safeMint(_to, _amount, false);
    }

    function openMinting() public onlyTeamOrOwner {
        mintingOpen = true;
    }

    function stopMinting() public onlyTeamOrOwner {
        mintingOpen = false;
    }

  
    ///////////// ALLOWLIST MINTING FUNCTIONS

    /**
    * @dev Mints a token to an address with a tokenURI for allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintToAL(address _to, bytes32[] calldata _merkleProof) public payable {
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 8888");
        require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!");
        

        _safeMint(_to, 1, false);
    }

    /**
    * @dev Mints a token to an address with a tokenURI for allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable {
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");

        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 8888");
        require(msg.value == getPrice(_amount), "Value below required mint fee for amount");
        

        _safeMint(_to, _amount, false);
    }

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

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


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

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

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

  

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

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

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

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


  
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract y00ts is RamppERC721A {
    constructor() RamppERC721A("troll y00t club", "ty00t"){}
}

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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600a55600b80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a0908152738900a69d2c726051928f9f0f2a27b2cc6432c9a260c0526200005f90600c906002620002a6565b506040805180820190915260058152605f60208201526200008590600d90600262000310565b506002600e55600060108190556012805461ffff19166102001790556040805160208101909152908152601390620000be90826200040f565b506014805460ff19166001179055611388601555348015620000df57600080fd5b506040518060400160405280600f81526020016e3a3937b636103c98183a1031b63ab160891b815250604051806040016040528060058152602001641d1e4c0c1d60da1b81525081816002611e6162000147620001416200025260201b60201c565b62000256565b60008111620001b45760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002165760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001ab565b60046200022485826200040f565b5060056200023384826200040f565b50600391909155608052505060016002819055600f5550620004db9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620002fe579160200282015b82811115620002fe57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002c7565b506200030c92915062000353565b5090565b828054828255906000526020600020908101928215620002fe579160200282015b82811115620002fe578251829060ff1690559160200191906001019062000331565b5b808211156200030c576000815560010162000354565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200039557607f821691505b602082108103620003b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040a57600081815260208120601f850160051c81016020861015620003e55750805b601f850160051c820191505b818110156200040657828155600101620003f1565b5050505b505050565b81516001600160401b038111156200042b576200042b6200036a565b62000443816200043c845462000380565b84620003bc565b602080601f8311600181146200047b5760008415620004625750858301515b600019600386901b1c1916600185901b17855562000406565b600085815260208120601f198616915b82811015620004ac578886015182559484019460019091019084016200048b565b5085821015620004cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051613da66200051a6000396000818161063001528181610c7501528181611303015281816114720152818161195b01526123bd0152613da66000f3fe6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff366004613393565b610b32565b60405190151581526020016103db565b6104276104223660046133cc565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db9190613446565b34801561045757600080fd5b5061046b610466366004613459565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e3660046133cc565b610e17565b3480156104af57600080fd5b506104276104be366004613472565b610f2e565b3480156104cf57600080fd5b506103d16104de366004613459565b610f39565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a3660046133cc565b610f5a565b34801561053b57600080fd5b5061040461054a3660046134f9565b6110cf565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e36600461354b565b6111a7565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138c565b3480156105ca57600080fd5b506104276105d93660046133cc565b6113dd565b3480156105ea57600080fd5b506104276105f9366004613472565b6114ce565b34801561060a57600080fd5b506104276106193660046135a4565b6114e9565b34801561062a57600080fd5b506103d17f000000000000000000000000000000000000000000000000000000000000000081565b34801561065e57600080fd5b5061042761066d366004613459565b6115e6565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a3366004613459565b611681565b3480156106b457600080fd5b506104276106c3366004613459565b6116e9565b3480156106d457600080fd5b506104276106e33660046135bf565b611784565b3480156106f457600080fd5b5061046b610703366004613459565b6117db565b34801561071457600080fd5b506104276117ed565b34801561072957600080fd5b50610427611841565b34801561073e57600080fd5b506103d161074d3660046135a4565b611892565b34801561075e57600080fd5b50610427611923565b6104276107753660046135a4565b611959565b34801561078657600080fd5b50610427611a71565b34801561079b57600080fd5b50610427611ac5565b3480156107b057600080fd5b5061046b6107bf366004613459565b611b1d565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d366004613459565b611b47565b34801561083e57600080fd5b5061042761084d366004613459565b611bf2565b34801561085e57600080fd5b5061087261086d366004613459565b611c3c565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c59565b3480156108c057600080fd5b506104046108cf3660046135a4565b611c68565b3480156108e057600080fd5b506104276108ef36600461363e565b611ce5565b34801561090057600080fd5b50610427611da9565b34801561091557600080fd5b506104276109243660046133cc565b611df4565b34801561093557600080fd5b5061042761094436600461368b565b612016565b34801561095557600080fd5b506104276109643660046135a4565b612049565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a4366004613459565b612176565b3480156109b557600080fd5b506103d16121d4565b3480156109ca57600080fd5b5061043e6121ee565b3480156109df57600080fd5b5061043e61227c565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761228b565b610427610a213660046134f9565b6122fa565b348015610a3257600080fd5b50610427610a413660046135a4565b61245e565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b366004613459565b61255a565b348015610a8c57600080fd5b50610404610a9b366004613766565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae43660046135a4565b61256a565b348015610af557600080fd5b50610427612602565b348015610b0a57600080fd5b50610404610b193660046133cc565b61264d565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec90613799565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec906137e7565b610c57828261264d565b610c735760405162461bcd60e51b8152600401610bec9061382c565b7f000000000000000000000000000000000000000000000000000000000000000081610c9d610b1e565b610ca79190613892565b1115610cc55760405162461bcd60e51b8152600401610bec906138a5565b610cce8161255a565b3414610cec5760405162461bcd60e51b8152600401610bec906138e9565b610cf8828260006126d2565b5050565b606060048054610d0b90613931565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3790613931565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126ed565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117db565b9050806001600160a01b0316836001600160a01b031603610e905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610eac5750610eac8133610a9b565b610f1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f29838383612703565b505050565b610f2983838361275f565b600d8181548110610f4957600080fd5b600091825260209091200154905081565b6000610f6583611892565b8210610fbe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc8610b1e565b905060008060005b8381101561106f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102257805192505b876001600160a01b0316836001600160a01b03160361105c5786840361104e57509350610b9992505050565b836110588161396b565b9450505b50806110678161396b565b915050610fd0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b60115460009081036111235760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119e848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612adf565b95945050505050565b60125460ff16151560011480156111c5575060145460ff1615156001145b6112115760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121c8483836110cf565b6112685760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112b95760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112db5760405162461bcd60e51b8152600401610bec90613799565b6112e5848461264d565b6113015760405162461bcd60e51b8152600401610bec9061382c565b7f00000000000000000000000000000000000000000000000000000000000000008361132b610b1e565b6113359190613892565b11156113535760405162461bcd60e51b8152600401610bec90613984565b61135c8361255a565b341461137a5760405162461bcd60e51b8152600401610bec906138e9565b611386848460006126d2565b50505050565b600080546001600160a01b03163390811491906113a890611c68565b905081806113b35750805b6113cf5760405162461bcd60e51b8152600401610bec906139c7565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113f990611c68565b905081806114045750805b6114205760405162461bcd60e51b8152600401610bec906139c7565b600083116114705760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000008361149a610b1e565b6114a49190613892565b11156114c25760405162461bcd60e51b8152600401610bec906138a5565b611386848460016126d2565b610f2983838360405180602001604052806000815250612016565b6000546001600160a01b031633146115135760405162461bcd60e51b8152600401610bec90613a10565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156481611c68565b156115bf5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160290611c68565b9050818061160d5750805b6116295760405162461bcd60e51b8152600401610bec906139c7565b601154830361167a5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168b610b1e565b82106116e55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170590611c68565b905081806117105750805b61172c5760405162461bcd60e51b8152600401610bec906139c7565b600183101561177d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a090611c68565b905081806117ab5750805b6117c75760405162461bcd60e51b8152600401610bec906139c7565b60136117d4848683613a8b565b5050505050565b60006117e682612af5565b5192915050565b600080546001600160a01b031633908114919061180990611c68565b905081806118145750805b6118305760405162461bcd60e51b8152600401610bec906139c7565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185d90611c68565b905081806118685750805b6118845760405162461bcd60e51b8152600401610bec906139c7565b50506012805460ff19169055565b60006001600160a01b0382166118fe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194d5760405162461bcd60e51b8152600401610bec90613a10565b6119576000612c23565b565b7f00000000000000000000000000000000000000000000000000000000000000006119826121d4565b11156119dc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316044820152630303030360e41b6064820152608401610bec565b60145460ff16151560011480156119f6575060125460ff16155b611a125760405162461bcd60e51b8152600401610bec906137e7565b611a1d8160c861264d565b611a395760405162461bcd60e51b8152600401610bec9061382c565b611a43600161255a565b3414611a615760405162461bcd60e51b8152600401610bec90613b4a565b611a6e81600160006126d2565b50565b600080546001600160a01b0316339081149190611a8d90611c68565b90508180611a985750805b611ab45760405162461bcd60e51b8152600401610bec906139c7565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611ae190611c68565b90508180611aec5750805b611b085760405162461bcd60e51b8152600401610bec906139c7565b60004711611b1557600080fd5b610cf8612c73565b600c8181548110611b2d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b6390611c68565b90508180611b6e5750805b611b8a5760405162461bcd60e51b8152600401610bec906139c7565b6001831015611beb5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611c0e90611c68565b90508180611c195750805b611c355760405162461bcd60e51b8152600401610bec906139c7565b5050601055565b6040805180820190915260008082526020820152610b9982612af5565b606060058054610d0b90613931565b60006001600160a01b038216611cc05760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b336001600160a01b03831603611d3d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611dc590611c68565b90508180611dd05750805b611dec5760405162461bcd60e51b8152600401610bec906139c7565b6113cf611841565b600080546001600160a01b0316339081149190611e1090611c68565b90508180611e1b5750805b611e375760405162461bcd60e51b8152600401610bec906139c7565b60008311611e4457600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb09190613b91565b1015611f0a5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e5481101561200e57816001600160a01b031663a9059cbb600c8381548110611f3957611f39613baa565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f6c57611f6c613baa565b906000526020600020015489611f829190613bc0565b611f8c9190613bf5565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611fd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffb9190613c09565b50806120068161396b565b915050611f0d565b505050505050565b61202184848461275f565b61202d84848484612d01565b6113865760405162461bcd60e51b8152600401610bec90613c26565b600b546001600160a01b031633146120a35760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03908116908216036121145760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061214557612145613baa565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6060600061218261227c565b905060008151116121a257604051806020016040528060008152506121cd565b806121ac84612e03565b6040516020016121bd929190613c79565b6040516020818303038152906040525b9392505050565b60006121e36002546000190190565b610b2d906001613892565b601380546121fb90613931565b80601f016020809104026020016040519081016040528092919081815260200182805461222790613931565b80156122745780601f1061224957610100808354040283529160200191612274565b820191906000526020600020905b81548152906001019060200180831161225757829003601f168201915b505050505081565b606060138054610d0b90613931565b600b546001600160a01b031633146122e55760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122f257600080fd5b611957612c73565b60125460ff1615156001148015612318575060145460ff1615156001145b6123645760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61236f8383836110cf565b6123bb5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000006123e46121d4565b11156124025760405162461bcd60e51b8152600401610bec90613984565b61240d83600161264d565b6124295760405162461bcd60e51b8152600401610bec9061382c565b612433600161255a565b34146124515760405162461bcd60e51b8152600401610bec90613b4a565b610f2983600160006126d2565b6000546001600160a01b031633146124885760405162461bcd60e51b8152600401610bec90613a10565b6001600160a01b0381166124d05760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b6124d981611c68565b6125395760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613bc0565b6000546001600160a01b031633146125945760405162461bcd60e51b8152600401610bec90613a10565b6001600160a01b0381166125f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a6e81612c23565b600080546001600160a01b031633908114919061261e90611c68565b905081806126295750805b6126455760405162461bcd60e51b8152600401610bec906139c7565b611830611a71565b600060018210156126b25760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b601554826126bf85612f03565b6126c99190613892565b11159392505050565b610f2983838360405180602001604052806000815250612fa1565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061276a82612af5565b80519091506000906001600160a01b0316336001600160a01b031614806127a157503361279684610d8e565b6001600160a01b0316145b806127b3575081516127b39033610a9b565b90508061281d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128915760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128f55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6129056000848460000151612703565b6001600160a01b03851660009081526007602052604081208054600192906129379084906001600160801b0316613ca8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261298391859116613ccf565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a0a846001613892565b6000818152600660205260409020549091506001600160a01b0316612a9957612a32816126ed565b15612a995760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461200e565b600082612aec8584613273565b14949350505050565b60408051808201909152600080825260208201528180600111158015612b1c575060025481105b15612bc3576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b6d579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612bbe579392505050565b612b6d565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cef600c8281548110612c9757612c97613baa565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612cca57612cca613baa565b906000526020600020015485612ce09190613bc0565b612cea9190613bf5565b6132e7565b80612cf98161396b565b915050612c77565b60006001600160a01b0384163b15612df757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d45903390899088908890600401613cef565b6020604051808303816000875af1925050508015612d80575060408051601f3d908101601f19168201909252612d7d91810190613d2c565b60015b612ddd573d808015612dae576040519150601f19603f3d011682016040523d82523d6000602084013e612db3565b606091505b508051600003612dd55760405162461bcd60e51b8152600401610bec90613c26565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dfb565b5060015b949350505050565b606081600003612e2a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e545780612e3e8161396b565b9150612e4d9050600a83613bf5565b9150612e2e565b6000816001600160401b03811115612e6e57612e6e613675565b6040519080825280601f01601f191660200182016040528015612e98576020820181803683370190505b5090505b8415612dfb57612ead600183613d49565b9150612eba600a86613d5c565b612ec5906030613892565b60f81b818381518110612eda57612eda613baa565b60200101906001600160f81b031916908160001a905350612efc600a86613bf5565b9450612e9c565b60006001600160a01b038216612f755760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166130045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b61300d816126ed565b1561305a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b8215156000036130c1576003548411156130c15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061311d908890613ccf565b6001600160801b03168152602001856131365786613139565b60005b83602001516131489190613ccf565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156132675760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461322b6000898488612d01565b6132475760405162461bcd60e51b8152600401610bec90613c26565b816132518161396b565b925050808061325f9061396b565b9150506131de565b50600255505050505050565b600081815b84518110156132df57600085828151811061329557613295613baa565b602002602001015190508083116132bb57600083815260208290526040902092506132cc565b600081815260208490526040902092505b50806132d78161396b565b915050613278565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613334576040519150601f19603f3d011682016040523d82523d6000602084013e613339565b606091505b5050905080610f295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b6001600160e01b031981168114611a6e57600080fd5b6000602082840312156133a557600080fd5b81356121cd8161337d565b80356001600160a01b03811681146133c757600080fd5b919050565b600080604083850312156133df57600080fd5b6133e8836133b0565b946020939093013593505050565b60005b838110156134115781810151838201526020016133f9565b50506000910152565b600081518084526134328160208601602086016133f6565b601f01601f19169290920160200192915050565b6020815260006121cd602083018461341a565b60006020828403121561346b57600080fd5b5035919050565b60008060006060848603121561348757600080fd5b613490846133b0565b925061349e602085016133b0565b9150604084013590509250925092565b60008083601f8401126134c057600080fd5b5081356001600160401b038111156134d757600080fd5b6020830191508360208260051b85010111156134f257600080fd5b9250929050565b60008060006040848603121561350e57600080fd5b613517846133b0565b925060208401356001600160401b0381111561353257600080fd5b61353e868287016134ae565b9497909650939450505050565b6000806000806060858703121561356157600080fd5b61356a856133b0565b93506020850135925060408501356001600160401b0381111561358c57600080fd5b613598878288016134ae565b95989497509550505050565b6000602082840312156135b657600080fd5b6121cd826133b0565b600080602083850312156135d257600080fd5b82356001600160401b03808211156135e957600080fd5b818501915085601f8301126135fd57600080fd5b81358181111561360c57600080fd5b86602082850101111561361e57600080fd5b60209290920196919550909350505050565b8015158114611a6e57600080fd5b6000806040838503121561365157600080fd5b61365a836133b0565b9150602083013561366a81613630565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156136a157600080fd5b6136aa856133b0565b93506136b8602086016133b0565b92506040850135915060608501356001600160401b03808211156136db57600080fd5b818701915087601f8301126136ef57600080fd5b81358181111561370157613701613675565b604051601f8201601f19908116603f0116810190838211818310171561372957613729613675565b816040528281528a602084870101111561374257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561377957600080fd5b613782836133b0565b9150613790602084016133b0565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b9957610b9961387c565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061394557607f821691505b60208210810361396557634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161397d5761397d61387c565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610f2957600081815260208120601f850160051c81016020861015613a6c5750805b601f850160051c820191505b8181101561200e57828155600101613a78565b6001600160401b03831115613aa257613aa2613675565b613ab683613ab08354613931565b83613a45565b6000601f841160018114613aea5760008515613ad25750838201355b600019600387901b1c1916600186901b1783556117d4565b600083815260209020601f19861690835b82811015613b1b5786850135825560209485019460019092019101613afb565b5086821015613b385760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613ba357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613bda57613bda61387c565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613c0457613c04613bdf565b500490565b600060208284031215613c1b57600080fd5b81516121cd81613630565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c8b8184602088016133f6565b835190830190613c9f8183602088016133f6565b01949350505050565b6001600160801b03828116828216039080821115613cc857613cc861387c565b5092915050565b6001600160801b03818116838216019080821115613cc857613cc861387c565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d229083018461341a565b9695505050505050565b600060208284031215613d3e57600080fd5b81516121cd8161337d565b81810381811115610b9957610b9961387c565b600082613d6b57613d6b613bdf565b50069056fea26469706673582212203743d7c8c197357ac0f74c7d8fa5f412b4cba6904e9e0da1eca5a033da17f73e64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff366004613393565b610b32565b60405190151581526020016103db565b6104276104223660046133cc565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db9190613446565b34801561045757600080fd5b5061046b610466366004613459565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e3660046133cc565b610e17565b3480156104af57600080fd5b506104276104be366004613472565b610f2e565b3480156104cf57600080fd5b506103d16104de366004613459565b610f39565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a3660046133cc565b610f5a565b34801561053b57600080fd5b5061040461054a3660046134f9565b6110cf565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e36600461354b565b6111a7565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138c565b3480156105ca57600080fd5b506104276105d93660046133cc565b6113dd565b3480156105ea57600080fd5b506104276105f9366004613472565b6114ce565b34801561060a57600080fd5b506104276106193660046135a4565b6114e9565b34801561062a57600080fd5b506103d17f0000000000000000000000000000000000000000000000000000000000001e6181565b34801561065e57600080fd5b5061042761066d366004613459565b6115e6565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a3366004613459565b611681565b3480156106b457600080fd5b506104276106c3366004613459565b6116e9565b3480156106d457600080fd5b506104276106e33660046135bf565b611784565b3480156106f457600080fd5b5061046b610703366004613459565b6117db565b34801561071457600080fd5b506104276117ed565b34801561072957600080fd5b50610427611841565b34801561073e57600080fd5b506103d161074d3660046135a4565b611892565b34801561075e57600080fd5b50610427611923565b6104276107753660046135a4565b611959565b34801561078657600080fd5b50610427611a71565b34801561079b57600080fd5b50610427611ac5565b3480156107b057600080fd5b5061046b6107bf366004613459565b611b1d565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d366004613459565b611b47565b34801561083e57600080fd5b5061042761084d366004613459565b611bf2565b34801561085e57600080fd5b5061087261086d366004613459565b611c3c565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c59565b3480156108c057600080fd5b506104046108cf3660046135a4565b611c68565b3480156108e057600080fd5b506104276108ef36600461363e565b611ce5565b34801561090057600080fd5b50610427611da9565b34801561091557600080fd5b506104276109243660046133cc565b611df4565b34801561093557600080fd5b5061042761094436600461368b565b612016565b34801561095557600080fd5b506104276109643660046135a4565b612049565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a4366004613459565b612176565b3480156109b557600080fd5b506103d16121d4565b3480156109ca57600080fd5b5061043e6121ee565b3480156109df57600080fd5b5061043e61227c565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761228b565b610427610a213660046134f9565b6122fa565b348015610a3257600080fd5b50610427610a413660046135a4565b61245e565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b366004613459565b61255a565b348015610a8c57600080fd5b50610404610a9b366004613766565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae43660046135a4565b61256a565b348015610af557600080fd5b50610427612602565b348015610b0a57600080fd5b50610404610b193660046133cc565b61264d565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec90613799565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec906137e7565b610c57828261264d565b610c735760405162461bcd60e51b8152600401610bec9061382c565b7f0000000000000000000000000000000000000000000000000000000000001e6181610c9d610b1e565b610ca79190613892565b1115610cc55760405162461bcd60e51b8152600401610bec906138a5565b610cce8161255a565b3414610cec5760405162461bcd60e51b8152600401610bec906138e9565b610cf8828260006126d2565b5050565b606060048054610d0b90613931565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3790613931565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126ed565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117db565b9050806001600160a01b0316836001600160a01b031603610e905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610eac5750610eac8133610a9b565b610f1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f29838383612703565b505050565b610f2983838361275f565b600d8181548110610f4957600080fd5b600091825260209091200154905081565b6000610f6583611892565b8210610fbe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc8610b1e565b905060008060005b8381101561106f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102257805192505b876001600160a01b0316836001600160a01b03160361105c5786840361104e57509350610b9992505050565b836110588161396b565b9450505b50806110678161396b565b915050610fd0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b60115460009081036111235760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119e848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612adf565b95945050505050565b60125460ff16151560011480156111c5575060145460ff1615156001145b6112115760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121c8483836110cf565b6112685760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112b95760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112db5760405162461bcd60e51b8152600401610bec90613799565b6112e5848461264d565b6113015760405162461bcd60e51b8152600401610bec9061382c565b7f0000000000000000000000000000000000000000000000000000000000001e618361132b610b1e565b6113359190613892565b11156113535760405162461bcd60e51b8152600401610bec90613984565b61135c8361255a565b341461137a5760405162461bcd60e51b8152600401610bec906138e9565b611386848460006126d2565b50505050565b600080546001600160a01b03163390811491906113a890611c68565b905081806113b35750805b6113cf5760405162461bcd60e51b8152600401610bec906139c7565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113f990611c68565b905081806114045750805b6114205760405162461bcd60e51b8152600401610bec906139c7565b600083116114705760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000001e618361149a610b1e565b6114a49190613892565b11156114c25760405162461bcd60e51b8152600401610bec906138a5565b611386848460016126d2565b610f2983838360405180602001604052806000815250612016565b6000546001600160a01b031633146115135760405162461bcd60e51b8152600401610bec90613a10565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156481611c68565b156115bf5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160290611c68565b9050818061160d5750805b6116295760405162461bcd60e51b8152600401610bec906139c7565b601154830361167a5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168b610b1e565b82106116e55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170590611c68565b905081806117105750805b61172c5760405162461bcd60e51b8152600401610bec906139c7565b600183101561177d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a090611c68565b905081806117ab5750805b6117c75760405162461bcd60e51b8152600401610bec906139c7565b60136117d4848683613a8b565b5050505050565b60006117e682612af5565b5192915050565b600080546001600160a01b031633908114919061180990611c68565b905081806118145750805b6118305760405162461bcd60e51b8152600401610bec906139c7565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185d90611c68565b905081806118685750805b6118845760405162461bcd60e51b8152600401610bec906139c7565b50506012805460ff19169055565b60006001600160a01b0382166118fe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194d5760405162461bcd60e51b8152600401610bec90613a10565b6119576000612c23565b565b7f0000000000000000000000000000000000000000000000000000000000001e616119826121d4565b11156119dc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316044820152630303030360e41b6064820152608401610bec565b60145460ff16151560011480156119f6575060125460ff16155b611a125760405162461bcd60e51b8152600401610bec906137e7565b611a1d8160c861264d565b611a395760405162461bcd60e51b8152600401610bec9061382c565b611a43600161255a565b3414611a615760405162461bcd60e51b8152600401610bec90613b4a565b611a6e81600160006126d2565b50565b600080546001600160a01b0316339081149190611a8d90611c68565b90508180611a985750805b611ab45760405162461bcd60e51b8152600401610bec906139c7565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611ae190611c68565b90508180611aec5750805b611b085760405162461bcd60e51b8152600401610bec906139c7565b60004711611b1557600080fd5b610cf8612c73565b600c8181548110611b2d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b6390611c68565b90508180611b6e5750805b611b8a5760405162461bcd60e51b8152600401610bec906139c7565b6001831015611beb5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611c0e90611c68565b90508180611c195750805b611c355760405162461bcd60e51b8152600401610bec906139c7565b5050601055565b6040805180820190915260008082526020820152610b9982612af5565b606060058054610d0b90613931565b60006001600160a01b038216611cc05760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b336001600160a01b03831603611d3d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611dc590611c68565b90508180611dd05750805b611dec5760405162461bcd60e51b8152600401610bec906139c7565b6113cf611841565b600080546001600160a01b0316339081149190611e1090611c68565b90508180611e1b5750805b611e375760405162461bcd60e51b8152600401610bec906139c7565b60008311611e4457600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb09190613b91565b1015611f0a5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e5481101561200e57816001600160a01b031663a9059cbb600c8381548110611f3957611f39613baa565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f6c57611f6c613baa565b906000526020600020015489611f829190613bc0565b611f8c9190613bf5565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611fd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffb9190613c09565b50806120068161396b565b915050611f0d565b505050505050565b61202184848461275f565b61202d84848484612d01565b6113865760405162461bcd60e51b8152600401610bec90613c26565b600b546001600160a01b031633146120a35760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03908116908216036121145760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061214557612145613baa565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6060600061218261227c565b905060008151116121a257604051806020016040528060008152506121cd565b806121ac84612e03565b6040516020016121bd929190613c79565b6040516020818303038152906040525b9392505050565b60006121e36002546000190190565b610b2d906001613892565b601380546121fb90613931565b80601f016020809104026020016040519081016040528092919081815260200182805461222790613931565b80156122745780601f1061224957610100808354040283529160200191612274565b820191906000526020600020905b81548152906001019060200180831161225757829003601f168201915b505050505081565b606060138054610d0b90613931565b600b546001600160a01b031633146122e55760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122f257600080fd5b611957612c73565b60125460ff1615156001148015612318575060145460ff1615156001145b6123645760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61236f8383836110cf565b6123bb5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000001e616123e46121d4565b11156124025760405162461bcd60e51b8152600401610bec90613984565b61240d83600161264d565b6124295760405162461bcd60e51b8152600401610bec9061382c565b612433600161255a565b34146124515760405162461bcd60e51b8152600401610bec90613b4a565b610f2983600160006126d2565b6000546001600160a01b031633146124885760405162461bcd60e51b8152600401610bec90613a10565b6001600160a01b0381166124d05760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b6124d981611c68565b6125395760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613bc0565b6000546001600160a01b031633146125945760405162461bcd60e51b8152600401610bec90613a10565b6001600160a01b0381166125f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a6e81612c23565b600080546001600160a01b031633908114919061261e90611c68565b905081806126295750805b6126455760405162461bcd60e51b8152600401610bec906139c7565b611830611a71565b600060018210156126b25760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b601554826126bf85612f03565b6126c99190613892565b11159392505050565b610f2983838360405180602001604052806000815250612fa1565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061276a82612af5565b80519091506000906001600160a01b0316336001600160a01b031614806127a157503361279684610d8e565b6001600160a01b0316145b806127b3575081516127b39033610a9b565b90508061281d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128915760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128f55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6129056000848460000151612703565b6001600160a01b03851660009081526007602052604081208054600192906129379084906001600160801b0316613ca8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261298391859116613ccf565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a0a846001613892565b6000818152600660205260409020549091506001600160a01b0316612a9957612a32816126ed565b15612a995760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461200e565b600082612aec8584613273565b14949350505050565b60408051808201909152600080825260208201528180600111158015612b1c575060025481105b15612bc3576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b6d579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612bbe579392505050565b612b6d565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cef600c8281548110612c9757612c97613baa565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612cca57612cca613baa565b906000526020600020015485612ce09190613bc0565b612cea9190613bf5565b6132e7565b80612cf98161396b565b915050612c77565b60006001600160a01b0384163b15612df757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d45903390899088908890600401613cef565b6020604051808303816000875af1925050508015612d80575060408051601f3d908101601f19168201909252612d7d91810190613d2c565b60015b612ddd573d808015612dae576040519150601f19603f3d011682016040523d82523d6000602084013e612db3565b606091505b508051600003612dd55760405162461bcd60e51b8152600401610bec90613c26565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dfb565b5060015b949350505050565b606081600003612e2a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e545780612e3e8161396b565b9150612e4d9050600a83613bf5565b9150612e2e565b6000816001600160401b03811115612e6e57612e6e613675565b6040519080825280601f01601f191660200182016040528015612e98576020820181803683370190505b5090505b8415612dfb57612ead600183613d49565b9150612eba600a86613d5c565b612ec5906030613892565b60f81b818381518110612eda57612eda613baa565b60200101906001600160f81b031916908160001a905350612efc600a86613bf5565b9450612e9c565b60006001600160a01b038216612f755760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166130045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b61300d816126ed565b1561305a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b8215156000036130c1576003548411156130c15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061311d908890613ccf565b6001600160801b03168152602001856131365786613139565b60005b83602001516131489190613ccf565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156132675760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461322b6000898488612d01565b6132475760405162461bcd60e51b8152600401610bec90613c26565b816132518161396b565b925050808061325f9061396b565b9150506131de565b50600255505050505050565b600081815b84518110156132df57600085828151811061329557613295613baa565b602002602001015190508083116132bb57600083815260208290526040902092506132cc565b600081815260208490526040902092505b50806132d78161396b565b915050613278565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613334576040519150601f19603f3d011682016040523d82523d6000602084013e613339565b606091505b5050905080610f295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b6001600160e01b031981168114611a6e57600080fd5b6000602082840312156133a557600080fd5b81356121cd8161337d565b80356001600160a01b03811681146133c757600080fd5b919050565b600080604083850312156133df57600080fd5b6133e8836133b0565b946020939093013593505050565b60005b838110156134115781810151838201526020016133f9565b50506000910152565b600081518084526134328160208601602086016133f6565b601f01601f19169290920160200192915050565b6020815260006121cd602083018461341a565b60006020828403121561346b57600080fd5b5035919050565b60008060006060848603121561348757600080fd5b613490846133b0565b925061349e602085016133b0565b9150604084013590509250925092565b60008083601f8401126134c057600080fd5b5081356001600160401b038111156134d757600080fd5b6020830191508360208260051b85010111156134f257600080fd5b9250929050565b60008060006040848603121561350e57600080fd5b613517846133b0565b925060208401356001600160401b0381111561353257600080fd5b61353e868287016134ae565b9497909650939450505050565b6000806000806060858703121561356157600080fd5b61356a856133b0565b93506020850135925060408501356001600160401b0381111561358c57600080fd5b613598878288016134ae565b95989497509550505050565b6000602082840312156135b657600080fd5b6121cd826133b0565b600080602083850312156135d257600080fd5b82356001600160401b03808211156135e957600080fd5b818501915085601f8301126135fd57600080fd5b81358181111561360c57600080fd5b86602082850101111561361e57600080fd5b60209290920196919550909350505050565b8015158114611a6e57600080fd5b6000806040838503121561365157600080fd5b61365a836133b0565b9150602083013561366a81613630565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156136a157600080fd5b6136aa856133b0565b93506136b8602086016133b0565b92506040850135915060608501356001600160401b03808211156136db57600080fd5b818701915087601f8301126136ef57600080fd5b81358181111561370157613701613675565b604051601f8201601f19908116603f0116810190838211818310171561372957613729613675565b816040528281528a602084870101111561374257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561377957600080fd5b613782836133b0565b9150613790602084016133b0565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b9957610b9961387c565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061394557607f821691505b60208210810361396557634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161397d5761397d61387c565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610f2957600081815260208120601f850160051c81016020861015613a6c5750805b601f850160051c820191505b8181101561200e57828155600101613a78565b6001600160401b03831115613aa257613aa2613675565b613ab683613ab08354613931565b83613a45565b6000601f841160018114613aea5760008515613ad25750838201355b600019600387901b1c1916600186901b1783556117d4565b600083815260209020601f19861690835b82811015613b1b5786850135825560209485019460019092019101613afb565b5086821015613b385760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613ba357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613bda57613bda61387c565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613c0457613c04613bdf565b500490565b600060208284031215613c1b57600080fd5b81516121cd81613630565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c8b8184602088016133f6565b835190830190613c9f8183602088016133f6565b01949350505050565b6001600160801b03828116828216039080821115613cc857613cc861387c565b5092915050565b6001600160801b03818116838216019080821115613cc857613cc861387c565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d229083018461341a565b9695505050505050565b600060208284031215613d3e57600080fd5b81516121cd8161337d565b81810381811115610b9957610b9961387c565b600082613d6b57613d6b613bdf565b50069056fea26469706673582212203743d7c8c197357ac0f74c7d8fa5f412b4cba6904e9e0da1eca5a033da17f73e64736f6c63430008100033

Deployed Bytecode Sourcemap

59474:97:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34914:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;34914:90:0;;;;;;;;36666:370;;;;;;;;;;-1:-1:-1;36666:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36666:370:0;582:187:1;54471:692:0;;;;;;:::i;:::-;;:::i;:::-;;38731:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40146:204::-;;;;;;;;;;-1:-1:-1;40146:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2316:32:1;;;2298:51;;2286:2;2271:18;40146:204:0;2152:203:1;39709:379:0;;;;;;;;;;-1:-1:-1;39709:379:0;;;;;:::i;:::-;;:::i;40996:142::-;;;;;;;;;;-1:-1:-1;40996:142:0;;;;;:::i;:::-;;:::i;50015:37::-;;;;;;;;;;-1:-1:-1;50015:37:0;;;;;:::i;:::-;;:::i;33246:27::-;;;;;;;;;;;;;;;;31174:25;;;;;;;;;;;;;;;;35858:744;;;;;;;;;;-1:-1:-1;35858:744:0;;;;;:::i;:::-;;:::i;31833:287::-;;;;;;;;;;-1:-1:-1;31833:287:0;;;;;:::i;:::-;;:::i;52782:33::-;;;;;;;;;;-1:-1:-1;52782:33:0;;;;;;;;;;;;;;3935:4:1;3923:17;;;3905:36;;3893:2;3878:18;52782:33:0;3763:184:1;56424:801:0;;;;;;:::i;:::-;;:::i;50057:38::-;;;;;;;;;;;;;;;;55262:84;;;;;;;;;;;;;:::i;53251:281::-;;;;;;;;;;-1:-1:-1;53251:281:0;;;;;:::i;:::-;;:::i;41201:157::-;;;;;;;;;;-1:-1:-1;41201:157:0;;;;;:::i;:::-;;:::i;27279:223::-;;;;;;;;;;-1:-1:-1;27279:223:0;;;;;:::i;:::-;;:::i;33202:39::-;;;;;;;;;;;;;;;31413:197;;;;;;;;;;-1:-1:-1;31413:197:0;;;;;:::i;:::-;;:::i;52912:38::-;;;;;;;;;;;;;;;;35390:177;;;;;;;;;;-1:-1:-1;35390:177:0;;;;;:::i;:::-;;:::i;58752:179::-;;;;;;;;;;-1:-1:-1;58752:179:0;;;;;:::i;:::-;;:::i;59160:106::-;;;;;;;;;;-1:-1:-1;59160:106:0;;;;;:::i;:::-;;:::i;38554:118::-;;;;;;;;;;-1:-1:-1;38554:118:0;;;;;:::i;:::-;;:::i;55171:83::-;;;;;;;;;;;;;:::i;32241:103::-;;;;;;;;;;;;;:::i;37092:211::-;;;;;;;;;;-1:-1:-1;37092:211:0;;;;;:::i;:::-;;:::i;25796:103::-;;;;;;;;;;;;;:::i;53751:493::-;;;;;;:::i;:::-;;:::i;32134:99::-;;;;;;;;;;;;;:::i;50102:118::-;;;;;;;;;;;;;:::i;49917:93::-;;;;;;;;;;-1:-1:-1;49917:93:0;;;;;:::i;:::-;;:::i;52245:30::-;;;;;;;;;;;;;;;;25147:87;;;;;;;;;;-1:-1:-1;25193:7:0;25220:6;-1:-1:-1;;;;;25220:6:0;25147:87;;52863:30;;;;;;;;;;-1:-1:-1;52863:30:0;;;;;;;;58376:200;;;;;;;;;;-1:-1:-1;58376:200:0;;;;;:::i;:::-;;:::i;52282:90::-;;;;;;;;;;-1:-1:-1;52282:90:0;;;;;:::i;:::-;;:::i;59272:128::-;;;;;;;;;;-1:-1:-1;59272:128:0;;;;;:::i;:::-;;:::i;:::-;;;;5741:13:1;;-1:-1:-1;;;;;5737:39:1;5719:58;;5837:4;5825:17;;;5819:24;-1:-1:-1;;;;;5815:49:1;5793:20;;;5786:79;;;;5692:18;59272:128:0;5509:362:1;38886:98:0;;;;;;;;;;;;;:::i;28018:188::-;;;;;;;;;;-1:-1:-1;28018:188:0;;;;;:::i;:::-;;:::i;40414:274::-;;;;;;;;;;-1:-1:-1;40414:274:0;;;;;:::i;:::-;;:::i;57652:128::-;;;;;;;;;;;;;:::i;51185:428::-;;;;;;;;;;-1:-1:-1;51185:428:0;;;;;:::i;:::-;;:::i;41421:311::-;;;;;;;;;;-1:-1:-1;41421:311:0;;;;;:::i;:::-;;:::i;51939:229::-;;;;;;;;;;-1:-1:-1;51939:229:0;;;;;:::i;:::-;;:::i;49481:72::-;;;;;;;;;;-1:-1:-1;49481:72:0;;;;-1:-1:-1;;;;;49481:72:0;;;39047:288;;;;;;;;;;-1:-1:-1;39047:288:0;;;;;:::i;:::-;;:::i;35010:96::-;;;;;;;;;;;;;:::i;52822:32::-;;;;;;;;;;;;;:::i;59062:92::-;;;;;;;;;;;;;:::i;46029:43::-;;;;;;;;;;;;;;;;50228:115;;;;;;;;;;;;;:::i;55593:590::-;;;;;;:::i;:::-;;:::i;27645:234::-;;;;;;;;;;-1:-1:-1;27645:234:0;;;;;:::i;:::-;;:::i;31206:37::-;;;;;;;;;;-1:-1:-1;31206:37:0;;;;;;;;52378:98;;;;;;;;;;-1:-1:-1;52378:98:0;;;;;:::i;:::-;;:::i;40751:186::-;;;;;;;;;;-1:-1:-1;40751:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40896:25:0;;;40873:4;40896:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40751:186;26052:201;;;;;;;;;;-1:-1:-1;26052:201:0;;;;;:::i;:::-;;:::i;57376:125::-;;;;;;;;;;;;;:::i;57941:242::-;;;;;;;;;;-1:-1:-1;57941:242:0;;;;;:::i;:::-;;:::i;34914:90::-;34961:7;34984:14;35278:12;;-1:-1:-1;;35278:30:0;;35189:132;34984:14;34977:21;;34914:90;:::o;36666:370::-;36793:4;-1:-1:-1;;;;;;36823:40:0;;-1:-1:-1;;;36823:40:0;;:99;;-1:-1:-1;;;;;;;36874:48:0;;-1:-1:-1;;;36874:48:0;36823:99;:160;;;-1:-1:-1;;;;;;;36933:50:0;;-1:-1:-1;;;36933:50:0;36823:160;:207;;;-1:-1:-1;;;;;;;;;;11641:40:0;;;36994:36;36809:221;36666:370;-1:-1:-1;;36666:370:0:o;54471:692::-;54570:1;54559:7;:12;;54551:51;;;;-1:-1:-1;;;54551:51:0;;8061:2:1;54551:51:0;;;8043:21:1;8100:2;8080:18;;;8073:30;8139:28;8119:18;;;8112:56;8185:18;;54551:51:0;;;;;;;;;54632:12;;54621:7;:23;;54613:82;;;;-1:-1:-1;;;54613:82:0;;;;;;;:::i;:::-;54714:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;54737:17:0;;;;:26;54714:49;54706:99;;;;-1:-1:-1;;;54706:99:0;;;;;;;:::i;:::-;54834:27;54848:3;54853:7;54834:13;:27::i;:::-;54826:88;;;;-1:-1:-1;;;54826:88:0;;;;;;;:::i;:::-;54963:14;54952:7;54933:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;54925:93;;;;-1:-1:-1;;;54925:93:0;;;;;;;:::i;:::-;55050:17;55059:7;55050:8;:17::i;:::-;55037:9;:30;55029:83;;;;-1:-1:-1;;;55029:83:0;;;;;;;:::i;:::-;55125:30;55135:3;55140:7;55149:5;55125:9;:30::i;:::-;54471:692;;:::o;38731:94::-;38785:13;38814:5;38807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38731:94;:::o;40146:204::-;40214:7;40238:16;40246:7;40238;:16::i;:::-;40230:74;;;;-1:-1:-1;;;40230:74:0;;11115:2:1;40230:74:0;;;11097:21:1;11154:2;11134:18;;;11127:30;11193:34;11173:18;;;11166:62;-1:-1:-1;;;11244:18:1;;;11237:43;11297:19;;40230:74:0;10913:409:1;40230:74:0;-1:-1:-1;40320:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40320:24:0;;40146:204::o;39709:379::-;39778:13;39794:24;39810:7;39794:15;:24::i;:::-;39778:40;;39839:5;-1:-1:-1;;;;;39833:11:0;:2;-1:-1:-1;;;;;39833:11:0;;39825:58;;;;-1:-1:-1;;;39825:58:0;;11529:2:1;39825:58:0;;;11511:21:1;11568:2;11548:18;;;11541:30;11607:34;11587:18;;;11580:62;-1:-1:-1;;;11658:18:1;;;11651:32;11700:19;;39825:58:0;11327:398:1;39825:58:0;23953:10;-1:-1:-1;;;;;39908:21:0;;;;:62;;-1:-1:-1;39933:37:0;39950:5;23953:10;40751:186;:::i;39933:37::-;39892:153;;;;-1:-1:-1;;;39892:153:0;;11932:2:1;39892:153:0;;;11914:21:1;11971:2;11951:18;;;11944:30;12010:34;11990:18;;;11983:62;12081:27;12061:18;;;12054:55;12126:19;;39892:153:0;11730:421:1;39892:153:0;40054:28;40063:2;40067:7;40076:5;40054:8;:28::i;:::-;39771:317;39709:379;;:::o;40996:142::-;41104:28;41114:4;41120:2;41124:7;41104:9;:28::i;50015:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50015:37:0;:::o;35858:744::-;35967:7;36002:16;36012:5;36002:9;:16::i;:::-;35994:5;:24;35986:71;;;;-1:-1:-1;;;35986:71:0;;12358:2:1;35986:71:0;;;12340:21:1;12397:2;12377:18;;;12370:30;12436:34;12416:18;;;12409:62;-1:-1:-1;;;12487:18:1;;;12480:32;12529:19;;35986:71:0;12156:398:1;35986:71:0;36064:22;36089:13;:11;:13::i;:::-;36064:38;;36109:19;36139:25;36189:9;36184:350;36208:14;36204:1;:18;36184:350;;;36238:31;36272:14;;;:11;:14;;;;;;;;;36238:48;;;;;;;;;-1:-1:-1;;;;;36238:48:0;;;;;-1:-1:-1;;;36238:48:0;;;-1:-1:-1;;;;;36238:48:0;;;;;;;;36299:28;36295:89;;36360:14;;;-1:-1:-1;36295:89:0;36417:5;-1:-1:-1;;;;;36396:26:0;:17;-1:-1:-1;;;;;36396:26:0;;36392:135;;36454:5;36439:11;:20;36435:59;;-1:-1:-1;36481:1:0;-1:-1:-1;36474:8:0;;-1:-1:-1;;;36474:8:0;36435:59;36504:13;;;;:::i;:::-;;;;36392:135;-1:-1:-1;36224:3:0;;;;:::i;:::-;;;;36184:350;;;-1:-1:-1;36540:56:0;;-1:-1:-1;;;36540:56:0;;12901:2:1;36540:56:0;;;12883:21:1;12940:2;12920:18;;;12913:30;12979:34;12959:18;;;12952:62;-1:-1:-1;;;13030:18:1;;;13023:44;13084:19;;36540:56:0;12699:410:1;31833:287:0;31945:10;;31922:4;;31945:15;;31937:51;;;;-1:-1:-1;;;31937:51:0;;13316:2:1;31937:51:0;;;13298:21:1;13355:2;13335:18;;;13328:30;13394:25;13374:18;;;13367:53;13437:18;;31937:51:0;13114:347:1;31937:51:0;32022:21;;-1:-1:-1;;13615:2:1;13611:15;;;13607:53;32022:21:0;;;13595:66:1;31997:12:0;;13677::1;;32022:21:0;;;;;;;;;;;;32012:32;;;;;;31997:47;;32062:50;32081:12;;32062:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32095:10:0;;;-1:-1:-1;32107:4:0;;-1:-1:-1;32062:18:0;:50::i;:::-;32055:57;31833:287;-1:-1:-1;;;;;31833:287:0:o;56424:801::-;56547:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;56576:11:0;;;;:19;;:11;:19;56547:48;56539:88;;;;-1:-1:-1;;;56539:88:0;;13902:2:1;56539:88:0;;;13884:21:1;13941:2;13921:18;;;13914:30;13980:29;13960:18;;;13953:57;14027:18;;56539:88:0;13700:351:1;56539:88:0;56646:32;56660:3;56665:12;;56646:13;:32::i;:::-;56638:73;;;;-1:-1:-1;;;56638:73:0;;14258:2:1;56638:73:0;;;14240:21:1;14297:2;14277:18;;;14270:30;14336;14316:18;;;14309:58;14384:18;;56638:73:0;14056:352:1;56638:73:0;56741:1;56730:7;:12;;56722:51;;;;-1:-1:-1;;;56722:51:0;;8061:2:1;56722:51:0;;;8043:21:1;8100:2;8080:18;;;8073:30;8139:28;8119:18;;;8112:56;8185:18;;56722:51:0;7859:350:1;56722:51:0;56803:12;;56792:7;:23;;56784:82;;;;-1:-1:-1;;;56784:82:0;;;;;;;:::i;:::-;56887:27;56901:3;56906:7;56887:13;:27::i;:::-;56879:88;;;;-1:-1:-1;;;56879:88:0;;;;;;;:::i;:::-;57016:14;57005:7;56986:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;56978:92;;;;-1:-1:-1;;;56978:92:0;;;;;;;:::i;:::-;57102:17;57111:7;57102:8;:17::i;:::-;57089:9;:30;57081:83;;;;-1:-1:-1;;;57081:83:0;;;;;;;:::i;:::-;57187:30;57197:3;57202:7;57211:5;57187:9;:30::i;:::-;56424:801;;;;:::o;55262:84::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55319:11:0::1;:19:::0;;-1:-1:-1;;55319:19:0::1;::::0;;55262:84::o;53251:281::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;53350:1:::1;53343:4;:8;53335:48;;;::::0;-1:-1:-1;;;53335:48:0;;15429:2:1;53335:48:0::1;::::0;::::1;15411:21:1::0;15468:2;15448:18;;;15441:30;15507:29;15487:18;;;15480:57;15554:18;;53335:48:0::1;15227:351:1::0;53335:48:0::1;53430:14;53422:4;53403:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;53395:90;;;;-1:-1:-1::0;;;53395:90:0::1;;;;;;;:::i;:::-;53497:26;53507:3;53512:4;53518;53497:9;:26::i;41201:157::-:0;41313:39;41330:4;41336:2;41340:7;41313:39;;;;;;;;;;;;:16;:39::i;27279:223::-;25193:7;25220:6;-1:-1:-1;;;;;25220:6:0;23953:10;25367:23;25359:68;;;;-1:-1:-1;;;25359:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27348:22:0;::::1;27340:50;;;::::0;-1:-1:-1;;;27340:50:0;;16146:2:1;27340:50:0::1;::::0;::::1;16128:21:1::0;16185:2;16165:18;;;16158:30;-1:-1:-1;;;16204:18:1;;;16197:45;16259:18;;27340:50:0::1;15944:339:1::0;27340:50:0::1;27406:16;27413:8;27406:6;:16::i;:::-;27405:17;27397:67;;;::::0;-1:-1:-1;;;27397:67:0;;16490:2:1;27397:67:0::1;::::0;::::1;16472:21:1::0;16529:2;16509:18;;;16502:30;16568:34;16548:18;;;16541:62;-1:-1:-1;;;16619:18:1;;;16612:35;16664:19;;27397:67:0::1;16288:401:1::0;27397:67:0::1;-1:-1:-1::0;;;;;27475:14:0::1;;::::0;;;27492:4:::1;27475:14;::::0;;;;;;;:21;;-1:-1:-1;;27475:21:0::1;::::0;;::::1;::::0;;27279:223::o;31413:197::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;31521:10:::1;;31503:14;:28:::0;31495:71:::1;;;::::0;-1:-1:-1;;;31495:71:0;;16896:2:1;31495:71:0::1;::::0;::::1;16878:21:1::0;16935:2;16915:18;;;16908:30;16974:32;16954:18;;;16947:60;17024:18;;31495:71:0::1;16694:354:1::0;31495:71:0::1;-1:-1:-1::0;;31575:10:0::1;:27:::0;31413:197::o;35390:177::-;35457:7;35489:13;:11;:13::i;:::-;35481:5;:21;35473:69;;;;-1:-1:-1;;;35473:69:0;;17255:2:1;35473:69:0;;;17237:21:1;17294:2;17274:18;;;17267:30;17333:34;17313:18;;;17306:62;-1:-1:-1;;;17384:18:1;;;17377:33;17427:19;;35473:69:0;17053:399:1;35473:69:0;-1:-1:-1;35556:5:0;35390:177::o;58752:179::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;58851:1:::1;58836:11;:16;;58828:56;;;::::0;-1:-1:-1;;;58828:56:0;;17659:2:1;58828:56:0::1;::::0;::::1;17641:21:1::0;17698:2;17678:18;;;17671:30;17737:29;17717:18;;;17710:57;17784:18;;58828:56:0::1;17457:351:1::0;58828:56:0::1;-1:-1:-1::0;;58896:12:0::1;:26:::0;58752:179::o;59160:106::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;59237:13:::1;:23;59253:7:::0;;59237:13;:23:::1;:::i;:::-;;28331:182:::0;;59160:106;;:::o;38554:118::-;38618:7;38641:20;38653:7;38641:11;:20::i;:::-;:25;;38554:118;-1:-1:-1;;38554:118:0:o;55171:83::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55228:11:0::1;:18:::0;;-1:-1:-1;;55228:18:0::1;55242:4;55228:18;::::0;;55171:83::o;32241:103::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32311:17:0::1;:25:::0;;-1:-1:-1;;32311:25:0::1;::::0;;32241:103::o;37092:211::-;37156:7;-1:-1:-1;;;;;37180:19:0;;37172:75;;;;-1:-1:-1;;;37172:75:0;;20073:2:1;37172:75:0;;;20055:21:1;20112:2;20092:18;;;20085:30;20151:34;20131:18;;;20124:62;-1:-1:-1;;;20202:18:1;;;20195:41;20253:19;;37172:75:0;19871:407:1;37172:75:0;-1:-1:-1;;;;;;37269:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37269:27:0;;37092:211::o;25796:103::-;25193:7;25220:6;-1:-1:-1;;;;;25220:6:0;23953:10;25367:23;25359:68;;;;-1:-1:-1;;;25359:68:0;;;;;;;:::i;:::-;25861:30:::1;25888:1;25861:18;:30::i;:::-;25796:103::o:0;53751:493::-;53834:14;53814:16;:14;:16::i;:::-;:34;;53806:83;;;;-1:-1:-1;;;53806:83:0;;20485:2:1;53806:83:0;;;20467:21:1;20524:2;20504:18;;;20497:30;20563:34;20543:18;;;20536:62;-1:-1:-1;;;20614:18:1;;;20607:34;20658:19;;53806:83:0;20283:400:1;53806:83:0;53908:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;53931:17:0;;;;:26;53908:49;53900:99;;;;-1:-1:-1;;;53900:99:0;;;;;;;:::i;:::-;54028:23;54042:3;54047;54028:13;:23::i;:::-;54020:84;;;;-1:-1:-1;;;54020:84:0;;;;;;;:::i;:::-;54136:11;54145:1;54136:8;:11::i;:::-;54123:9;:24;54115:76;;;;-1:-1:-1;;;54115:76:0;;;;;;;:::i;:::-;54212:24;54222:3;54227:1;54230:5;54212:9;:24::i;:::-;53751:493;:::o;32134:99::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32201:17:0::1;:24:::0;;-1:-1:-1;;32201:24:0::1;32221:4;32201:24;::::0;;32134:99::o;50102:118::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;50189:1:::1;50165:21;:25;50157:34;;;::::0;::::1;;50200:14;:12;:14::i;49917:93::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49917:93:0;;-1:-1:-1;49917:93:0;:::o;58376:200::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;58480:1:::1;58463:13;:18;;58455:70;;;::::0;-1:-1:-1;;;58455:70:0;;21298:2:1;58455:70:0::1;::::0;::::1;21280:21:1::0;21337:2;21317:18;;;21310:30;21376:34;21356:18;;;21349:62;-1:-1:-1;;;21427:18:1;;;21420:37;21474:19;;58455:70:0::1;21096:403:1::0;58455:70:0::1;-1:-1:-1::0;;58536:16:0::1;:32:::0;58376:200::o;52282:90::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;-1:-1:-1;;52349:5:0::1;:17:::0;52282:90::o;59272:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;59374:20:0;59386:7;59374:11;:20::i;38886:98::-;38942:13;38971:7;38964:14;;;;;:::i;28018:188::-;28088:4;-1:-1:-1;;;;;28112:22:0;;28104:60;;;;-1:-1:-1;;;28104:60:0;;21706:2:1;28104:60:0;;;21688:21:1;21745:2;21725:18;;;21718:30;21784:27;21764:18;;;21757:55;21829:18;;28104:60:0;21504:349:1;28104:60:0;-1:-1:-1;;;;;;28178:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;28018:188::o;40414:274::-;23953:10;-1:-1:-1;;;;;40505:24:0;;;40497:63;;;;-1:-1:-1;;;40497:63:0;;22060:2:1;40497:63:0;;;22042:21:1;22099:2;22079:18;;;22072:30;22138:28;22118:18;;;22111:56;22184:18;;40497:63:0;21858:350:1;40497:63:0;23953:10;40569:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40569:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40569:53:0;;;;;;;;;;40634:48;;722:41:1;;;40569:42:0;;23953:10;40634:48;;695:18:1;40634:48:0;;;;;;;40414:274;;:::o;57652:128::-;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;57716:26:::1;:24;:26::i;51185:428::-:0;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;51300:1:::1;51290:7;:11;51282:20;;;::::0;::::1;;51369:38;::::0;-1:-1:-1;;;51369:38:0;;51401:4:::1;51369:38;::::0;::::1;2298:51:1::0;51339:14:0;;51411:7;;-1:-1:-1;;;;;51369:23:0;::::1;::::0;::::1;::::0;2271:18:1;;51369:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;51361:97;;;::::0;-1:-1:-1;;;51361:97:0;;22604:2:1;51361:97:0::1;::::0;::::1;22586:21:1::0;22643:2;22623:18;;;22616:30;22682:34;22662:18;;;22655:62;-1:-1:-1;;;22733:18:1;;;22726:33;22776:19;;51361:97:0::1;22402:399:1::0;51361:97:0::1;51471:6;51467:141;51485:19;;51481:1;:23;51467:141;;;51523:13;-1:-1:-1::0;;;;;51523:22:0::1;;51546:16;51563:1;51546:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51546:19:0::1;51596:3;51578:11;51590:1;51578:14;;;;;;;;:::i;:::-;;;;;;;;;51568:7;:24;;;;:::i;:::-;51567:32;;;;:::i;:::-;51523:77;::::0;-1:-1:-1;;;;;;51523:77:0::1;::::0;;;;;;-1:-1:-1;;;;;23560:32:1;;;51523:77:0::1;::::0;::::1;23542:51:1::0;23609:18;;;23602:34;23515:18;;51523:77:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;51506:3:0;::::1;::::0;::::1;:::i;:::-;;;;51467:141;;;;51275:338;28331:182:::0;;51185:428;;:::o;41421:311::-;41558:28;41568:4;41574:2;41578:7;41558:9;:28::i;:::-;41609:48;41632:4;41638:2;41642:7;41651:5;41609:22;:48::i;:::-;41593:133;;;;-1:-1:-1;;;41593:133:0;;;;;;;:::i;51939:229::-;49610:12;;-1:-1:-1;;;;;49610:12:0;49596:10;:26;49588:67;;;;-1:-1:-1;;;49588:67:0;;24519:2:1;49588:67:0;;;24501:21:1;24558:2;24538:18;;;24531:30;24597;24577:18;;;24570:58;24645:18;;49588:67:0;24317:352:1;49588:67:0;52030:12:::1;::::0;-1:-1:-1;;;;;52030:12:0;;::::1;52015:27:::0;;::::1;::::0;52007:82:::1;;;::::0;-1:-1:-1;;;52007:82:0;;24876:2:1;52007:82:0::1;::::0;::::1;24858:21:1::0;24915:2;24895:18;;;24888:30;24954:34;24934:18;;;24927:62;-1:-1:-1;;;25005:18:1;;;24998:40;25055:19;;52007:82:0::1;24674:406:1::0;52007:82:0::1;52096:12;:26:::0;;-1:-1:-1;;;;;;52096:26:0::1;-1:-1:-1::0;;;;;52096:26:0;::::1;;::::0;;52129:16:::1;:19:::0;;52096:26;;52129:16;-1:-1:-1;;52129:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;52129:33:0::1;;;;;-1:-1:-1::0;;;;;52129:33:0::1;;;;;;51939:229:::0;:::o;39047:288::-;39145:13;39170:21;39194:10;:8;:10::i;:::-;39170:34;;39249:1;39231:7;39225:21;:25;:104;;;;;;;;;;;;;;;;;39286:7;39295:18;:7;:16;:18::i;:::-;39269:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39225:104;39211:118;39047:288;-1:-1:-1;;;39047:288:0:o;35010:96::-;35057:7;35082:14;35278:12;;-1:-1:-1;;35278:30:0;;35189:132;35082:14;:18;;35099:1;35082:18;:::i;52822:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59062:92::-;59106:13;59135;59128:20;;;;;:::i;50228:115::-;49610:12;;-1:-1:-1;;;;;49610:12:0;49596:10;:26;49588:67;;;;-1:-1:-1;;;49588:67:0;;24519:2:1;49588:67:0;;;24501:21:1;24558:2;24538:18;;;24531:30;24597;24577:18;;;24570:58;24645:18;;49588:67:0;24317:352:1;49588:67:0;50312:1:::1;50288:21;:25;50280:34;;;::::0;::::1;;50323:14;:12;:14::i;55593:590::-:0;55691:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;55720:11:0;;;;:19;;:11;:19;55691:48;55683:88;;;;-1:-1:-1;;;55683:88:0;;13902:2:1;55683:88:0;;;13884:21:1;13941:2;13921:18;;;13914:30;13980:29;13960:18;;;13953:57;14027:18;;55683:88:0;13700:351:1;55683:88:0;55790:32;55804:3;55809:12;;55790:13;:32::i;:::-;55782:73;;;;-1:-1:-1;;;55782:73:0;;14258:2:1;55782:73:0;;;14240:21:1;14297:2;14277:18;;;14270:30;14336;14316:18;;;14309:58;14384:18;;55782:73:0;14056:352:1;55782:73:0;55894:14;55874:16;:14;:16::i;:::-;:34;;55866:82;;;;-1:-1:-1;;;55866:82:0;;;;;;;:::i;:::-;55967:21;55981:3;55986:1;55967:13;:21::i;:::-;55959:82;;;;-1:-1:-1;;;55959:82:0;;;;;;;:::i;:::-;56073:11;56082:1;56073:8;:11::i;:::-;56060:9;:24;56052:76;;;;-1:-1:-1;;;56052:76:0;;;;;;;:::i;:::-;56151:24;56161:3;56166:1;56169:5;56151:9;:24::i;27645:234::-;25193:7;25220:6;-1:-1:-1;;;;;25220:6:0;23953:10;25367:23;25359:68;;;;-1:-1:-1;;;25359:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27719:22:0;::::1;27711:50;;;::::0;-1:-1:-1;;;27711:50:0;;16146:2:1;27711:50:0::1;::::0;::::1;16128:21:1::0;16185:2;16165:18;;;16158:30;-1:-1:-1;;;16204:18:1;;;16197:45;16259:18;;27711:50:0::1;15944:339:1::0;27711:50:0::1;27776:16;27783:8;27776:6;:16::i;:::-;27768:72;;;::::0;-1:-1:-1;;;27768:72:0;;25788:2:1;27768:72:0::1;::::0;::::1;25770:21:1::0;25827:2;25807:18;;;25800:30;25866:34;25846:18;;;25839:62;-1:-1:-1;;;25917:18:1;;;25910:41;25968:19;;27768:72:0::1;25586:407:1::0;27768:72:0::1;-1:-1:-1::0;;;;;27851:14:0::1;27868:5;27851:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;27851:22:0::1;::::0;;27645:234::o;52378:98::-;52433:7;52464:6;52456:5;;:14;;;;:::i;26052:201::-;25193:7;25220:6;-1:-1:-1;;;;;25220:6:0;23953:10;25367:23;25359:68;;;;-1:-1:-1;;;25359:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26141:22:0;::::1;26133:73;;;::::0;-1:-1:-1;;;26133:73:0;;26200:2:1;26133:73:0::1;::::0;::::1;26182:21:1::0;26239:2;26219:18;;;26212:30;26278:34;26258:18;;;26251:62;-1:-1:-1;;;26329:18:1;;;26322:36;26375:19;;26133:73:0::1;25998:402:1::0;26133:73:0::1;26217:28;26236:8;26217:18;:28::i;57376:125::-:0;28338:13;25220:6;;-1:-1:-1;;;;;25220:6:0;23953:10;28354:23;;;;28338:13;28399:20;;28018:188;:::i;28399:20::-;28384:35;;28434:8;:19;;;;28446:7;28434:19;28426:73;;;;-1:-1:-1;;;28426:73:0;;;;;;;:::i;:::-;57439:25:::1;:23;:25::i;57941:242::-:0;58019:4;58055:1;58044:7;:12;;58036:66;;;;-1:-1:-1;;;58036:66:0;;26607:2:1;58036:66:0;;;26589:21:1;26646:2;26626:18;;;26619:30;26685:34;26665:18;;;26658:62;-1:-1:-1;;;26736:18:1;;;26729:39;26785:19;;58036:66:0;26405:405:1;58036:66:0;58159:16;;58147:7;58121:23;58135:8;58121:13;:23::i;:::-;:33;;;;:::i;:::-;58120:55;;;57941:242;-1:-1:-1;;;57941:242:0:o;42108:129::-;42191:40;42201:2;42205:8;42215:11;42191:40;;;;;;;;;;;;:9;:40::i;41967:135::-;42024:4;42063:7;34737:1;42044:26;;:52;;;;-1:-1:-1;;42084:12:0;;-1:-1:-1;42074:22:0;41967:135::o;45851:172::-;45948:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45948:29:0;-1:-1:-1;;;;;45948:29:0;;;;;;;;;45989:28;;45948:24;;45989:28;;;;;;;45851:172;;;:::o;44220:1529::-;44317:35;44355:20;44367:7;44355:11;:20::i;:::-;44426:18;;44317:58;;-1:-1:-1;44384:22:0;;-1:-1:-1;;;;;44410:34:0;23953:10;-1:-1:-1;;;;;44410:34:0;;:81;;;-1:-1:-1;23953:10:0;44455:20;44467:7;44455:11;:20::i;:::-;-1:-1:-1;;;;;44455:36:0;;44410:81;:142;;;-1:-1:-1;44519:18:0;;44502:50;;23953:10;40751:186;:::i;44502:50::-;44384:169;;44578:17;44562:101;;;;-1:-1:-1;;;44562:101:0;;27017:2:1;44562:101:0;;;26999:21:1;27056:2;27036:18;;;27029:30;27095:34;27075:18;;;27068:62;-1:-1:-1;;;27146:18:1;;;27139:48;27204:19;;44562:101:0;26815:414:1;44562:101:0;44710:4;-1:-1:-1;;;;;44688:26:0;:13;:18;;;-1:-1:-1;;;;;44688:26:0;;44672:98;;;;-1:-1:-1;;;44672:98:0;;27436:2:1;44672:98:0;;;27418:21:1;27475:2;27455:18;;;27448:30;27514:34;27494:18;;;27487:62;-1:-1:-1;;;27565:18:1;;;27558:36;27611:19;;44672:98:0;27234:402:1;44672:98:0;-1:-1:-1;;;;;44785:16:0;;44777:66;;;;-1:-1:-1;;;44777:66:0;;27843:2:1;44777:66:0;;;27825:21:1;27882:2;27862:18;;;27855:30;27921:34;27901:18;;;27894:62;-1:-1:-1;;;27972:18:1;;;27965:35;28017:19;;44777:66:0;27641:401:1;44777:66:0;44952:49;44969:1;44973:7;44982:13;:18;;;44952:8;:49::i;:::-;-1:-1:-1;;;;;45010:18:0;;;;;;:12;:18;;;;;:31;;45040:1;;45010:18;:31;;45040:1;;-1:-1:-1;;;;;45010:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;45010:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45048:16:0;;-1:-1:-1;45048:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;45048:16:0;;:29;;-1:-1:-1;;45048:29:0;;:::i;:::-;;;-1:-1:-1;;;;;45048:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45107:43:0;;;;;;;;-1:-1:-1;;;;;45107:43:0;;;;;-1:-1:-1;;;;;45133:15:0;45107:43;;;;;;;;;-1:-1:-1;45084:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;45084:66:0;-1:-1:-1;;;;;;45084:66:0;;;;;;;;;;;45400:11;45096:7;-1:-1:-1;45400:11:0;:::i;:::-;45463:1;45422:24;;;:11;:24;;;;;:29;45378:33;;-1:-1:-1;;;;;;45422:29:0;45418:236;;45480:20;45488:11;45480:7;:20::i;:::-;45476:171;;;45540:97;;;;;;;;45567:18;;-1:-1:-1;;;;;45540:97:0;;;;;;45598:28;;;;-1:-1:-1;;;;;45540:97:0;;;;;;;;;-1:-1:-1;45513:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;45513:124:0;-1:-1:-1;;;;;;45513:124:0;;;;;;;;;;;;45476:171;45686:7;45682:2;-1:-1:-1;;;;;45667:27:0;45676:4;-1:-1:-1;;;;;45667:27:0;;;;;;;;;;;45701:42;56424:801;29539:202;29672:4;29727;29698:25;29711:5;29718:4;29698:12;:25::i;:::-;:33;;29539:202;-1:-1:-1;;;;29539:202:0:o;37555:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;37679:7:0;;34737:1;37720:23;;:46;;;;;37754:12;;37747:4;:19;37720:46;37716:706;;;37783:31;37817:17;;;:11;:17;;;;;;;;;37783:51;;;;;;;;;-1:-1:-1;;;;;37783:51:0;;;;;-1:-1:-1;;;37783:51:0;;;-1:-1:-1;;;;;37783:51:0;;;;;;;;37853:28;37849:85;;37909:9;37555:945;-1:-1:-1;;;37555:945:0:o;37849:85::-;-1:-1:-1;;;38230:6:0;38267:17;;;;:11;:17;;;;;;;;;38255:29;;;;;;;;;-1:-1:-1;;;;;38255:29:0;;;;;-1:-1:-1;;;38255:29:0;;;-1:-1:-1;;;;;38255:29:0;;;;;;;;38307:28;38303:93;;38367:9;37555:945;-1:-1:-1;;;37555:945:0:o;38303:93::-;38198:213;;37716:706;38437:57;;-1:-1:-1;;;38437:57:0;;28656:2:1;38437:57:0;;;28638:21:1;28695:2;28675:18;;;28668:30;28734:34;28714:18;;;28707:62;-1:-1:-1;;;28785:18:1;;;28778:45;28840:19;;38437:57:0;28454:411:1;26411:191:0;26485:16;26504:6;;-1:-1:-1;;;;;26521:17:0;;;-1:-1:-1;;;;;;26521:17:0;;;;;;26554:40;;26504:6;;;;;;;26554:40;;26485:16;26554:40;26474:128;26411:191;:::o;50349:278::-;50408:21;50390:15;50446:176;50464:19;;50460:1;:23;50446:176;;;50504:108;50531:16;50548:1;50531:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50531:19:0;50596:3;50578:11;50590:1;50578:14;;;;;;;;:::i;:::-;;;;;;;;;50568:7;:24;;;;:::i;:::-;50567:32;;;;:::i;:::-;50504:10;:108::i;:::-;50485:3;;;;:::i;:::-;;;;50446:176;;47640:690;47777:4;-1:-1:-1;;;;;47794:13:0;;1816:19;:23;47790:535;;47833:72;;-1:-1:-1;;;47833:72:0;;-1:-1:-1;;;;;47833:36:0;;;;;:72;;23953:10;;47884:4;;47890:7;;47899:5;;47833:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47833:72:0;;;;;;;;-1:-1:-1;;47833:72:0;;;;;;;;;;;;:::i;:::-;;;47820:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48064:6;:13;48081:1;48064:18;48060:215;;48097:61;;-1:-1:-1;;;48097:61:0;;;;;;;:::i;48060:215::-;48243:6;48237:13;48228:6;48224:2;48220:15;48213:38;47820:464;-1:-1:-1;;;;;;47955:55:0;-1:-1:-1;;;47955:55:0;;-1:-1:-1;47948:62:0;;47790:535;-1:-1:-1;48313:4:0;47790:535;47640:690;;;;;;:::o;18704:723::-;18760:13;18981:5;18990:1;18981:10;18977:53;;-1:-1:-1;;19008:10:0;;;;;;;;;;;;-1:-1:-1;;;19008:10:0;;;;;18704:723::o;18977:53::-;19055:5;19040:12;19096:78;19103:9;;19096:78;;19129:8;;;;:::i;:::-;;-1:-1:-1;19152:10:0;;-1:-1:-1;19160:2:0;19152:10;;:::i;:::-;;;19096:78;;;19184:19;19216:6;-1:-1:-1;;;;;19206:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19206:17:0;;19184:39;;19234:154;19241:10;;19234:154;;19268:11;19278:1;19268:11;;:::i;:::-;;-1:-1:-1;19337:10:0;19345:2;19337:5;:10;:::i;:::-;19324:24;;:2;:24;:::i;:::-;19311:39;;19294:6;19301;19294:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19294:56:0;;;;;;;;-1:-1:-1;19365:11:0;19374:2;19365:11;;:::i;:::-;;;19234:154;;37309:240;37370:7;-1:-1:-1;;;;;37402:19:0;;37386:102;;;;-1:-1:-1;;;37386:102:0;;30070:2:1;37386:102:0;;;30052:21:1;30109:2;30089:18;;;30082:30;30148:34;30128:18;;;30121:62;-1:-1:-1;;;30199:18:1;;;30192:47;30256:19;;37386:102:0;29868:413:1;37386:102:0;-1:-1:-1;;;;;;37510:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37510:32:0;;-1:-1:-1;;;;;37510:32:0;;37309:240::o;42566:1434::-;42717:12;;-1:-1:-1;;;;;42744:16:0;;42736:62;;;;-1:-1:-1;;;42736:62:0;;30488:2:1;42736:62:0;;;30470:21:1;30527:2;30507:18;;;30500:30;30566:34;30546:18;;;30539:62;-1:-1:-1;;;30617:18:1;;;30610:31;30658:19;;42736:62:0;30286:397:1;42736:62:0;42935:21;42943:12;42935:7;:21::i;:::-;42934:22;42926:64;;;;-1:-1:-1;;;42926:64:0;;30890:2:1;42926:64:0;;;30872:21:1;30929:2;30909:18;;;30902:30;30968:31;30948:18;;;30941:59;31017:18;;42926:64:0;30688:353:1;42926:64:0;43076:20;;;43091:5;43076:20;43072:116;;43129:12;;43117:8;:24;;43109:71;;;;-1:-1:-1;;;43109:71:0;;31248:2:1;43109:71:0;;;31230:21:1;31287:2;31267:18;;;31260:30;31326:34;31306:18;;;31299:62;-1:-1:-1;;;31377:18:1;;;31370:32;31419:19;;43109:71:0;31046:398:1;43109:71:0;-1:-1:-1;;;;;43299:16:0;;43266:30;43299:16;;;:12;:16;;;;;;;;;43266:49;;;;;;;;;-1:-1:-1;;;;;43266:49:0;;;;;-1:-1:-1;;;43266:49:0;;;;;;;;;;;43341:139;;;;;;;;43361:19;;43266:49;;43341:139;;;43361:39;;43391:8;;43361:39;:::i;:::-;-1:-1:-1;;;;;43341:139:0;;;;;43437:11;:35;;43463:8;43437:35;;;43451:1;43437:35;43409:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;43341:139:0;;;;;;-1:-1:-1;;;;;43322:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;43322:158:0;;;;;;;;;;;;43515:43;;;;;;;;;;-1:-1:-1;;;;;43541:15:0;43515:43;;;;;;;;43487:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;43487:71:0;-1:-1:-1;;;;;;43487:71:0;;;;;;;;;;;;;;;;;;43499:12;;43611:281;43635:8;43631:1;:12;43611:281;;;43664:38;;43689:12;;-1:-1:-1;;;;;43664:38:0;;;43681:1;;43664:38;;43681:1;;43664:38;43729:59;43760:1;43764:2;43768:12;43782:5;43729:22;:59::i;:::-;43711:150;;;;-1:-1:-1;;;43711:150:0;;;;;;;:::i;:::-;43870:14;;;;:::i;:::-;;;;43645:3;;;;;:::i;:::-;;;;43611:281;;;-1:-1:-1;43900:12:0;:27;-1:-1:-1;;;;;;42566:1434:0:o;30113:701::-;30196:7;30241:4;30196:7;30258:515;30282:5;:12;30278:1;:16;30258:515;;;30318:20;30341:5;30347:1;30341:8;;;;;;;;:::i;:::-;;;;;;;30318:31;;30386:12;30370;:28;30366:394;;30892:13;30946:15;;;30984:4;30977:15;;;31033:4;31017:21;;30502:57;;30366:394;;;30892:13;30946:15;;;30984:4;30977:15;;;31033:4;31017:21;;30685:57;;30366:394;-1:-1:-1;30296:3:0;;;;:::i;:::-;;;;30258:515;;;-1:-1:-1;30792:12:0;30113:701;-1:-1:-1;;;30113:701:0:o;50635:175::-;50708:12;50726:8;-1:-1:-1;;;;;50726:13:0;50747:7;50726:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50707:52;;;50776:7;50768:36;;;;-1:-1:-1;;;50768:36:0;;31861:2:1;50768:36:0;;;31843:21:1;31900:2;31880:18;;;31873:30;-1:-1:-1;;;31919:18:1;;;31912:46;31975:18;;50768:36:0;31659:340:1;196:131;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:254::-;1020:6;1028;1081:2;1069:9;1060:7;1056:23;1052:32;1049:52;;;1097:1;1094;1087:12;1049:52;1120:29;1139:9;1120:29;:::i;:::-;1110:39;1196:2;1181:18;;;;1168:32;;-1:-1:-1;;;952:254:1:o;1211:250::-;1296:1;1306:113;1320:6;1317:1;1314:13;1306:113;;;1396:11;;;1390:18;1377:11;;;1370:39;1342:2;1335:10;1306:113;;;-1:-1:-1;;1453:1:1;1435:16;;1428:27;1211:250::o;1466:271::-;1508:3;1546:5;1540:12;1573:6;1568:3;1561:19;1589:76;1658:6;1651:4;1646:3;1642:14;1635:4;1628:5;1624:16;1589:76;:::i;:::-;1719:2;1698:15;-1:-1:-1;;1694:29:1;1685:39;;;;1726:4;1681:50;;1466:271;-1:-1:-1;;1466:271:1:o;1742:220::-;1891:2;1880:9;1873:21;1854:4;1911:45;1952:2;1941:9;1937:18;1929:6;1911:45;:::i;1967:180::-;2026:6;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;-1:-1:-1;2118:23:1;;1967:180;-1:-1:-1;1967:180:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2875:367::-;2938:8;2948:6;3002:3;2995:4;2987:6;2983:17;2979:27;2969:55;;3020:1;3017;3010:12;2969:55;-1:-1:-1;3043:20:1;;-1:-1:-1;;;;;3075:30:1;;3072:50;;;3118:1;3115;3108:12;3072:50;3155:4;3147:6;3143:17;3131:29;;3215:3;3208:4;3198:6;3195:1;3191:14;3183:6;3179:27;3175:38;3172:47;3169:67;;;3232:1;3229;3222:12;3169:67;2875:367;;;;;:::o;3247:511::-;3342:6;3350;3358;3411:2;3399:9;3390:7;3386:23;3382:32;3379:52;;;3427:1;3424;3417:12;3379:52;3450:29;3469:9;3450:29;:::i;:::-;3440:39;;3530:2;3519:9;3515:18;3502:32;-1:-1:-1;;;;;3549:6:1;3546:30;3543:50;;;3589:1;3586;3579:12;3543:50;3628:70;3690:7;3681:6;3670:9;3666:22;3628:70;:::i;:::-;3247:511;;3717:8;;-1:-1:-1;3602:96:1;;-1:-1:-1;;;;3247:511:1:o;3952:579::-;4056:6;4064;4072;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4248:2;4237:9;4233:18;4220:32;4210:42;;4303:2;4292:9;4288:18;4275:32;-1:-1:-1;;;;;4322:6:1;4319:30;4316:50;;;4362:1;4359;4352:12;4316:50;4401:70;4463:7;4454:6;4443:9;4439:22;4401:70;:::i;:::-;3952:579;;;;-1:-1:-1;4490:8:1;-1:-1:-1;;;;3952:579:1:o;4536:186::-;4595:6;4648:2;4636:9;4627:7;4623:23;4619:32;4616:52;;;4664:1;4661;4654:12;4616:52;4687:29;4706:9;4687:29;:::i;4912:592::-;4983:6;4991;5044:2;5032:9;5023:7;5019:23;5015:32;5012:52;;;5060:1;5057;5050:12;5012:52;5100:9;5087:23;-1:-1:-1;;;;;5170:2:1;5162:6;5159:14;5156:34;;;5186:1;5183;5176:12;5156:34;5224:6;5213:9;5209:22;5199:32;;5269:7;5262:4;5258:2;5254:13;5250:27;5240:55;;5291:1;5288;5281:12;5240:55;5331:2;5318:16;5357:2;5349:6;5346:14;5343:34;;;5373:1;5370;5363:12;5343:34;5418:7;5413:2;5404:6;5400:2;5396:15;5392:24;5389:37;5386:57;;;5439:1;5436;5429:12;5386:57;5470:2;5462:11;;;;;5492:6;;-1:-1:-1;4912:592:1;;-1:-1:-1;;;;4912:592:1:o;5876:118::-;5962:5;5955:13;5948:21;5941:5;5938:32;5928:60;;5984:1;5981;5974:12;5999:315;6064:6;6072;6125:2;6113:9;6104:7;6100:23;6096:32;6093:52;;;6141:1;6138;6131:12;6093:52;6164:29;6183:9;6164:29;:::i;:::-;6154:39;;6243:2;6232:9;6228:18;6215:32;6256:28;6278:5;6256:28;:::i;:::-;6303:5;6293:15;;;5999:315;;;;;:::o;6319:127::-;6380:10;6375:3;6371:20;6368:1;6361:31;6411:4;6408:1;6401:15;6435:4;6432:1;6425:15;6451:1138;6546:6;6554;6562;6570;6623:3;6611:9;6602:7;6598:23;6594:33;6591:53;;;6640:1;6637;6630:12;6591:53;6663:29;6682:9;6663:29;:::i;:::-;6653:39;;6711:38;6745:2;6734:9;6730:18;6711:38;:::i;:::-;6701:48;;6796:2;6785:9;6781:18;6768:32;6758:42;;6851:2;6840:9;6836:18;6823:32;-1:-1:-1;;;;;6915:2:1;6907:6;6904:14;6901:34;;;6931:1;6928;6921:12;6901:34;6969:6;6958:9;6954:22;6944:32;;7014:7;7007:4;7003:2;6999:13;6995:27;6985:55;;7036:1;7033;7026:12;6985:55;7072:2;7059:16;7094:2;7090;7087:10;7084:36;;;7100:18;;:::i;:::-;7175:2;7169:9;7143:2;7229:13;;-1:-1:-1;;7225:22:1;;;7249:2;7221:31;7217:40;7205:53;;;7273:18;;;7293:22;;;7270:46;7267:72;;;7319:18;;:::i;:::-;7359:10;7355:2;7348:22;7394:2;7386:6;7379:18;7434:7;7429:2;7424;7420;7416:11;7412:20;7409:33;7406:53;;;7455:1;7452;7445:12;7406:53;7511:2;7506;7502;7498:11;7493:2;7485:6;7481:15;7468:46;7556:1;7551:2;7546;7538:6;7534:15;7530:24;7523:35;7577:6;7567:16;;;;;;;6451:1138;;;;;;;:::o;7594:260::-;7662:6;7670;7723:2;7711:9;7702:7;7698:23;7694:32;7691:52;;;7739:1;7736;7729:12;7691:52;7762:29;7781:9;7762:29;:::i;:::-;7752:39;;7810:38;7844:2;7833:9;7829:18;7810:38;:::i;:::-;7800:48;;7594:260;;;;;:::o;8214:410::-;8416:2;8398:21;;;8455:2;8435:18;;;8428:30;8494:34;8489:2;8474:18;;8467:62;-1:-1:-1;;;8560:2:1;8545:18;;8538:44;8614:3;8599:19;;8214:410::o;8629:401::-;8831:2;8813:21;;;8870:2;8850:18;;;8843:30;8909:34;8904:2;8889:18;;8882:62;-1:-1:-1;;;8975:2:1;8960:18;;8953:35;9020:3;9005:19;;8629:401::o;9035:412::-;9237:2;9219:21;;;9276:2;9256:18;;;9249:30;9315:34;9310:2;9295:18;;9288:62;-1:-1:-1;;;9381:2:1;9366:18;;9359:46;9437:3;9422:19;;9035:412::o;9452:127::-;9513:10;9508:3;9504:20;9501:1;9494:31;9544:4;9541:1;9534:15;9568:4;9565:1;9558:15;9584:125;9649:9;;;9670:10;;;9667:36;;;9683:18;;:::i;9714:400::-;9916:2;9898:21;;;9955:2;9935:18;;;9928:30;9994:34;9989:2;9974:18;;9967:62;-1:-1:-1;;;10060:2:1;10045:18;;10038:34;10104:3;10089:19;;9714:400::o;10119:404::-;10321:2;10303:21;;;10360:2;10340:18;;;10333:30;10399:34;10394:2;10379:18;;10372:62;-1:-1:-1;;;10465:2:1;10450:18;;10443:38;10513:3;10498:19;;10119:404::o;10528:380::-;10607:1;10603:12;;;;10650;;;10671:61;;10725:4;10717:6;10713:17;10703:27;;10671:61;10778:2;10770:6;10767:14;10747:18;10744:38;10741:161;;10824:10;10819:3;10815:20;10812:1;10805:31;10859:4;10856:1;10849:15;10887:4;10884:1;10877:15;10741:161;;10528:380;;;:::o;12559:135::-;12598:3;12619:17;;;12616:43;;12639:18;;:::i;:::-;-1:-1:-1;12686:1:1;12675:13;;12559:135::o;14413:399::-;14615:2;14597:21;;;14654:2;14634:18;;;14627:30;14693:34;14688:2;14673:18;;14666:62;-1:-1:-1;;;14759:2:1;14744:18;;14737:33;14802:3;14787:19;;14413:399::o;14817:405::-;15019:2;15001:21;;;15058:2;15038:18;;;15031:30;15097:34;15092:2;15077:18;;15070:62;-1:-1:-1;;;15163:2:1;15148:18;;15141:39;15212:3;15197:19;;14817:405::o;15583:356::-;15785:2;15767:21;;;15804:18;;;15797:30;15863:34;15858:2;15843:18;;15836:62;15930:2;15915:18;;15583:356::o;17939:545::-;18041:2;18036:3;18033:11;18030:448;;;18077:1;18102:5;18098:2;18091:17;18147:4;18143:2;18133:19;18217:2;18205:10;18201:19;18198:1;18194:27;18188:4;18184:38;18253:4;18241:10;18238:20;18235:47;;;-1:-1:-1;18276:4:1;18235:47;18331:2;18326:3;18322:12;18319:1;18315:20;18309:4;18305:31;18295:41;;18386:82;18404:2;18397:5;18394:13;18386:82;;;18449:17;;;18430:1;18419:13;18386:82;;18660:1206;-1:-1:-1;;;;;18779:3:1;18776:27;18773:53;;;18806:18;;:::i;:::-;18835:94;18925:3;18885:38;18917:4;18911:11;18885:38;:::i;:::-;18879:4;18835:94;:::i;:::-;18955:1;18980:2;18975:3;18972:11;18997:1;18992:616;;;;19652:1;19669:3;19666:93;;;-1:-1:-1;19725:19:1;;;19712:33;19666:93;-1:-1:-1;;18617:1:1;18613:11;;;18609:24;18605:29;18595:40;18641:1;18637:11;;;18592:57;19772:78;;18965:895;;18992:616;17886:1;17879:14;;;17923:4;17910:18;;-1:-1:-1;;19028:17:1;;;19129:9;19151:229;19165:7;19162:1;19159:14;19151:229;;;19254:19;;;19241:33;19226:49;;19361:4;19346:20;;;;19314:1;19302:14;;;;19181:12;19151:229;;;19155:3;19408;19399:7;19396:16;19393:159;;;19532:1;19528:6;19522:3;19516;19513:1;19509:11;19505:21;19501:34;19497:39;19484:9;19479:3;19475:19;19462:33;19458:79;19450:6;19443:95;19393:159;;;19595:1;19589:3;19586:1;19582:11;19578:19;19572:4;19565:33;18965:895;;18660:1206;;;:::o;20688:403::-;20890:2;20872:21;;;20929:2;20909:18;;;20902:30;20968:34;20963:2;20948:18;;20941:62;-1:-1:-1;;;21034:2:1;21019:18;;21012:37;21081:3;21066:19;;20688:403::o;22213:184::-;22283:6;22336:2;22324:9;22315:7;22311:23;22307:32;22304:52;;;22352:1;22349;22342:12;22304:52;-1:-1:-1;22375:16:1;;22213:184;-1:-1:-1;22213:184:1:o;22806:127::-;22867:10;22862:3;22858:20;22855:1;22848:31;22898:4;22895:1;22888:15;22922:4;22919:1;22912:15;22938:168;22978:7;23044:1;23040;23036:6;23032:14;23029:1;23026:21;23021:1;23014:9;23007:17;23003:45;23000:71;;;23051:18;;:::i;:::-;-1:-1:-1;23091:9:1;;22938:168::o;23111:127::-;23172:10;23167:3;23163:20;23160:1;23153:31;23203:4;23200:1;23193:15;23227:4;23224:1;23217:15;23243:120;23283:1;23309;23299:35;;23314:18;;:::i;:::-;-1:-1:-1;23348:9:1;;23243:120::o;23647:245::-;23714:6;23767:2;23755:9;23746:7;23742:23;23738:32;23735:52;;;23783:1;23780;23773:12;23735:52;23815:9;23809:16;23834:28;23856:5;23834:28;:::i;23897:415::-;24099:2;24081:21;;;24138:2;24118:18;;;24111:30;24177:34;24172:2;24157:18;;24150:62;-1:-1:-1;;;24243:2:1;24228:18;;24221:49;24302:3;24287:19;;23897:415::o;25085:496::-;25264:3;25302:6;25296:13;25318:66;25377:6;25372:3;25365:4;25357:6;25353:17;25318:66;:::i;:::-;25447:13;;25406:16;;;;25469:70;25447:13;25406:16;25516:4;25504:17;;25469:70;:::i;:::-;25555:20;;25085:496;-1:-1:-1;;;;25085:496:1:o;28047:200::-;-1:-1:-1;;;;;28183:10:1;;;28171;;;28167:27;;28206:12;;;28203:38;;;28221:18;;:::i;:::-;28203:38;28047:200;;;;:::o;28252:197::-;-1:-1:-1;;;;;28374:10:1;;;28386;;;28370:27;;28409:11;;;28406:37;;;28423:18;;:::i;28870:489::-;-1:-1:-1;;;;;29139:15:1;;;29121:34;;29191:15;;29186:2;29171:18;;29164:43;29238:2;29223:18;;29216:34;;;29286:3;29281:2;29266:18;;29259:31;;;29064:4;;29307:46;;29333:19;;29325:6;29307:46;:::i;:::-;29299:54;28870:489;-1:-1:-1;;;;;;28870:489:1:o;29364:249::-;29433:6;29486:2;29474:9;29465:7;29461:23;29457:32;29454:52;;;29502:1;29499;29492:12;29454:52;29534:9;29528:16;29553:30;29577:5;29553:30;:::i;29618:128::-;29685:9;;;29706:11;;;29703:37;;;29720:18;;:::i;29751:112::-;29783:1;29809;29799:35;;29814:18;;:::i;:::-;-1:-1:-1;29848:9:1;;29751:112::o

Swarm Source

ipfs://3743d7c8c197357ac0f74c7d8fa5f412b4cba6904e9e0da1eca5a033da17f73e
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.