ETH Price: $3,321.14 (-3.29%)
Gas: 18 Gwei

Token

(0x00651d158ec40a02769e926985694daa1652fd1c)
 

Overview

Max Total Supply

2,470 ERC-721 TOKEN*

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cmlxxvi.eth
Balance
1 ERC-721 TOKEN*
0xbd137ed1da224a3e1736e0d0cadb6f534fce7996
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:
PUMA

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-08-19
*/

//-------------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, 88888) { }
    uint8 public CONTRACT_VERSION = 2;
    string public _baseTokenURI = "ipfs://QmSXFgWinByumyEHCkUTdRFeUQvrgHQqCPfshvF8od1BAQ/1.json";

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

  
    /////////////// 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 88888");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!");
        
        _safeMint(_to, 1, false);
    }

    /**
    * @dev Mints a token to an address with a tokenURI.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultiple(address _to, uint256 _amount) public payable {
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(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 PUMA is RamppERC721A {
    constructor() RamppERC721A("PUMA NitroPass", "PUMApass"){}
}

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"}]

6000600a55600b80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a0908152738900a69d2c726051928f9f0f2a27b2cc6432c9a260c0526200005f90600c906002620002b1565b506040805180820190915260058152605f60208201526200008590600d9060026200031b565b506002600e5560006010556012805461ffff19166102001790556040805160608101909152603c8082526200428f6020830139601390620000c790826200041a565b506014805460ff1916600117905560c8601555348015620000e757600080fd5b506040518060400160405280600e81526020016d50554d41204e6974726f5061737360901b8152506040518060400160405280600881526020016750554d417061737360c01b8152508181600262015b38620001526200014c6200025d60201b60201c565b62000261565b60008111620001bf5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002215760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001b6565b60046200022f85826200041a565b5060056200023e84826200041a565b50600391909155608052505060016002819055600f5550620004e69050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805482825590600052602060002090810192821562000309579160200282015b828111156200030957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002d2565b50620003179291506200035e565b5090565b82805482825590600052602060002090810192821562000309579160200282015b8281111562000309578251829060ff169055916020019190600101906200033c565b5b808211156200031757600081556001016200035f565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003a057607f821691505b602082108103620003c157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200041557600081815260208120601f850160051c81016020861015620003f05750805b601f850160051c820191505b818110156200041157828155600101620003fc565b5050505b505050565b81516001600160401b0381111562000436576200043662000375565b6200044e816200044784546200038b565b84620003c7565b602080601f8311600181146200048657600084156200046d5750858301515b600019600386901b1c1916600185901b17855562000411565b600085815260208120601f198616915b82811015620004b75788860151825594840194600190910190840162000496565b5085821015620004d65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051613d6a620005256000396000818161063001528181610c7501528181611303015281816114720152818161195b01526123810152613d6a6000f3fe6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff366004613357565b610b32565b60405190151581526020016103db565b610427610422366004613390565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db919061340a565b34801561045757600080fd5b5061046b61046636600461341d565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e366004613390565b610e17565b3480156104af57600080fd5b506104276104be366004613436565b610f2e565b3480156104cf57600080fd5b506103d16104de36600461341d565b610f39565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a366004613390565b610f5a565b34801561053b57600080fd5b5061040461054a3660046134bd565b6110cf565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e36600461350f565b6111a7565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138c565b3480156105ca57600080fd5b506104276105d9366004613390565b6113dd565b3480156105ea57600080fd5b506104276105f9366004613436565b6114ce565b34801561060a57600080fd5b50610427610619366004613568565b6114e9565b34801561062a57600080fd5b506103d17f000000000000000000000000000000000000000000000000000000000000000081565b34801561065e57600080fd5b5061042761066d36600461341d565b6115e6565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a336600461341d565b611681565b3480156106b457600080fd5b506104276106c336600461341d565b6116e9565b3480156106d457600080fd5b506104276106e3366004613583565b611784565b3480156106f457600080fd5b5061046b61070336600461341d565b6117db565b34801561071457600080fd5b506104276117ed565b34801561072957600080fd5b50610427611841565b34801561073e57600080fd5b506103d161074d366004613568565b611892565b34801561075e57600080fd5b50610427611923565b610427610775366004613568565b611959565b34801561078657600080fd5b50610427611a35565b34801561079b57600080fd5b50610427611a89565b3480156107b057600080fd5b5061046b6107bf36600461341d565b611ae1565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d36600461341d565b611b0b565b34801561083e57600080fd5b5061042761084d36600461341d565b611bb6565b34801561085e57600080fd5b5061087261086d36600461341d565b611c00565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c1d565b3480156108c057600080fd5b506104046108cf366004613568565b611c2c565b3480156108e057600080fd5b506104276108ef366004613602565b611ca9565b34801561090057600080fd5b50610427611d6d565b34801561091557600080fd5b50610427610924366004613390565b611db8565b34801561093557600080fd5b5061042761094436600461364f565b611fda565b34801561095557600080fd5b50610427610964366004613568565b61200d565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a436600461341d565b61213a565b3480156109b557600080fd5b506103d1612198565b3480156109ca57600080fd5b5061043e6121b2565b3480156109df57600080fd5b5061043e612240565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761224f565b610427610a213660046134bd565b6122be565b348015610a3257600080fd5b50610427610a41366004613568565b612422565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b36600461341d565b61251e565b348015610a8c57600080fd5b50610404610a9b36600461372a565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae4366004613568565b61252e565b348015610af557600080fd5b506104276125c6565b348015610b0a57600080fd5b50610404610b19366004613390565b612611565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec9061375d565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec906137ab565b610c578282612611565b610c735760405162461bcd60e51b8152600401610bec906137f0565b7f000000000000000000000000000000000000000000000000000000000000000081610c9d610b1e565b610ca79190613856565b1115610cc55760405162461bcd60e51b8152600401610bec90613869565b610cce8161251e565b3414610cec5760405162461bcd60e51b8152600401610bec906138ad565b610cf882826000612696565b5050565b606060048054610d0b906138f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d37906138f5565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126b1565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117db565b9050806001600160a01b0316836001600160a01b031603610e905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610eac5750610eac8133610a9b565b610f1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f298383836126c7565b505050565b610f29838383612723565b600d8181548110610f4957600080fd5b600091825260209091200154905081565b6000610f6583611892565b8210610fbe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc8610b1e565b905060008060005b8381101561106f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102257805192505b876001600160a01b0316836001600160a01b03160361105c5786840361104e57509350610b9992505050565b836110588161392f565b9450505b50806110678161392f565b915050610fd0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b60115460009081036111235760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119e848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612aa3565b95945050505050565b60125460ff16151560011480156111c5575060145460ff1615156001145b6112115760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121c8483836110cf565b6112685760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112b95760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112db5760405162461bcd60e51b8152600401610bec9061375d565b6112e58484612611565b6113015760405162461bcd60e51b8152600401610bec906137f0565b7f00000000000000000000000000000000000000000000000000000000000000008361132b610b1e565b6113359190613856565b11156113535760405162461bcd60e51b8152600401610bec90613948565b61135c8361251e565b341461137a5760405162461bcd60e51b8152600401610bec906138ad565b61138684846000612696565b50505050565b600080546001600160a01b03163390811491906113a890611c2c565b905081806113b35750805b6113cf5760405162461bcd60e51b8152600401610bec9061398b565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113f990611c2c565b905081806114045750805b6114205760405162461bcd60e51b8152600401610bec9061398b565b600083116114705760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000008361149a610b1e565b6114a49190613856565b11156114c25760405162461bcd60e51b8152600401610bec90613869565b61138684846001612696565b610f2983838360405180602001604052806000815250611fda565b6000546001600160a01b031633146115135760405162461bcd60e51b8152600401610bec906139d4565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156481611c2c565b156115bf5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160290611c2c565b9050818061160d5750805b6116295760405162461bcd60e51b8152600401610bec9061398b565b601154830361167a5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168b610b1e565b82106116e55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170590611c2c565b905081806117105750805b61172c5760405162461bcd60e51b8152600401610bec9061398b565b600183101561177d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a090611c2c565b905081806117ab5750805b6117c75760405162461bcd60e51b8152600401610bec9061398b565b60136117d4848683613a4f565b5050505050565b60006117e682612ab9565b5192915050565b600080546001600160a01b031633908114919061180990611c2c565b905081806118145750805b6118305760405162461bcd60e51b8152600401610bec9061398b565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185d90611c2c565b905081806118685750805b6118845760405162461bcd60e51b8152600401610bec9061398b565b50506012805460ff19169055565b60006001600160a01b0382166118fe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194d5760405162461bcd60e51b8152600401610bec906139d4565b6119576000612be7565b565b7f0000000000000000000000000000000000000000000000000000000000000000611982612198565b11156119a05760405162461bcd60e51b8152600401610bec90613869565b60145460ff16151560011480156119ba575060125460ff16155b6119d65760405162461bcd60e51b8152600401610bec906137ab565b6119e1816001612611565b6119fd5760405162461bcd60e51b8152600401610bec906137f0565b611a07600161251e565b3414611a255760405162461bcd60e51b8152600401610bec90613b0e565b611a328160016000612696565b50565b600080546001600160a01b0316339081149190611a5190611c2c565b90508180611a5c5750805b611a785760405162461bcd60e51b8152600401610bec9061398b565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611aa590611c2c565b90508180611ab05750805b611acc5760405162461bcd60e51b8152600401610bec9061398b565b60004711611ad957600080fd5b610cf8612c37565b600c8181548110611af157600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b2790611c2c565b90508180611b325750805b611b4e5760405162461bcd60e51b8152600401610bec9061398b565b6001831015611baf5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611bd290611c2c565b90508180611bdd5750805b611bf95760405162461bcd60e51b8152600401610bec9061398b565b5050601055565b6040805180820190915260008082526020820152610b9982612ab9565b606060058054610d0b906138f5565b60006001600160a01b038216611c845760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b336001600160a01b03831603611d015760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611d8990611c2c565b90508180611d945750805b611db05760405162461bcd60e51b8152600401610bec9061398b565b6113cf611841565b600080546001600160a01b0316339081149190611dd490611c2c565b90508180611ddf5750805b611dfb5760405162461bcd60e51b8152600401610bec9061398b565b60008311611e0857600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e749190613b55565b1015611ece5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e54811015611fd257816001600160a01b031663a9059cbb600c8381548110611efd57611efd613b6e565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f3057611f30613b6e565b906000526020600020015489611f469190613b84565b611f509190613bb9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbf9190613bcd565b5080611fca8161392f565b915050611ed1565b505050505050565b611fe5848484612723565b611ff184848484612cc5565b6113865760405162461bcd60e51b8152600401610bec90613bea565b600b546001600160a01b031633146120675760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03908116908216036120d85760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061210957612109613b6e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000612146612240565b905060008151116121665760405180602001604052806000815250612191565b8061217084612dc7565b604051602001612181929190613c3d565b6040516020818303038152906040525b9392505050565b60006121a76002546000190190565b610b2d906001613856565b601380546121bf906138f5565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb906138f5565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b505050505081565b606060138054610d0b906138f5565b600b546001600160a01b031633146122a95760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122b657600080fd5b611957612c37565b60125460ff16151560011480156122dc575060145460ff1615156001145b6123285760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b6123338383836110cf565b61237f5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000006123a8612198565b11156123c65760405162461bcd60e51b8152600401610bec90613948565b6123d1836001612611565b6123ed5760405162461bcd60e51b8152600401610bec906137f0565b6123f7600161251e565b34146124155760405162461bcd60e51b8152600401610bec90613b0e565b610f298360016000612696565b6000546001600160a01b0316331461244c5760405162461bcd60e51b8152600401610bec906139d4565b6001600160a01b0381166124945760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61249d81611c2c565b6124fd5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613b84565b6000546001600160a01b031633146125585760405162461bcd60e51b8152600401610bec906139d4565b6001600160a01b0381166125bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a3281612be7565b600080546001600160a01b03163390811491906125e290611c2c565b905081806125ed5750805b6126095760405162461bcd60e51b8152600401610bec9061398b565b611830611a35565b600060018210156126765760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b6015548261268385612ec7565b61268d9190613856565b11159392505050565b610f2983838360405180602001604052806000815250612f65565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061272e82612ab9565b80519091506000906001600160a01b0316336001600160a01b0316148061276557503361275a84610d8e565b6001600160a01b0316145b80612777575081516127779033610a9b565b9050806127e15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128555760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128b95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6128c960008484600001516126c7565b6001600160a01b03851660009081526007602052604081208054600192906128fb9084906001600160801b0316613c6c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261294791859116613c93565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556129ce846001613856565b6000818152600660205260409020549091506001600160a01b0316612a5d576129f6816126b1565b15612a5d5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fd2565b600082612ab08584613237565b14949350505050565b60408051808201909152600080825260208201528180600111158015612ae0575060025481105b15612b87576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b31579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b82579392505050565b612b31565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cb3600c8281548110612c5b57612c5b613b6e565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612c8e57612c8e613b6e565b906000526020600020015485612ca49190613b84565b612cae9190613bb9565b6132ab565b80612cbd8161392f565b915050612c3b565b60006001600160a01b0384163b15612dbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d09903390899088908890600401613cb3565b6020604051808303816000875af1925050508015612d44575060408051601f3d908101601f19168201909252612d4191810190613cf0565b60015b612da1573d808015612d72576040519150601f19603f3d011682016040523d82523d6000602084013e612d77565b606091505b508051600003612d995760405162461bcd60e51b8152600401610bec90613bea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dbf565b5060015b949350505050565b606081600003612dee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e185780612e028161392f565b9150612e119050600a83613bb9565b9150612df2565b6000816001600160401b03811115612e3257612e32613639565b6040519080825280601f01601f191660200182016040528015612e5c576020820181803683370190505b5090505b8415612dbf57612e71600183613d0d565b9150612e7e600a86613d20565b612e89906030613856565b60f81b818381518110612e9e57612e9e613b6e565b60200101906001600160f81b031916908160001a905350612ec0600a86613bb9565b9450612e60565b60006001600160a01b038216612f395760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b038516612fc85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b612fd1816126b1565b1561301e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b821515600003613085576003548411156130855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906130e1908890613c93565b6001600160801b03168152602001856130fa57866130fd565b60005b836020015161310c9190613c93565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561322b5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46131ef6000898488612cc5565b61320b5760405162461bcd60e51b8152600401610bec90613bea565b816132158161392f565b92505080806132239061392f565b9150506131a2565b50600255505050505050565b600081815b84518110156132a357600085828151811061325957613259613b6e565b6020026020010151905080831161327f5760008381526020829052604090209250613290565b600081815260208490526040902092505b508061329b8161392f565b91505061323c565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146132f8576040519150601f19603f3d011682016040523d82523d6000602084013e6132fd565b606091505b5050905080610f295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b6001600160e01b031981168114611a3257600080fd5b60006020828403121561336957600080fd5b813561219181613341565b80356001600160a01b038116811461338b57600080fd5b919050565b600080604083850312156133a357600080fd5b6133ac83613374565b946020939093013593505050565b60005b838110156133d55781810151838201526020016133bd565b50506000910152565b600081518084526133f68160208601602086016133ba565b601f01601f19169290920160200192915050565b60208152600061219160208301846133de565b60006020828403121561342f57600080fd5b5035919050565b60008060006060848603121561344b57600080fd5b61345484613374565b925061346260208501613374565b9150604084013590509250925092565b60008083601f84011261348457600080fd5b5081356001600160401b0381111561349b57600080fd5b6020830191508360208260051b85010111156134b657600080fd5b9250929050565b6000806000604084860312156134d257600080fd5b6134db84613374565b925060208401356001600160401b038111156134f657600080fd5b61350286828701613472565b9497909650939450505050565b6000806000806060858703121561352557600080fd5b61352e85613374565b93506020850135925060408501356001600160401b0381111561355057600080fd5b61355c87828801613472565b95989497509550505050565b60006020828403121561357a57600080fd5b61219182613374565b6000806020838503121561359657600080fd5b82356001600160401b03808211156135ad57600080fd5b818501915085601f8301126135c157600080fd5b8135818111156135d057600080fd5b8660208285010111156135e257600080fd5b60209290920196919550909350505050565b8015158114611a3257600080fd5b6000806040838503121561361557600080fd5b61361e83613374565b9150602083013561362e816135f4565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561366557600080fd5b61366e85613374565b935061367c60208601613374565b92506040850135915060608501356001600160401b038082111561369f57600080fd5b818701915087601f8301126136b357600080fd5b8135818111156136c5576136c5613639565b604051601f8201601f19908116603f011681019083821181831017156136ed576136ed613639565b816040528281528a602084870101111561370657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561373d57600080fd5b61374683613374565b915061375460208401613374565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b9957610b99613840565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061390957607f821691505b60208210810361392957634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161394157613941613840565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610f2957600081815260208120601f850160051c81016020861015613a305750805b601f850160051c820191505b81811015611fd257828155600101613a3c565b6001600160401b03831115613a6657613a66613639565b613a7a83613a7483546138f5565b83613a09565b6000601f841160018114613aae5760008515613a965750838201355b600019600387901b1c1916600186901b1783556117d4565b600083815260209020601f19861690835b82811015613adf5786850135825560209485019460019092019101613abf565b5086821015613afc5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b6757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613b9e57613b9e613840565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bc857613bc8613ba3565b500490565b600060208284031215613bdf57600080fd5b8151612191816135f4565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c4f8184602088016133ba565b835190830190613c638183602088016133ba565b01949350505050565b6001600160801b03828116828216039080821115613c8c57613c8c613840565b5092915050565b6001600160801b03818116838216019080821115613c8c57613c8c613840565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613ce6908301846133de565b9695505050505050565b600060208284031215613d0257600080fd5b815161219181613341565b81810381811115610b9957610b99613840565b600082613d2f57613d2f613ba3565b50069056fea2646970667358221220f646cc9b1c2706e2d0abca7b9632b607ac4c6256457a33f9ced44869bf54083864736f6c63430008100033697066733a2f2f516d5358466757696e4279756d794548436b555464524665555176726748517143506673687646386f64314241512f312e6a736f6e

Deployed Bytecode

0x6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff366004613357565b610b32565b60405190151581526020016103db565b610427610422366004613390565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db919061340a565b34801561045757600080fd5b5061046b61046636600461341d565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e366004613390565b610e17565b3480156104af57600080fd5b506104276104be366004613436565b610f2e565b3480156104cf57600080fd5b506103d16104de36600461341d565b610f39565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a366004613390565b610f5a565b34801561053b57600080fd5b5061040461054a3660046134bd565b6110cf565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e36600461350f565b6111a7565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138c565b3480156105ca57600080fd5b506104276105d9366004613390565b6113dd565b3480156105ea57600080fd5b506104276105f9366004613436565b6114ce565b34801561060a57600080fd5b50610427610619366004613568565b6114e9565b34801561062a57600080fd5b506103d17f0000000000000000000000000000000000000000000000000000000000015b3881565b34801561065e57600080fd5b5061042761066d36600461341d565b6115e6565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a336600461341d565b611681565b3480156106b457600080fd5b506104276106c336600461341d565b6116e9565b3480156106d457600080fd5b506104276106e3366004613583565b611784565b3480156106f457600080fd5b5061046b61070336600461341d565b6117db565b34801561071457600080fd5b506104276117ed565b34801561072957600080fd5b50610427611841565b34801561073e57600080fd5b506103d161074d366004613568565b611892565b34801561075e57600080fd5b50610427611923565b610427610775366004613568565b611959565b34801561078657600080fd5b50610427611a35565b34801561079b57600080fd5b50610427611a89565b3480156107b057600080fd5b5061046b6107bf36600461341d565b611ae1565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d36600461341d565b611b0b565b34801561083e57600080fd5b5061042761084d36600461341d565b611bb6565b34801561085e57600080fd5b5061087261086d36600461341d565b611c00565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c1d565b3480156108c057600080fd5b506104046108cf366004613568565b611c2c565b3480156108e057600080fd5b506104276108ef366004613602565b611ca9565b34801561090057600080fd5b50610427611d6d565b34801561091557600080fd5b50610427610924366004613390565b611db8565b34801561093557600080fd5b5061042761094436600461364f565b611fda565b34801561095557600080fd5b50610427610964366004613568565b61200d565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a436600461341d565b61213a565b3480156109b557600080fd5b506103d1612198565b3480156109ca57600080fd5b5061043e6121b2565b3480156109df57600080fd5b5061043e612240565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761224f565b610427610a213660046134bd565b6122be565b348015610a3257600080fd5b50610427610a41366004613568565b612422565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b36600461341d565b61251e565b348015610a8c57600080fd5b50610404610a9b36600461372a565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae4366004613568565b61252e565b348015610af557600080fd5b506104276125c6565b348015610b0a57600080fd5b50610404610b19366004613390565b612611565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec9061375d565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec906137ab565b610c578282612611565b610c735760405162461bcd60e51b8152600401610bec906137f0565b7f0000000000000000000000000000000000000000000000000000000000015b3881610c9d610b1e565b610ca79190613856565b1115610cc55760405162461bcd60e51b8152600401610bec90613869565b610cce8161251e565b3414610cec5760405162461bcd60e51b8152600401610bec906138ad565b610cf882826000612696565b5050565b606060048054610d0b906138f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d37906138f5565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126b1565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117db565b9050806001600160a01b0316836001600160a01b031603610e905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610eac5750610eac8133610a9b565b610f1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f298383836126c7565b505050565b610f29838383612723565b600d8181548110610f4957600080fd5b600091825260209091200154905081565b6000610f6583611892565b8210610fbe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc8610b1e565b905060008060005b8381101561106f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102257805192505b876001600160a01b0316836001600160a01b03160361105c5786840361104e57509350610b9992505050565b836110588161392f565b9450505b50806110678161392f565b915050610fd0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b60115460009081036111235760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119e848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612aa3565b95945050505050565b60125460ff16151560011480156111c5575060145460ff1615156001145b6112115760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121c8483836110cf565b6112685760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112b95760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112db5760405162461bcd60e51b8152600401610bec9061375d565b6112e58484612611565b6113015760405162461bcd60e51b8152600401610bec906137f0565b7f0000000000000000000000000000000000000000000000000000000000015b388361132b610b1e565b6113359190613856565b11156113535760405162461bcd60e51b8152600401610bec90613948565b61135c8361251e565b341461137a5760405162461bcd60e51b8152600401610bec906138ad565b61138684846000612696565b50505050565b600080546001600160a01b03163390811491906113a890611c2c565b905081806113b35750805b6113cf5760405162461bcd60e51b8152600401610bec9061398b565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113f990611c2c565b905081806114045750805b6114205760405162461bcd60e51b8152600401610bec9061398b565b600083116114705760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000015b388361149a610b1e565b6114a49190613856565b11156114c25760405162461bcd60e51b8152600401610bec90613869565b61138684846001612696565b610f2983838360405180602001604052806000815250611fda565b6000546001600160a01b031633146115135760405162461bcd60e51b8152600401610bec906139d4565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156481611c2c565b156115bf5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160290611c2c565b9050818061160d5750805b6116295760405162461bcd60e51b8152600401610bec9061398b565b601154830361167a5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168b610b1e565b82106116e55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170590611c2c565b905081806117105750805b61172c5760405162461bcd60e51b8152600401610bec9061398b565b600183101561177d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a090611c2c565b905081806117ab5750805b6117c75760405162461bcd60e51b8152600401610bec9061398b565b60136117d4848683613a4f565b5050505050565b60006117e682612ab9565b5192915050565b600080546001600160a01b031633908114919061180990611c2c565b905081806118145750805b6118305760405162461bcd60e51b8152600401610bec9061398b565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185d90611c2c565b905081806118685750805b6118845760405162461bcd60e51b8152600401610bec9061398b565b50506012805460ff19169055565b60006001600160a01b0382166118fe5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194d5760405162461bcd60e51b8152600401610bec906139d4565b6119576000612be7565b565b7f0000000000000000000000000000000000000000000000000000000000015b38611982612198565b11156119a05760405162461bcd60e51b8152600401610bec90613869565b60145460ff16151560011480156119ba575060125460ff16155b6119d65760405162461bcd60e51b8152600401610bec906137ab565b6119e1816001612611565b6119fd5760405162461bcd60e51b8152600401610bec906137f0565b611a07600161251e565b3414611a255760405162461bcd60e51b8152600401610bec90613b0e565b611a328160016000612696565b50565b600080546001600160a01b0316339081149190611a5190611c2c565b90508180611a5c5750805b611a785760405162461bcd60e51b8152600401610bec9061398b565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611aa590611c2c565b90508180611ab05750805b611acc5760405162461bcd60e51b8152600401610bec9061398b565b60004711611ad957600080fd5b610cf8612c37565b600c8181548110611af157600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b2790611c2c565b90508180611b325750805b611b4e5760405162461bcd60e51b8152600401610bec9061398b565b6001831015611baf5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611bd290611c2c565b90508180611bdd5750805b611bf95760405162461bcd60e51b8152600401610bec9061398b565b5050601055565b6040805180820190915260008082526020820152610b9982612ab9565b606060058054610d0b906138f5565b60006001600160a01b038216611c845760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b336001600160a01b03831603611d015760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611d8990611c2c565b90508180611d945750805b611db05760405162461bcd60e51b8152600401610bec9061398b565b6113cf611841565b600080546001600160a01b0316339081149190611dd490611c2c565b90508180611ddf5750805b611dfb5760405162461bcd60e51b8152600401610bec9061398b565b60008311611e0857600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e749190613b55565b1015611ece5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e54811015611fd257816001600160a01b031663a9059cbb600c8381548110611efd57611efd613b6e565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f3057611f30613b6e565b906000526020600020015489611f469190613b84565b611f509190613bb9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbf9190613bcd565b5080611fca8161392f565b915050611ed1565b505050505050565b611fe5848484612723565b611ff184848484612cc5565b6113865760405162461bcd60e51b8152600401610bec90613bea565b600b546001600160a01b031633146120675760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03908116908216036120d85760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061210957612109613b6e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000612146612240565b905060008151116121665760405180602001604052806000815250612191565b8061217084612dc7565b604051602001612181929190613c3d565b6040516020818303038152906040525b9392505050565b60006121a76002546000190190565b610b2d906001613856565b601380546121bf906138f5565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb906138f5565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b505050505081565b606060138054610d0b906138f5565b600b546001600160a01b031633146122a95760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122b657600080fd5b611957612c37565b60125460ff16151560011480156122dc575060145460ff1615156001145b6123285760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b6123338383836110cf565b61237f5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000015b386123a8612198565b11156123c65760405162461bcd60e51b8152600401610bec90613948565b6123d1836001612611565b6123ed5760405162461bcd60e51b8152600401610bec906137f0565b6123f7600161251e565b34146124155760405162461bcd60e51b8152600401610bec90613b0e565b610f298360016000612696565b6000546001600160a01b0316331461244c5760405162461bcd60e51b8152600401610bec906139d4565b6001600160a01b0381166124945760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61249d81611c2c565b6124fd5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613b84565b6000546001600160a01b031633146125585760405162461bcd60e51b8152600401610bec906139d4565b6001600160a01b0381166125bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a3281612be7565b600080546001600160a01b03163390811491906125e290611c2c565b905081806125ed5750805b6126095760405162461bcd60e51b8152600401610bec9061398b565b611830611a35565b600060018210156126765760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b6015548261268385612ec7565b61268d9190613856565b11159392505050565b610f2983838360405180602001604052806000815250612f65565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061272e82612ab9565b80519091506000906001600160a01b0316336001600160a01b0316148061276557503361275a84610d8e565b6001600160a01b0316145b80612777575081516127779033610a9b565b9050806127e15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128555760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128b95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6128c960008484600001516126c7565b6001600160a01b03851660009081526007602052604081208054600192906128fb9084906001600160801b0316613c6c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261294791859116613c93565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556129ce846001613856565b6000818152600660205260409020549091506001600160a01b0316612a5d576129f6816126b1565b15612a5d5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fd2565b600082612ab08584613237565b14949350505050565b60408051808201909152600080825260208201528180600111158015612ae0575060025481105b15612b87576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b31579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b82579392505050565b612b31565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cb3600c8281548110612c5b57612c5b613b6e565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612c8e57612c8e613b6e565b906000526020600020015485612ca49190613b84565b612cae9190613bb9565b6132ab565b80612cbd8161392f565b915050612c3b565b60006001600160a01b0384163b15612dbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d09903390899088908890600401613cb3565b6020604051808303816000875af1925050508015612d44575060408051601f3d908101601f19168201909252612d4191810190613cf0565b60015b612da1573d808015612d72576040519150601f19603f3d011682016040523d82523d6000602084013e612d77565b606091505b508051600003612d995760405162461bcd60e51b8152600401610bec90613bea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dbf565b5060015b949350505050565b606081600003612dee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e185780612e028161392f565b9150612e119050600a83613bb9565b9150612df2565b6000816001600160401b03811115612e3257612e32613639565b6040519080825280601f01601f191660200182016040528015612e5c576020820181803683370190505b5090505b8415612dbf57612e71600183613d0d565b9150612e7e600a86613d20565b612e89906030613856565b60f81b818381518110612e9e57612e9e613b6e565b60200101906001600160f81b031916908160001a905350612ec0600a86613bb9565b9450612e60565b60006001600160a01b038216612f395760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b038516612fc85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b612fd1816126b1565b1561301e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b821515600003613085576003548411156130855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906130e1908890613c93565b6001600160801b03168152602001856130fa57866130fd565b60005b836020015161310c9190613c93565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561322b5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46131ef6000898488612cc5565b61320b5760405162461bcd60e51b8152600401610bec90613bea565b816132158161392f565b92505080806132239061392f565b9150506131a2565b50600255505050505050565b600081815b84518110156132a357600085828151811061325957613259613b6e565b6020026020010151905080831161327f5760008381526020829052604090209250613290565b600081815260208490526040902092505b508061329b8161392f565b91505061323c565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146132f8576040519150601f19603f3d011682016040523d82523d6000602084013e6132fd565b606091505b5050905080610f295760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b6001600160e01b031981168114611a3257600080fd5b60006020828403121561336957600080fd5b813561219181613341565b80356001600160a01b038116811461338b57600080fd5b919050565b600080604083850312156133a357600080fd5b6133ac83613374565b946020939093013593505050565b60005b838110156133d55781810151838201526020016133bd565b50506000910152565b600081518084526133f68160208601602086016133ba565b601f01601f19169290920160200192915050565b60208152600061219160208301846133de565b60006020828403121561342f57600080fd5b5035919050565b60008060006060848603121561344b57600080fd5b61345484613374565b925061346260208501613374565b9150604084013590509250925092565b60008083601f84011261348457600080fd5b5081356001600160401b0381111561349b57600080fd5b6020830191508360208260051b85010111156134b657600080fd5b9250929050565b6000806000604084860312156134d257600080fd5b6134db84613374565b925060208401356001600160401b038111156134f657600080fd5b61350286828701613472565b9497909650939450505050565b6000806000806060858703121561352557600080fd5b61352e85613374565b93506020850135925060408501356001600160401b0381111561355057600080fd5b61355c87828801613472565b95989497509550505050565b60006020828403121561357a57600080fd5b61219182613374565b6000806020838503121561359657600080fd5b82356001600160401b03808211156135ad57600080fd5b818501915085601f8301126135c157600080fd5b8135818111156135d057600080fd5b8660208285010111156135e257600080fd5b60209290920196919550909350505050565b8015158114611a3257600080fd5b6000806040838503121561361557600080fd5b61361e83613374565b9150602083013561362e816135f4565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561366557600080fd5b61366e85613374565b935061367c60208601613374565b92506040850135915060608501356001600160401b038082111561369f57600080fd5b818701915087601f8301126136b357600080fd5b8135818111156136c5576136c5613639565b604051601f8201601f19908116603f011681019083821181831017156136ed576136ed613639565b816040528281528a602084870101111561370657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561373d57600080fd5b61374683613374565b915061375460208401613374565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b9957610b99613840565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061390957607f821691505b60208210810361392957634e487b7160e01b600052602260045260246000fd5b50919050565b60006001820161394157613941613840565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610f2957600081815260208120601f850160051c81016020861015613a305750805b601f850160051c820191505b81811015611fd257828155600101613a3c565b6001600160401b03831115613a6657613a66613639565b613a7a83613a7483546138f5565b83613a09565b6000601f841160018114613aae5760008515613a965750838201355b600019600387901b1c1916600186901b1783556117d4565b600083815260209020601f19861690835b82811015613adf5786850135825560209485019460019092019101613abf565b5086821015613afc5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b6757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613b9e57613b9e613840565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bc857613bc8613ba3565b500490565b600060208284031215613bdf57600080fd5b8151612191816135f4565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c4f8184602088016133ba565b835190830190613c638183602088016133ba565b01949350505050565b6001600160801b03828116828216039080821115613c8c57613c8c613840565b5092915050565b6001600160801b03818116838216019080821115613c8c57613c8c613840565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613ce6908301846133de565b9695505050505050565b600060208284031215613d0257600080fd5b815161219181613341565b81810381811115610b9957610b99613840565b600082613d2f57613d2f613ba3565b50069056fea2646970667358221220f646cc9b1c2706e2d0abca7b9632b607ac4c6256457a33f9ced44869bf54083864736f6c63430008100033

Deployed Bytecode Sourcemap

59297:98:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34679:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;34679:90:0;;;;;;;;36431:370;;;;;;;;;;-1:-1:-1;36431:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36431:370:0;582:187:1;54294:692:0;;;;;;:::i;:::-;;:::i;:::-;;38496:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39911:204::-;;;;;;;;;;-1:-1:-1;39911:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2316:32:1;;;2298:51;;2286:2;2271:18;39911:204:0;2152:203:1;39474:379:0;;;;;;;;;;-1:-1:-1;39474:379:0;;;;;:::i;:::-;;:::i;40761:142::-;;;;;;;;;;-1:-1:-1;40761:142:0;;;;;:::i;:::-;;:::i;49780:37::-;;;;;;;;;;-1:-1:-1;49780:37:0;;;;;:::i;:::-;;:::i;33011:27::-;;;;;;;;;;;;;;;;30939:25;;;;;;;;;;;;;;;;35623:744;;;;;;;;;;-1:-1:-1;35623:744:0;;;;;:::i;:::-;;:::i;31598:287::-;;;;;;;;;;-1:-1:-1;31598:287:0;;;;;:::i;:::-;;:::i;52548:33::-;;;;;;;;;;-1:-1:-1;52548:33:0;;;;;;;;;;;;;;3935:4:1;3923:17;;;3905:36;;3893:2;3878:18;52548:33:0;3763:184:1;56247:801:0;;;;;;:::i;:::-;;:::i;49822:38::-;;;;;;;;;;;;;;;;55085:84;;;;;;;;;;;;;:::i;53076:281::-;;;;;;;;;;-1:-1:-1;53076:281:0;;;;;:::i;:::-;;:::i;40966:157::-;;;;;;;;;;-1:-1:-1;40966:157:0;;;;;:::i;:::-;;:::i;27044:223::-;;;;;;;;;;-1:-1:-1;27044:223:0;;;;;:::i;:::-;;:::i;32967:39::-;;;;;;;;;;;;;;;31178:197;;;;;;;;;;-1:-1:-1;31178:197:0;;;;;:::i;:::-;;:::i;52738:37::-;;;;;;;;;;;;;;;;35155:177;;;;;;;;;;-1:-1:-1;35155:177:0;;;;;:::i;:::-;;:::i;58575:179::-;;;;;;;;;;-1:-1:-1;58575:179:0;;;;;:::i;:::-;;:::i;58983:106::-;;;;;;;;;;-1:-1:-1;58983:106:0;;;;;:::i;:::-;;:::i;38319:118::-;;;;;;;;;;-1:-1:-1;38319:118:0;;;;;:::i;:::-;;:::i;54994:83::-;;;;;;;;;;;;;:::i;32006:103::-;;;;;;;;;;;;;:::i;36857:211::-;;;;;;;;;;-1:-1:-1;36857:211:0;;;;;:::i;:::-;;:::i;25561:103::-;;;;;;;;;;;;;:::i;53576:491::-;;;;;;:::i;:::-;;:::i;31899:99::-;;;;;;;;;;;;;:::i;49867:118::-;;;;;;;;;;;;;:::i;49682:93::-;;;;;;;;;;-1:-1:-1;49682:93:0;;;;;:::i;:::-;;:::i;52010:30::-;;;;;;;;;;;;;;;;24912:87;;;;;;;;;;-1:-1:-1;24958:7:0;24985:6;-1:-1:-1;;;;;24985:6:0;24912:87;;52689:30;;;;;;;;;;-1:-1:-1;52689:30:0;;;;;;;;58199:200;;;;;;;;;;-1:-1:-1;58199:200:0;;;;;:::i;:::-;;:::i;52047:90::-;;;;;;;;;;-1:-1:-1;52047:90:0;;;;;:::i;:::-;;:::i;59095:128::-;;;;;;;;;;-1:-1:-1;59095: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;59095:128:0;5509:362:1;38651:98:0;;;;;;;;;;;;;:::i;27783:188::-;;;;;;;;;;-1:-1:-1;27783:188:0;;;;;:::i;:::-;;:::i;40179:274::-;;;;;;;;;;-1:-1:-1;40179:274:0;;;;;:::i;:::-;;:::i;57475:128::-;;;;;;;;;;;;;:::i;50950:428::-;;;;;;;;;;-1:-1:-1;50950:428:0;;;;;:::i;:::-;;:::i;41186:311::-;;;;;;;;;;-1:-1:-1;41186:311:0;;;;;:::i;:::-;;:::i;51704:229::-;;;;;;;;;;-1:-1:-1;51704:229:0;;;;;:::i;:::-;;:::i;49246:72::-;;;;;;;;;;-1:-1:-1;49246:72:0;;;;-1:-1:-1;;;;;49246:72:0;;;38812:288;;;;;;;;;;-1:-1:-1;38812:288:0;;;;;:::i;:::-;;:::i;34775:96::-;;;;;;;;;;;;;:::i;52588:92::-;;;;;;;;;;;;;:::i;58885:::-;;;;;;;;;;;;;:::i;45794:43::-;;;;;;;;;;;;;;;;49993:115;;;;;;;;;;;;;:::i;55416:590::-;;;;;;:::i;:::-;;:::i;27410:234::-;;;;;;;;;;-1:-1:-1;27410:234:0;;;;;:::i;:::-;;:::i;30971:37::-;;;;;;;;;;-1:-1:-1;30971:37:0;;;;;;;;52143:98;;;;;;;;;;-1:-1:-1;52143:98:0;;;;;:::i;:::-;;:::i;40516:186::-;;;;;;;;;;-1:-1:-1;40516:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40661:25:0;;;40638:4;40661:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40516:186;25817:201;;;;;;;;;;-1:-1:-1;25817:201:0;;;;;:::i;:::-;;:::i;57199:125::-;;;;;;;;;;;;;:::i;57764:242::-;;;;;;;;;;-1:-1:-1;57764:242:0;;;;;:::i;:::-;;:::i;34679:90::-;34726:7;34749:14;35043:12;;-1:-1:-1;;35043:30:0;;34954:132;34749:14;34742:21;;34679:90;:::o;36431:370::-;36558:4;-1:-1:-1;;;;;;36588:40:0;;-1:-1:-1;;;36588:40:0;;:99;;-1:-1:-1;;;;;;;36639:48:0;;-1:-1:-1;;;36639:48:0;36588:99;:160;;;-1:-1:-1;;;;;;;36698:50:0;;-1:-1:-1;;;36698:50:0;36588:160;:207;;;-1:-1:-1;;;;;;;;;;11406:40:0;;;36759:36;36574:221;36431:370;-1:-1:-1;;36431:370:0:o;54294:692::-;54393:1;54382:7;:12;;54374:51;;;;-1:-1:-1;;;54374:51:0;;8061:2:1;54374:51:0;;;8043:21:1;8100:2;8080:18;;;8073:30;8139:28;8119:18;;;8112:56;8185:18;;54374:51:0;;;;;;;;;54455:12;;54444:7;:23;;54436:82;;;;-1:-1:-1;;;54436:82:0;;;;;;;:::i;:::-;54537:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;54560:17:0;;;;:26;54537:49;54529:99;;;;-1:-1:-1;;;54529:99:0;;;;;;;:::i;:::-;54657:27;54671:3;54676:7;54657:13;:27::i;:::-;54649:88;;;;-1:-1:-1;;;54649:88:0;;;;;;;:::i;:::-;54786:14;54775:7;54756:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;54748:93;;;;-1:-1:-1;;;54748:93:0;;;;;;;:::i;:::-;54873:17;54882:7;54873:8;:17::i;:::-;54860:9;:30;54852:83;;;;-1:-1:-1;;;54852:83:0;;;;;;;:::i;:::-;54948:30;54958:3;54963:7;54972:5;54948:9;:30::i;:::-;54294:692;;:::o;38496:94::-;38550:13;38579:5;38572:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38496:94;:::o;39911:204::-;39979:7;40003:16;40011:7;40003;:16::i;:::-;39995:74;;;;-1:-1:-1;;;39995:74:0;;11115:2:1;39995: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;;39995:74:0;10913:409:1;39995:74:0;-1:-1:-1;40085:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40085:24:0;;39911:204::o;39474:379::-;39543:13;39559:24;39575:7;39559:15;:24::i;:::-;39543:40;;39604:5;-1:-1:-1;;;;;39598:11:0;:2;-1:-1:-1;;;;;39598:11:0;;39590:58;;;;-1:-1:-1;;;39590:58:0;;11529:2:1;39590: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;;39590:58:0;11327:398:1;39590:58:0;23718:10;-1:-1:-1;;;;;39673:21:0;;;;:62;;-1:-1:-1;39698:37:0;39715:5;23718:10;40516:186;:::i;39698:37::-;39657:153;;;;-1:-1:-1;;;39657:153:0;;11932:2:1;39657: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;;39657:153:0;11730:421:1;39657:153:0;39819:28;39828:2;39832:7;39841:5;39819:8;:28::i;:::-;39536:317;39474:379;;:::o;40761:142::-;40869:28;40879:4;40885:2;40889:7;40869:9;:28::i;49780:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49780:37:0;:::o;35623:744::-;35732:7;35767:16;35777:5;35767:9;:16::i;:::-;35759:5;:24;35751:71;;;;-1:-1:-1;;;35751:71:0;;12358:2:1;35751: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;;35751:71:0;12156:398:1;35751:71:0;35829:22;35854:13;:11;:13::i;:::-;35829:38;;35874:19;35904:25;35954:9;35949:350;35973:14;35969:1;:18;35949:350;;;36003:31;36037:14;;;:11;:14;;;;;;;;;36003:48;;;;;;;;;-1:-1:-1;;;;;36003:48:0;;;;;-1:-1:-1;;;36003:48:0;;;-1:-1:-1;;;;;36003:48:0;;;;;;;;36064:28;36060:89;;36125:14;;;-1:-1:-1;36060:89:0;36182:5;-1:-1:-1;;;;;36161:26:0;:17;-1:-1:-1;;;;;36161:26:0;;36157:135;;36219:5;36204:11;:20;36200:59;;-1:-1:-1;36246:1:0;-1:-1:-1;36239:8:0;;-1:-1:-1;;;36239:8:0;36200:59;36269:13;;;;:::i;:::-;;;;36157:135;-1:-1:-1;35989:3:0;;;;:::i;:::-;;;;35949:350;;;-1:-1:-1;36305:56:0;;-1:-1:-1;;;36305:56:0;;12901:2:1;36305: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;;36305:56:0;12699:410:1;31598:287:0;31710:10;;31687:4;;31710:15;;31702:51;;;;-1:-1:-1;;;31702:51:0;;13316:2:1;31702:51:0;;;13298:21:1;13355:2;13335:18;;;13328:30;13394:25;13374:18;;;13367:53;13437:18;;31702:51:0;13114:347:1;31702:51:0;31787:21;;-1:-1:-1;;13615:2:1;13611:15;;;13607:53;31787:21:0;;;13595:66:1;31762:12:0;;13677::1;;31787:21:0;;;;;;;;;;;;31777:32;;;;;;31762:47;;31827:50;31846:12;;31827:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;31860:10:0;;;-1:-1:-1;31872:4:0;;-1:-1:-1;31827:18:0;:50::i;:::-;31820:57;31598:287;-1:-1:-1;;;;;31598:287:0:o;56247:801::-;56370:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;56399:11:0;;;;:19;;:11;:19;56370:48;56362:88;;;;-1:-1:-1;;;56362:88:0;;13902:2:1;56362:88:0;;;13884:21:1;13941:2;13921:18;;;13914:30;13980:29;13960:18;;;13953:57;14027:18;;56362:88:0;13700:351:1;56362:88:0;56469:32;56483:3;56488:12;;56469:13;:32::i;:::-;56461:73;;;;-1:-1:-1;;;56461:73:0;;14258:2:1;56461:73:0;;;14240:21:1;14297:2;14277:18;;;14270:30;14336;14316:18;;;14309:58;14384:18;;56461:73:0;14056:352:1;56461:73:0;56564:1;56553:7;:12;;56545:51;;;;-1:-1:-1;;;56545:51:0;;8061:2:1;56545:51:0;;;8043:21:1;8100:2;8080:18;;;8073:30;8139:28;8119:18;;;8112:56;8185:18;;56545:51:0;7859:350:1;56545:51:0;56626:12;;56615:7;:23;;56607:82;;;;-1:-1:-1;;;56607:82:0;;;;;;;:::i;:::-;56710:27;56724:3;56729:7;56710:13;:27::i;:::-;56702:88;;;;-1:-1:-1;;;56702:88:0;;;;;;;:::i;:::-;56839:14;56828:7;56809:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;56801:92;;;;-1:-1:-1;;;56801:92:0;;;;;;;:::i;:::-;56925:17;56934:7;56925:8;:17::i;:::-;56912:9;:30;56904:83;;;;-1:-1:-1;;;56904:83:0;;;;;;;:::i;:::-;57010:30;57020:3;57025:7;57034:5;57010:9;:30::i;:::-;56247:801;;;;:::o;55085:84::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55142:11:0::1;:19:::0;;-1:-1:-1;;55142:19:0::1;::::0;;55085:84::o;53076:281::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;53175:1:::1;53168:4;:8;53160:48;;;::::0;-1:-1:-1;;;53160:48:0;;15429:2:1;53160:48:0::1;::::0;::::1;15411:21:1::0;15468:2;15448:18;;;15441:30;15507:29;15487:18;;;15480:57;15554:18;;53160:48:0::1;15227:351:1::0;53160:48:0::1;53255:14;53247:4;53228:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;53220:90;;;;-1:-1:-1::0;;;53220:90:0::1;;;;;;;:::i;:::-;53322:26;53332:3;53337:4;53343;53322:9;:26::i;40966:157::-:0;41078:39;41095:4;41101:2;41105:7;41078:39;;;;;;;;;;;;:16;:39::i;27044:223::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27113:22:0;::::1;27105:50;;;::::0;-1:-1:-1;;;27105:50:0;;16146:2:1;27105: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;;27105:50:0::1;15944:339:1::0;27105:50:0::1;27171:16;27178:8;27171:6;:16::i;:::-;27170:17;27162:67;;;::::0;-1:-1:-1;;;27162:67:0;;16490:2:1;27162: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;;27162:67:0::1;16288:401:1::0;27162:67:0::1;-1:-1:-1::0;;;;;27240:14:0::1;;::::0;;;27257:4:::1;27240:14;::::0;;;;;;;:21;;-1:-1:-1;;27240:21:0::1;::::0;;::::1;::::0;;27044:223::o;31178:197::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;31286:10:::1;;31268:14;:28:::0;31260:71:::1;;;::::0;-1:-1:-1;;;31260:71:0;;16896:2:1;31260:71:0::1;::::0;::::1;16878:21:1::0;16935:2;16915:18;;;16908:30;16974:32;16954:18;;;16947:60;17024:18;;31260:71:0::1;16694:354:1::0;31260:71:0::1;-1:-1:-1::0;;31340:10:0::1;:27:::0;31178:197::o;35155:177::-;35222:7;35254:13;:11;:13::i;:::-;35246:5;:21;35238:69;;;;-1:-1:-1;;;35238:69:0;;17255:2:1;35238: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;;35238:69:0;17053:399:1;35238:69:0;-1:-1:-1;35321:5:0;35155:177::o;58575:179::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;58674:1:::1;58659:11;:16;;58651:56;;;::::0;-1:-1:-1;;;58651:56:0;;17659:2:1;58651:56:0::1;::::0;::::1;17641:21:1::0;17698:2;17678:18;;;17671:30;17737:29;17717:18;;;17710:57;17784:18;;58651:56:0::1;17457:351:1::0;58651:56:0::1;-1:-1:-1::0;;58719:12:0::1;:26:::0;58575:179::o;58983:106::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;59060:13:::1;:23;59076:7:::0;;59060:13;:23:::1;:::i;:::-;;28096:182:::0;;58983:106;;:::o;38319:118::-;38383:7;38406:20;38418:7;38406:11;:20::i;:::-;:25;;38319:118;-1:-1:-1;;38319:118:0:o;54994:83::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55051:11:0::1;:18:::0;;-1:-1:-1;;55051:18:0::1;55065:4;55051:18;::::0;;54994:83::o;32006:103::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32076:17:0::1;:25:::0;;-1:-1:-1;;32076:25:0::1;::::0;;32006:103::o;36857:211::-;36921:7;-1:-1:-1;;;;;36945:19:0;;36937:75;;;;-1:-1:-1;;;36937:75:0;;20073:2:1;36937: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;;36937:75:0;19871:407:1;36937:75:0;-1:-1:-1;;;;;;37034:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37034:27:0;;36857:211::o;25561:103::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;25626:30:::1;25653:1;25626:18;:30::i;:::-;25561:103::o:0;53576:491::-;53659:14;53639:16;:14;:16::i;:::-;:34;;53631:83;;;;-1:-1:-1;;;53631:83:0;;;;;;;:::i;:::-;53733:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;53756:17:0;;;;:26;53733:49;53725:99;;;;-1:-1:-1;;;53725:99:0;;;;;;;:::i;:::-;53853:21;53867:3;53872:1;53853:13;:21::i;:::-;53845:82;;;;-1:-1:-1;;;53845:82:0;;;;;;;:::i;:::-;53959:11;53968:1;53959:8;:11::i;:::-;53946:9;:24;53938:76;;;;-1:-1:-1;;;53938:76:0;;;;;;;:::i;:::-;54035:24;54045:3;54050:1;54053:5;54035:9;:24::i;:::-;53576:491;:::o;31899:99::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;-1:-1:-1;;31966:17:0::1;:24:::0;;-1:-1:-1;;31966:24:0::1;31986:4;31966:24;::::0;;31899:99::o;49867:118::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;49954:1:::1;49930:21;:25;49922:34;;;::::0;::::1;;49965:14;:12;:14::i;49682:93::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49682:93:0;;-1:-1:-1;49682:93:0;:::o;58199:200::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;58303:1:::1;58286:13;:18;;58278:70;;;::::0;-1:-1:-1;;;58278:70:0;;20893:2:1;58278:70:0::1;::::0;::::1;20875:21:1::0;20932:2;20912:18;;;20905:30;20971:34;20951:18;;;20944:62;-1:-1:-1;;;21022:18:1;;;21015:37;21069:19;;58278:70:0::1;20691:403:1::0;58278:70:0::1;-1:-1:-1::0;;58359:16:0::1;:32:::0;58199:200::o;52047:90::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;-1:-1:-1;;52114:5:0::1;:17:::0;52047:90::o;59095:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;59197:20:0;59209:7;59197:11;:20::i;38651:98::-;38707:13;38736:7;38729:14;;;;;:::i;27783:188::-;27853:4;-1:-1:-1;;;;;27877:22:0;;27869:60;;;;-1:-1:-1;;;27869:60:0;;21301:2:1;27869:60:0;;;21283:21:1;21340:2;21320:18;;;21313:30;21379:27;21359:18;;;21352:55;21424:18;;27869:60:0;21099:349:1;27869:60:0;-1:-1:-1;;;;;;27943:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;27783:188::o;40179:274::-;23718:10;-1:-1:-1;;;;;40270:24:0;;;40262:63;;;;-1:-1:-1;;;40262:63:0;;21655:2:1;40262:63:0;;;21637:21:1;21694:2;21674:18;;;21667:30;21733:28;21713:18;;;21706:56;21779:18;;40262:63:0;21453:350:1;40262:63:0;23718:10;40334:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40334:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40334:53:0;;;;;;;;;;40399:48;;722:41:1;;;40334:42:0;;23718:10;40399:48;;695:18:1;40399:48:0;;;;;;;40179:274;;:::o;57475:128::-;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;57539:26:::1;:24;:26::i;50950:428::-:0;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;51065:1:::1;51055:7;:11;51047:20;;;::::0;::::1;;51134:38;::::0;-1:-1:-1;;;51134:38:0;;51166:4:::1;51134:38;::::0;::::1;2298:51:1::0;51104:14:0;;51176:7;;-1:-1:-1;;;;;51134:23:0;::::1;::::0;::::1;::::0;2271:18:1;;51134:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;51126:97;;;::::0;-1:-1:-1;;;51126:97:0;;22199:2:1;51126:97:0::1;::::0;::::1;22181:21:1::0;22238:2;22218:18;;;22211:30;22277:34;22257:18;;;22250:62;-1:-1:-1;;;22328:18:1;;;22321:33;22371:19;;51126:97:0::1;21997:399:1::0;51126:97:0::1;51236:6;51232:141;51250:19;;51246:1;:23;51232:141;;;51288:13;-1:-1:-1::0;;;;;51288:22:0::1;;51311:16;51328:1;51311:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51311:19:0::1;51361:3;51343:11;51355:1;51343:14;;;;;;;;:::i;:::-;;;;;;;;;51333:7;:24;;;;:::i;:::-;51332:32;;;;:::i;:::-;51288:77;::::0;-1:-1:-1;;;;;;51288:77:0::1;::::0;;;;;;-1:-1:-1;;;;;23155:32:1;;;51288:77:0::1;::::0;::::1;23137:51:1::0;23204:18;;;23197:34;23110:18;;51288:77:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;51271:3:0;::::1;::::0;::::1;:::i;:::-;;;;51232:141;;;;51040:338;28096:182:::0;;50950:428;;:::o;41186:311::-;41323:28;41333:4;41339:2;41343:7;41323:9;:28::i;:::-;41374:48;41397:4;41403:2;41407:7;41416:5;41374:22;:48::i;:::-;41358:133;;;;-1:-1:-1;;;41358:133:0;;;;;;;:::i;51704:229::-;49375:12;;-1:-1:-1;;;;;49375:12:0;49361:10;:26;49353:67;;;;-1:-1:-1;;;49353:67:0;;24114:2:1;49353:67:0;;;24096:21:1;24153:2;24133:18;;;24126:30;24192;24172:18;;;24165:58;24240:18;;49353:67:0;23912:352:1;49353:67:0;51795:12:::1;::::0;-1:-1:-1;;;;;51795:12:0;;::::1;51780:27:::0;;::::1;::::0;51772:82:::1;;;::::0;-1:-1:-1;;;51772:82:0;;24471:2:1;51772:82:0::1;::::0;::::1;24453:21:1::0;24510:2;24490:18;;;24483:30;24549:34;24529:18;;;24522:62;-1:-1:-1;;;24600:18:1;;;24593:40;24650:19;;51772:82:0::1;24269:406:1::0;51772:82:0::1;51861:12;:26:::0;;-1:-1:-1;;;;;;51861:26:0::1;-1:-1:-1::0;;;;;51861:26:0;::::1;;::::0;;51894:16:::1;:19:::0;;51861:26;;51894:16;-1:-1:-1;;51894:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;51894:33:0::1;;;;;-1:-1:-1::0;;;;;51894:33:0::1;;;;;;51704:229:::0;:::o;38812:288::-;38910:13;38935:21;38959:10;:8;:10::i;:::-;38935:34;;39014:1;38996:7;38990:21;:25;:104;;;;;;;;;;;;;;;;;39051:7;39060:18;:7;:16;:18::i;:::-;39034:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38990:104;38976:118;38812:288;-1:-1:-1;;;38812:288:0:o;34775:96::-;34822:7;34847:14;35043:12;;-1:-1:-1;;35043:30:0;;34954:132;34847:14;:18;;34864:1;34847:18;:::i;52588:92::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58885:::-;58929:13;58958;58951:20;;;;;:::i;49993:115::-;49375:12;;-1:-1:-1;;;;;49375:12:0;49361:10;:26;49353:67;;;;-1:-1:-1;;;49353:67:0;;24114:2:1;49353:67:0;;;24096:21:1;24153:2;24133:18;;;24126:30;24192;24172:18;;;24165:58;24240:18;;49353:67:0;23912:352:1;49353:67:0;50077:1:::1;50053:21;:25;50045:34;;;::::0;::::1;;50088:14;:12;:14::i;55416:590::-:0;55514:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;55543:11:0;;;;:19;;:11;:19;55514:48;55506:88;;;;-1:-1:-1;;;55506:88:0;;13902:2:1;55506:88:0;;;13884:21:1;13941:2;13921:18;;;13914:30;13980:29;13960:18;;;13953:57;14027:18;;55506:88:0;13700:351:1;55506:88:0;55613:32;55627:3;55632:12;;55613:13;:32::i;:::-;55605:73;;;;-1:-1:-1;;;55605:73:0;;14258:2:1;55605:73:0;;;14240:21:1;14297:2;14277:18;;;14270:30;14336;14316:18;;;14309:58;14384:18;;55605:73:0;14056:352:1;55605:73:0;55717:14;55697:16;:14;:16::i;:::-;:34;;55689:82;;;;-1:-1:-1;;;55689:82:0;;;;;;;:::i;:::-;55790:21;55804:3;55809:1;55790:13;:21::i;:::-;55782:82;;;;-1:-1:-1;;;55782:82:0;;;;;;;:::i;:::-;55896:11;55905:1;55896:8;:11::i;:::-;55883:9;:24;55875:76;;;;-1:-1:-1;;;55875:76:0;;;;;;;:::i;:::-;55974:24;55984:3;55989:1;55992:5;55974:9;:24::i;27410:234::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27484:22:0;::::1;27476:50;;;::::0;-1:-1:-1;;;27476:50:0;;16146:2:1;27476: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;;27476:50:0::1;15944:339:1::0;27476:50:0::1;27541:16;27548:8;27541:6;:16::i;:::-;27533:72;;;::::0;-1:-1:-1;;;27533:72:0;;25383:2:1;27533:72:0::1;::::0;::::1;25365:21:1::0;25422:2;25402:18;;;25395:30;25461:34;25441:18;;;25434:62;-1:-1:-1;;;25512:18:1;;;25505:41;25563:19;;27533:72:0::1;25181:407:1::0;27533:72:0::1;-1:-1:-1::0;;;;;27616:14:0::1;27633:5;27616:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;27616:22:0::1;::::0;;27410:234::o;52143:98::-;52198:7;52229:6;52221:5;;:14;;;;:::i;25817:201::-;24958:7;24985:6;-1:-1:-1;;;;;24985:6:0;23718:10;25132:23;25124:68;;;;-1:-1:-1;;;25124:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25906:22:0;::::1;25898:73;;;::::0;-1:-1:-1;;;25898:73:0;;25795:2:1;25898:73:0::1;::::0;::::1;25777:21:1::0;25834:2;25814:18;;;25807:30;25873:34;25853:18;;;25846:62;-1:-1:-1;;;25924:18:1;;;25917:36;25970:19;;25898:73:0::1;25593:402:1::0;25898:73:0::1;25982:28;26001:8;25982:18;:28::i;57199:125::-:0;28103:13;24985:6;;-1:-1:-1;;;;;24985:6:0;23718:10;28119:23;;;;28103:13;28164:20;;27783:188;:::i;28164:20::-;28149:35;;28199:8;:19;;;;28211:7;28199:19;28191:73;;;;-1:-1:-1;;;28191:73:0;;;;;;;:::i;:::-;57262:25:::1;:23;:25::i;57764:242::-:0;57842:4;57878:1;57867:7;:12;;57859:66;;;;-1:-1:-1;;;57859:66:0;;26202:2:1;57859:66:0;;;26184:21:1;26241:2;26221:18;;;26214:30;26280:34;26260:18;;;26253:62;-1:-1:-1;;;26331:18:1;;;26324:39;26380:19;;57859:66:0;26000:405:1;57859:66:0;57982:16;;57970:7;57944:23;57958:8;57944:13;:23::i;:::-;:33;;;;:::i;:::-;57943:55;;;57764:242;-1:-1:-1;;;57764:242:0:o;41873:129::-;41956:40;41966:2;41970:8;41980:11;41956:40;;;;;;;;;;;;:9;:40::i;41732:135::-;41789:4;41828:7;34502:1;41809:26;;:52;;;;-1:-1:-1;;41849:12:0;;-1:-1:-1;41839:22:0;41732:135::o;45616:172::-;45713:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45713:29:0;-1:-1:-1;;;;;45713:29:0;;;;;;;;;45754:28;;45713:24;;45754:28;;;;;;;45616:172;;;:::o;43985:1529::-;44082:35;44120:20;44132:7;44120:11;:20::i;:::-;44191:18;;44082:58;;-1:-1:-1;44149:22:0;;-1:-1:-1;;;;;44175:34:0;23718:10;-1:-1:-1;;;;;44175:34:0;;:81;;;-1:-1:-1;23718:10:0;44220:20;44232:7;44220:11;:20::i;:::-;-1:-1:-1;;;;;44220:36:0;;44175:81;:142;;;-1:-1:-1;44284:18:0;;44267:50;;23718:10;40516:186;:::i;44267:50::-;44149:169;;44343:17;44327:101;;;;-1:-1:-1;;;44327:101:0;;26612:2:1;44327:101:0;;;26594:21:1;26651:2;26631:18;;;26624:30;26690:34;26670:18;;;26663:62;-1:-1:-1;;;26741:18:1;;;26734:48;26799:19;;44327:101:0;26410:414:1;44327:101:0;44475:4;-1:-1:-1;;;;;44453:26:0;:13;:18;;;-1:-1:-1;;;;;44453:26:0;;44437:98;;;;-1:-1:-1;;;44437:98:0;;27031:2:1;44437:98:0;;;27013:21:1;27070:2;27050:18;;;27043:30;27109:34;27089:18;;;27082:62;-1:-1:-1;;;27160:18:1;;;27153:36;27206:19;;44437:98:0;26829:402:1;44437:98:0;-1:-1:-1;;;;;44550:16:0;;44542:66;;;;-1:-1:-1;;;44542:66:0;;27438:2:1;44542:66:0;;;27420:21:1;27477:2;27457:18;;;27450:30;27516:34;27496:18;;;27489:62;-1:-1:-1;;;27567:18:1;;;27560:35;27612:19;;44542:66:0;27236:401:1;44542:66:0;44717:49;44734:1;44738:7;44747:13;:18;;;44717:8;:49::i;:::-;-1:-1:-1;;;;;44775:18:0;;;;;;:12;:18;;;;;:31;;44805:1;;44775:18;:31;;44805:1;;-1:-1:-1;;;;;44775:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44775:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44813:16:0;;-1:-1:-1;44813:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;44813:16:0;;:29;;-1:-1:-1;;44813:29:0;;:::i;:::-;;;-1:-1:-1;;;;;44813:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44872:43:0;;;;;;;;-1:-1:-1;;;;;44872:43:0;;;;;-1:-1:-1;;;;;44898:15:0;44872:43;;;;;;;;;-1:-1:-1;44849:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44849:66:0;-1:-1:-1;;;;;;44849:66:0;;;;;;;;;;;45165:11;44861:7;-1:-1:-1;45165:11:0;:::i;:::-;45228:1;45187:24;;;:11;:24;;;;;:29;45143:33;;-1:-1:-1;;;;;;45187:29:0;45183:236;;45245:20;45253:11;45245:7;:20::i;:::-;45241:171;;;45305:97;;;;;;;;45332:18;;-1:-1:-1;;;;;45305:97:0;;;;;;45363:28;;;;-1:-1:-1;;;;;45305:97:0;;;;;;;;;-1:-1:-1;45278:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;45278:124:0;-1:-1:-1;;;;;;45278:124:0;;;;;;;;;;;;45241:171;45451:7;45447:2;-1:-1:-1;;;;;45432:27:0;45441:4;-1:-1:-1;;;;;45432:27:0;;;;;;;;;;;45466:42;56247:801;29304:202;29437:4;29492;29463:25;29476:5;29483:4;29463:12;:25::i;:::-;:33;;29304:202;-1:-1:-1;;;;29304:202:0:o;37320:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;37444:7:0;;34502:1;37485:23;;:46;;;;;37519:12;;37512:4;:19;37485:46;37481:706;;;37548:31;37582:17;;;:11;:17;;;;;;;;;37548:51;;;;;;;;;-1:-1:-1;;;;;37548:51:0;;;;;-1:-1:-1;;;37548:51:0;;;-1:-1:-1;;;;;37548:51:0;;;;;;;;37618:28;37614:85;;37674:9;37320:945;-1:-1:-1;;;37320:945:0:o;37614:85::-;-1:-1:-1;;;37995:6:0;38032:17;;;;:11;:17;;;;;;;;;38020:29;;;;;;;;;-1:-1:-1;;;;;38020:29:0;;;;;-1:-1:-1;;;38020:29:0;;;-1:-1:-1;;;;;38020:29:0;;;;;;;;38072:28;38068:93;;38132:9;37320:945;-1:-1:-1;;;37320:945:0:o;38068:93::-;37963:213;;37481:706;38202:57;;-1:-1:-1;;;38202:57:0;;28251:2:1;38202:57:0;;;28233:21:1;28290:2;28270:18;;;28263:30;28329:34;28309:18;;;28302:62;-1:-1:-1;;;28380:18:1;;;28373:45;28435:19;;38202:57:0;28049:411:1;26176:191:0;26250:16;26269:6;;-1:-1:-1;;;;;26286:17:0;;;-1:-1:-1;;;;;;26286:17:0;;;;;;26319:40;;26269:6;;;;;;;26319:40;;26250:16;26319:40;26239:128;26176:191;:::o;50114:278::-;50173:21;50155:15;50211:176;50229:19;;50225:1;:23;50211:176;;;50269:108;50296:16;50313:1;50296:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50296:19:0;50361:3;50343:11;50355:1;50343:14;;;;;;;;:::i;:::-;;;;;;;;;50333:7;:24;;;;:::i;:::-;50332:32;;;;:::i;:::-;50269:10;:108::i;:::-;50250:3;;;;:::i;:::-;;;;50211:176;;47405:690;47542:4;-1:-1:-1;;;;;47559:13:0;;1581:19;:23;47555:535;;47598:72;;-1:-1:-1;;;47598:72:0;;-1:-1:-1;;;;;47598:36:0;;;;;:72;;23718:10;;47649:4;;47655:7;;47664:5;;47598:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47598:72:0;;;;;;;;-1:-1:-1;;47598:72:0;;;;;;;;;;;;:::i;:::-;;;47585:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47829:6;:13;47846:1;47829:18;47825:215;;47862:61;;-1:-1:-1;;;47862:61:0;;;;;;;:::i;47825:215::-;48008:6;48002:13;47993:6;47989:2;47985:15;47978:38;47585:464;-1:-1:-1;;;;;;47720:55:0;-1:-1:-1;;;47720:55:0;;-1:-1:-1;47713:62:0;;47555:535;-1:-1:-1;48078:4:0;47555:535;47405:690;;;;;;:::o;18469:723::-;18525:13;18746:5;18755:1;18746:10;18742:53;;-1:-1:-1;;18773:10:0;;;;;;;;;;;;-1:-1:-1;;;18773:10:0;;;;;18469:723::o;18742:53::-;18820:5;18805:12;18861:78;18868:9;;18861:78;;18894:8;;;;:::i;:::-;;-1:-1:-1;18917:10:0;;-1:-1:-1;18925:2:0;18917:10;;:::i;:::-;;;18861:78;;;18949:19;18981:6;-1:-1:-1;;;;;18971:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18971:17:0;;18949:39;;18999:154;19006:10;;18999:154;;19033:11;19043:1;19033:11;;:::i;:::-;;-1:-1:-1;19102:10:0;19110:2;19102:5;:10;:::i;:::-;19089:24;;:2;:24;:::i;:::-;19076:39;;19059:6;19066;19059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19059:56:0;;;;;;;;-1:-1:-1;19130:11:0;19139:2;19130:11;;:::i;:::-;;;18999:154;;37074:240;37135:7;-1:-1:-1;;;;;37167:19:0;;37151:102;;;;-1:-1:-1;;;37151:102:0;;29665:2:1;37151:102:0;;;29647:21:1;29704:2;29684:18;;;29677:30;29743:34;29723:18;;;29716:62;-1:-1:-1;;;29794:18:1;;;29787:47;29851:19;;37151:102:0;29463:413:1;37151:102:0;-1:-1:-1;;;;;;37275:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37275:32:0;;-1:-1:-1;;;;;37275:32:0;;37074:240::o;42331:1434::-;42482:12;;-1:-1:-1;;;;;42509:16:0;;42501:62;;;;-1:-1:-1;;;42501:62:0;;30083:2:1;42501:62:0;;;30065:21:1;30122:2;30102:18;;;30095:30;30161:34;30141:18;;;30134:62;-1:-1:-1;;;30212:18:1;;;30205:31;30253:19;;42501:62:0;29881:397:1;42501:62:0;42700:21;42708:12;42700:7;:21::i;:::-;42699:22;42691:64;;;;-1:-1:-1;;;42691:64:0;;30485:2:1;42691:64:0;;;30467:21:1;30524:2;30504:18;;;30497:30;30563:31;30543:18;;;30536:59;30612:18;;42691:64:0;30283:353:1;42691:64:0;42841:20;;;42856:5;42841:20;42837:116;;42894:12;;42882:8;:24;;42874:71;;;;-1:-1:-1;;;42874:71:0;;30843:2:1;42874:71:0;;;30825:21:1;30882:2;30862:18;;;30855:30;30921:34;30901:18;;;30894:62;-1:-1:-1;;;30972:18:1;;;30965:32;31014:19;;42874:71:0;30641:398:1;42874:71:0;-1:-1:-1;;;;;43064:16:0;;43031:30;43064:16;;;:12;:16;;;;;;;;;43031:49;;;;;;;;;-1:-1:-1;;;;;43031:49:0;;;;;-1:-1:-1;;;43031:49:0;;;;;;;;;;;43106:139;;;;;;;;43126:19;;43031:49;;43106:139;;;43126:39;;43156:8;;43126:39;:::i;:::-;-1:-1:-1;;;;;43106:139:0;;;;;43202:11;:35;;43228:8;43202:35;;;43216:1;43202:35;43174:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;43106:139:0;;;;;;-1:-1:-1;;;;;43087:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;43087:158:0;;;;;;;;;;;;43280:43;;;;;;;;;;-1:-1:-1;;;;;43306:15:0;43280:43;;;;;;;;43252:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;43252:71:0;-1:-1:-1;;;;;;43252:71:0;;;;;;;;;;;;;;;;;;43264:12;;43376:281;43400:8;43396:1;:12;43376:281;;;43429:38;;43454:12;;-1:-1:-1;;;;;43429:38:0;;;43446:1;;43429:38;;43446:1;;43429:38;43494:59;43525:1;43529:2;43533:12;43547:5;43494:22;:59::i;:::-;43476:150;;;;-1:-1:-1;;;43476:150:0;;;;;;;:::i;:::-;43635:14;;;;:::i;:::-;;;;43410:3;;;;;:::i;:::-;;;;43376:281;;;-1:-1:-1;43665:12:0;:27;-1:-1:-1;;;;;;42331:1434:0:o;29878:701::-;29961:7;30006:4;29961:7;30023:515;30047:5;:12;30043:1;:16;30023:515;;;30083:20;30106:5;30112:1;30106:8;;;;;;;;:::i;:::-;;;;;;;30083:31;;30151:12;30135;:28;30131:394;;30657:13;30711:15;;;30749:4;30742:15;;;30798:4;30782:21;;30267:57;;30131:394;;;30657:13;30711:15;;;30749:4;30742:15;;;30798:4;30782:21;;30450:57;;30131:394;-1:-1:-1;30061:3:0;;;;:::i;:::-;;;;30023:515;;;-1:-1:-1;30557:12:0;29878:701;-1:-1:-1;;;29878:701:0:o;50400:175::-;50473:12;50491:8;-1:-1:-1;;;;;50491:13:0;50512:7;50491:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50472:52;;;50541:7;50533:36;;;;-1:-1:-1;;;50533:36:0;;31456:2:1;50533:36:0;;;31438:21:1;31495:2;31475:18;;;31468:30;-1:-1:-1;;;31514:18:1;;;31507:46;31570:18;;50533:36:0;31254: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;20283:403::-;20485:2;20467:21;;;20524:2;20504:18;;;20497:30;20563:34;20558:2;20543:18;;20536:62;-1:-1:-1;;;20629:2:1;20614:18;;20607:37;20676:3;20661:19;;20283:403::o;21808:184::-;21878:6;21931:2;21919:9;21910:7;21906:23;21902:32;21899:52;;;21947:1;21944;21937:12;21899:52;-1:-1:-1;21970:16:1;;21808:184;-1:-1:-1;21808:184:1:o;22401:127::-;22462:10;22457:3;22453:20;22450:1;22443:31;22493:4;22490:1;22483:15;22517:4;22514:1;22507:15;22533:168;22573:7;22639:1;22635;22631:6;22627:14;22624:1;22621:21;22616:1;22609:9;22602:17;22598:45;22595:71;;;22646:18;;:::i;:::-;-1:-1:-1;22686:9:1;;22533:168::o;22706:127::-;22767:10;22762:3;22758:20;22755:1;22748:31;22798:4;22795:1;22788:15;22822:4;22819:1;22812:15;22838:120;22878:1;22904;22894:35;;22909:18;;:::i;:::-;-1:-1:-1;22943:9:1;;22838:120::o;23242:245::-;23309:6;23362:2;23350:9;23341:7;23337:23;23333:32;23330:52;;;23378:1;23375;23368:12;23330:52;23410:9;23404:16;23429:28;23451:5;23429:28;:::i;23492:415::-;23694:2;23676:21;;;23733:2;23713:18;;;23706:30;23772:34;23767:2;23752:18;;23745:62;-1:-1:-1;;;23838:2:1;23823:18;;23816:49;23897:3;23882:19;;23492:415::o;24680:496::-;24859:3;24897:6;24891:13;24913:66;24972:6;24967:3;24960:4;24952:6;24948:17;24913:66;:::i;:::-;25042:13;;25001:16;;;;25064:70;25042:13;25001:16;25111:4;25099:17;;25064:70;:::i;:::-;25150:20;;24680:496;-1:-1:-1;;;;24680:496:1:o;27642:200::-;-1:-1:-1;;;;;27778:10:1;;;27766;;;27762:27;;27801:12;;;27798:38;;;27816:18;;:::i;:::-;27798:38;27642:200;;;;:::o;27847:197::-;-1:-1:-1;;;;;27969:10:1;;;27981;;;27965:27;;28004:11;;;28001:37;;;28018:18;;:::i;28465:489::-;-1:-1:-1;;;;;28734:15:1;;;28716:34;;28786:15;;28781:2;28766:18;;28759:43;28833:2;28818:18;;28811:34;;;28881:3;28876:2;28861:18;;28854:31;;;28659:4;;28902:46;;28928:19;;28920:6;28902:46;:::i;:::-;28894:54;28465:489;-1:-1:-1;;;;;;28465:489:1:o;28959:249::-;29028:6;29081:2;29069:9;29060:7;29056:23;29052:32;29049:52;;;29097:1;29094;29087:12;29049:52;29129:9;29123:16;29148:30;29172:5;29148:30;:::i;29213:128::-;29280:9;;;29301:11;;;29298:37;;;29315:18;;:::i;29346:112::-;29378:1;29404;29394:35;;29409:18;;:::i;:::-;-1:-1:-1;29443:9:1;;29346:112::o

Swarm Source

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