ETH Price: $3,103.40 (+1.21%)
Gas: 3 Gwei

Token

Bored Dick Butt (BDB)
 

Overview

Max Total Supply

6,969 BDB

Holders

406

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 BDB
0x4b25FFA1ab702ebCD7ec89929d104e71C4fb44ff
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

This Project is a love letter to BAYC and CryptoDickButts. The main aim of this project is bring a smile to collectors faces whilst raising money for the Dickbutt cause.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredDickButt

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

// 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/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/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/utils/cryptography/ECDSA.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// 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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @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 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 = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable 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_;
  }

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

  /**
   * @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)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory 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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    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 tokenId < currentIndex;
  }

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

  /**
   * @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,
    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");
    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 + 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");
    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 {}
}
// 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);
    }
}

// File: contracts/BoredDickButt.sol



pragma solidity ^0.8.0;





contract BoredDickButt is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;
    using ECDSA for bytes32;

    string public baseURI = "ipfs://QmaN85GEkAGWxqMEqEDdV1Wn8frzdJ99cyBssd9zWAkxxx/";
    uint256 public cost = 0.042 ether;
    uint16 public maxSupply = 6969;
    uint public maxMintPerTx = 5;
    bool public publicSale = false;
    bool public privateSale = false;
    address public signer1; // CryptoDickButt Signer
    address public signer2; // Other whitelist signer
    mapping(address => bool) public cbdClaimed;

    address constant private _2 = 0x7c007c8dA1b2c984fC9562cf71ccA71381C1542D;
    address constant private _2b = 0x4e25eF40a532148D3eeef157dea5B903eD9d2029;
    address constant private _3 = 0xe42c23f113a4Bd5190fABA54b38aB1a7f7248629;
    address constant private _4 = 0xB2533a92960803f0a641dd72290Ba38399Cec459;
    address constant private _5 = 0xC1Bf8D192C2130C106429D73ba26172113F2B9FC;
    address constant private _9 = 0xd480C1E4738B7570bfbE809610338eFCD0D0C1F3;
    address constant private _10 = 0x7049871039097E61b1Ae827e77aBb1C9a0B14061;
    address constant private _15 = 0x709bF4aC7ED6Bb2F9d60b1215d983496AB68efbc;
    address constant private _50 = 0xF14d484b29A8aC040FEb489aFADB4b972422B4E9;
    


    constructor() ERC721A ("Bored Dick Butt", "BDB", 20, maxSupply){}

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

    function mint(uint _mintAmount) external payable {
        require(publicSale, "Minting currently on hold");
        require(totalSupply() + _mintAmount <= maxSupply, "Purchase would exceed max supply of NFT");
        require(_mintAmount <= maxMintPerTx, "Maximum mint amount exceeded");
        mintX(_mintAmount);
    }

    function privateSaleMint(uint _mintAmount, bytes memory signature) external payable {
        require(privateSale, "Private sale is not currently running");
        require(totalSupply() + _mintAmount <= maxSupply, "Purchase would exceed max supply of private sale");
        require(_mintAmount <= maxMintPerTx, "Purchase would exceed max mint per transaction");

        address recover = recoverSignerAddress(msg.sender, signature);

        if (recover == signer1) {
            mintXCDB(_mintAmount);
        }else if (recover == signer2) {
            mintX(_mintAmount);
        }else{
            revert("You are not whitelisted for this mint");
        }

    }

    function mintXCDB(uint _mintAmount) private {
        require(_mintAmount > 0, "Amount to mint can not be 0");
        // if(cbdClaimed[msg.sender] == true)
        bool claimed = cbdClaimed[msg.sender];
        if(!claimed){
            cbdClaimed[msg.sender] = true;
        }
        require(msg.value >= cost * _mintAmount, "Amount sent less than the cost of minting NFT(s)");
        if(claimed){
            _safeMint(msg.sender, _mintAmount);
        }else{
            _safeMint(msg.sender, _mintAmount+1);
        }
    }
        
    function mintX(uint _mintAmount) private {
        require(_mintAmount > 0, "Amount to mint can not be 0");
        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount, "Amount sent less than the cost of minting NFT(s)");
        }
        _safeMint(msg.sender, _mintAmount);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory){
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory){

        require(_exists(tokenId), "ERC721Metadata: tokenURI queried for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    //
    function hashTransaction(address minter) private pure returns (bytes32) {
        bytes32 argsHash = keccak256(abi.encodePacked(minter));
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", argsHash));
    }

    function recoverSignerAddress(address minter, bytes memory signature) private pure returns (address) {
        bytes32 hash = hashTransaction(minter);
        return hash.recover(signature);
    }


    // Access control

    function devMint(uint _mintAmount) external onlyOwner() {
        require(totalSupply() + _mintAmount <= maxSupply, "Purchase would exceed max supply of NFT");
        mintX(_mintAmount);
    }

    function setSigner(address _signer) public onlyOwner() {
        signer1 = _signer;
    }

    function setSigner2(address _signer) public onlyOwner() {
        signer2 = _signer;
    }

    function setCost(uint256 _cost) public onlyOwner() {
        cost = _cost;
    }

    function setMaxMintPerT(uint256 _maxMintPerTx) public onlyOwner() {
        maxMintPerTx = _maxMintPerTx;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner() {
        baseURI = _newBaseURI;
    }

    function togglePublicSale() public onlyOwner() {
        publicSale = !publicSale;
    }

    function togglePrivateSale() public onlyOwner() {
        privateSale = !privateSale;
    }

    function configure(bool _publicSale, bool _privateSale, uint256 _maxMintPerTx,
        address _signer1, address _signer2) public onlyOwner() {
        publicSale = _publicSale;
        privateSale = _privateSale;
        maxMintPerTx = _maxMintPerTx;
        signer1 = _signer1;
        signer2 = _signer2;
    }

    function withdraw() public payable onlyOwner() {

        uint balance = address(this).balance;
        uint _2pct = (balance * 2) / 100;
        uint _3pct = (balance * 3) / 100;
        uint _4pct = (balance * 4) / 100;
        uint _5pct = (balance * 5) / 100;
        uint _9pct = (balance * 9) / 100;
        uint _10pct = (balance * 10) / 100;
        uint _15pct = (balance * 15) / 100;
        uint _50pct = (balance * 50) / 100;
        payable(_2).transfer(_2pct);
        payable(_2b).transfer(_2pct);
        payable(_3).transfer(_3pct);
        payable(_4).transfer(_4pct);
        payable(_5).transfer(_5pct);
        payable(_9).transfer(_9pct);
        payable(_10).transfer(_10pct);
        payable(_15).transfer(_15pct);

        payable(_50).transfer(_50pct);


//        payable(_50).transfer(balance - _2pct - _2pct - _3pct - _4pct - _5pct - _9pct - _10pct - _15pct);
    
    }

}

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":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cbdClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSale","type":"bool"},{"internalType":"bool","name":"_privateSale","type":"bool"},{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"},{"internalType":"address","name":"_signer1","type":"address"},{"internalType":"address","name":"_signer2","type":"address"}],"name":"configure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","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":[{"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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"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":"privateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"privateSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"signer2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60006001819055600855610120604052603660c081815290620035fd60e03980516200003491600a9160209091019062000227565b50669536c708910000600b55600c805461ffff19908116611b39179091556005600d55600e805490911690553480156200006d57600080fd5b50604080518082018252600f81526e109bdc995908111a58dac8109d5d1d608a1b6020808301919091528251808401909352600383526221222160e91b90830152600c5490919060149061ffff16620000c633620001d7565b60008111620001335760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001955760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200012a565b8351620001aa90600290602087019062000227565b508251620001c090600390602086019062000227565b5060a091909152608052505060016009556200030a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023590620002cd565b90600052602060002090601f016020900481019282620002595760008555620002a4565b82601f106200027457805160ff1916838001178555620002a4565b82800160010185558215620002a4579182015b82811115620002a457825182559160200191906001019062000287565b50620002b2929150620002b6565b5090565b5b80821115620002b25760008155600101620002b7565b600181811c90821680620002e257607f821691505b602082108114156200030457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516132c26200033b60003960008181611ebd01528181611ee701526124a80152600050506132c26000f3fe6080604052600436106102515760003560e01c80636c19e78311610139578063ba1f879f116100b6578063de7fcb1d1161007a578063de7fcb1d146106cb578063dfe5dd68146106e1578063e222c7f9146106f6578063e985e9c51461070b578063f2fde38b14610754578063feebf0011461077457600080fd5b8063ba1f879f14610628578063c87b56dd14610647578063d5abeb0114610667578063d7224ba014610695578063d93d3244146106ab57600080fd5b806395d89b41116100fd57806395d89b4114610590578063a0712d68146105a5578063a22cb465146105b8578063a290d1e5146105d8578063b88d4fde1461060857600080fd5b80636c19e7831461050a5780636f86b0c81461052a57806370a082311461053d578063715018a61461055d5780638da5cb5b1461057257600080fd5b806334107282116101d2578063438b630011610196578063438b63001461044857806344a0d68a146104755780634f6ccce71461049557806355f804b3146104b55780636352211e146104d55780636c0360eb146104f557600080fd5b806334107282146103ba578063375a069a146103e057806338c0ac5f146104005780633ccfd60b1461042057806342842e0e1461042857600080fd5b806318160ddd1161021957806318160ddd1461032b578063228537331461034057806323b872dd146103605780632f745c591461038057806333bc1c5c146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004612d0d565b610794565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610801565b6040516102829190612f74565b3480156102b957600080fd5b506102cd6102c8366004612d90565b610893565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612c85565b610923565b005b34801561031357600080fd5b5061031d600b5481565b604051908152602001610282565b34801561033757600080fd5b5060015461031d565b34801561034c57600080fd5b5061030561035b366004612caf565b610a3b565b34801561036c57600080fd5b5061030561037b366004612bb7565b610ac9565b34801561038c57600080fd5b5061031d61039b366004612c85565b610ad4565b3480156103ac57600080fd5b50600e546102769060ff1681565b3480156103c657600080fd5b50600e546102cd906201000090046001600160a01b031681565b3480156103ec57600080fd5b506103056103fb366004612d90565b610c4d565b34801561040c57600080fd5b50600f546102cd906001600160a01b031681565b610305610cbc565b34801561043457600080fd5b50610305610443366004612bb7565b61101d565b34801561045457600080fd5b50610468610463366004612b69565b611038565b6040516102829190612f30565b34801561048157600080fd5b50610305610490366004612d90565b6110da565b3480156104a157600080fd5b5061031d6104b0366004612d90565b611109565b3480156104c157600080fd5b506103056104d0366004612d47565b611172565b3480156104e157600080fd5b506102cd6104f0366004612d90565b6111b3565b34801561050157600080fd5b506102a06111c5565b34801561051657600080fd5b50610305610525366004612b69565b611253565b610305610538366004612da9565b6112a7565b34801561054957600080fd5b5061031d610558366004612b69565b6114a0565b34801561056957600080fd5b50610305611531565b34801561057e57600080fd5b506000546001600160a01b03166102cd565b34801561059c57600080fd5b506102a0611567565b6103056105b3366004612d90565b611576565b3480156105c457600080fd5b506103056105d3366004612c5b565b611653565b3480156105e457600080fd5b506102766105f3366004612b69565b60106020526000908152604090205460ff1681565b34801561061457600080fd5b50610305610623366004612bf3565b611718565b34801561063457600080fd5b50600e5461027690610100900460ff1681565b34801561065357600080fd5b506102a0610662366004612d90565b611751565b34801561067357600080fd5b50600c546106829061ffff1681565b60405161ffff9091168152602001610282565b3480156106a157600080fd5b5061031d60085481565b3480156106b757600080fd5b506103056106c6366004612d90565b611826565b3480156106d757600080fd5b5061031d600d5481565b3480156106ed57600080fd5b50610305611855565b34801561070257600080fd5b5061030561189c565b34801561071757600080fd5b50610276610726366004612b84565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076057600080fd5b5061030561076f366004612b69565b6118da565b34801561078057600080fd5b5061030561078f366004612b69565b611972565b60006001600160e01b031982166380ac58cd60e01b14806107c557506001600160e01b03198216635b5e139f60e01b145b806107e057506001600160e01b0319821663780e9d6360e01b145b806107fb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108109061319e565b80601f016020809104026020016040519081016040528092919081815260200182805461083c9061319e565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b60006108a0826001541190565b6109075760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061092e826111b3565b9050806001600160a01b0316836001600160a01b0316141561099d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108fe565b336001600160a01b03821614806109b957506109b98133610726565b610a2b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108fe565b610a368383836119be565b505050565b6000546001600160a01b03163314610a655760405162461bcd60e51b81526004016108fe9061301e565b600e8054600d9490945561ffff1990931694151561ff00191694909417610100931515939093029290921762010000600160b01b031916620100006001600160a01b0393841602179055600f80546001600160a01b03191692909116919091179055565b610a36838383611a1a565b6000610adf836114a0565b8210610b385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108fe565b6000610b4360015490565b905060008060005b83811015610bed576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b9e57805192505b876001600160a01b0316836001600160a01b03161415610bda5786841415610bcc575093506107fb92505050565b83610bd6816131d9565b9450505b5080610be5816131d9565b915050610b4b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108fe565b6000546001600160a01b03163314610c775760405162461bcd60e51b81526004016108fe9061301e565b600c5461ffff1681610c8860015490565b610c9291906130d1565b1115610cb05760405162461bcd60e51b81526004016108fe90612fd7565b610cb981611da2565b50565b6000546001600160a01b03163314610ce65760405162461bcd60e51b81526004016108fe9061301e565b4760006064610cf68360026130fd565b610d0091906130e9565b905060006064610d118460036130fd565b610d1b91906130e9565b905060006064610d2c8560046130fd565b610d3691906130e9565b905060006064610d478660056130fd565b610d5191906130e9565b905060006064610d628760096130fd565b610d6c91906130e9565b905060006064610d7d88600a6130fd565b610d8791906130e9565b905060006064610d9889600f6130fd565b610da291906130e9565b905060006064610db38a60326130fd565b610dbd91906130e9565b604051909150737c007c8da1b2c984fc9562cf71cca71381c1542d9089156108fc02908a906000818181858888f19350505050158015610e01573d6000803e3d6000fd5b50604051734e25ef40a532148d3eeef157dea5b903ed9d20299089156108fc02908a906000818181858888f19350505050158015610e43573d6000803e3d6000fd5b5060405173e42c23f113a4bd5190faba54b38ab1a7f72486299088156108fc029089906000818181858888f19350505050158015610e85573d6000803e3d6000fd5b5060405173b2533a92960803f0a641dd72290ba38399cec4599087156108fc029088906000818181858888f19350505050158015610ec7573d6000803e3d6000fd5b5060405173c1bf8d192c2130c106429d73ba26172113f2b9fc9086156108fc029087906000818181858888f19350505050158015610f09573d6000803e3d6000fd5b5060405173d480c1e4738b7570bfbe809610338efcd0d0c1f39085156108fc029086906000818181858888f19350505050158015610f4b573d6000803e3d6000fd5b50604051737049871039097e61b1ae827e77abb1c9a0b140619084156108fc029085906000818181858888f19350505050158015610f8d573d6000803e3d6000fd5b5060405173709bf4ac7ed6bb2f9d60b1215d983496ab68efbc9083156108fc029084906000818181858888f19350505050158015610fcf573d6000803e3d6000fd5b5060405173f14d484b29a8ac040feb489afadb4b972422b4e99082156108fc029083906000818181858888f19350505050158015611011573d6000803e3d6000fd5b50505050505050505050565b610a3683838360405180602001604052806000815250611718565b60606000611045836114a0565b905060008167ffffffffffffffff81111561106257611062613260565b60405190808252806020026020018201604052801561108b578160200160208202803683370190505b50905060005b828110156110d2576110a38582610ad4565b8282815181106110b5576110b561324a565b6020908102919091010152806110ca816131d9565b915050611091565b509392505050565b6000546001600160a01b031633146111045760405162461bcd60e51b81526004016108fe9061301e565b600b55565b600061111460015490565b821061116e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108fe565b5090565b6000546001600160a01b0316331461119c5760405162461bcd60e51b81526004016108fe9061301e565b80516111af90600a906020840190612a17565b5050565b60006111be82611e3b565b5192915050565b600a80546111d29061319e565b80601f01602080910402602001604051908101604052809291908181526020018280546111fe9061319e565b801561124b5780601f106112205761010080835404028352916020019161124b565b820191906000526020600020905b81548152906001019060200180831161122e57829003601f168201915b505050505081565b6000546001600160a01b0316331461127d5760405162461bcd60e51b81526004016108fe9061301e565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600e54610100900460ff1661130c5760405162461bcd60e51b815260206004820152602560248201527f507269766174652073616c65206973206e6f742063757272656e746c792072756044820152646e6e696e6760d81b60648201526084016108fe565b600c5461ffff168261131d60015490565b61132791906130d1565b111561138e5760405162461bcd60e51b815260206004820152603060248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526f206f6620707269766174652073616c6560801b60648201526084016108fe565b600d548211156113f75760405162461bcd60e51b815260206004820152602e60248201527f507572636861736520776f756c6420657863656564206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b60648201526084016108fe565b60006114033383611fe5565b600e549091506001600160a01b038083166201000090920416141561142b57610a3683612077565b600f546001600160a01b038281169116141561144a57610a3683611da2565b60405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f742077686974656c697374656420666f722074686973604482015264081b5a5b9d60da1b60648201526084016108fe565b60006001600160a01b03821661150c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108fe565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461155b5760405162461bcd60e51b81526004016108fe9061301e565b611565600061214b565b565b6060600380546108109061319e565b600e5460ff166115c85760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e672063757272656e746c79206f6e20686f6c640000000000000060448201526064016108fe565b600c5461ffff16816115d960015490565b6115e391906130d1565b11156116015760405162461bcd60e51b81526004016108fe90612fd7565b600d54811115610cb05760405162461bcd60e51b815260206004820152601c60248201527f4d6178696d756d206d696e7420616d6f756e742065786365656465640000000060448201526064016108fe565b6001600160a01b0382163314156116ac5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108fe565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611723848484611a1a565b61172f8484848461219b565b61174b5760405162461bcd60e51b81526004016108fe90613053565b50505050565b606061175e826001541190565b6117c95760405162461bcd60e51b815260206004820152603660248201527f4552433732314d657461646174613a20746f6b656e5552492071756572696564604482015275103337b9103737b732bc34b9ba32b73a103a37b5b2b760511b60648201526084016108fe565b60006117d36122a8565b905060008151116117f3576040518060200160405280600081525061181f565b600a6117fe846122b7565b60405160200161180f929190612e38565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118505760405162461bcd60e51b81526004016108fe9061301e565b600d55565b6000546001600160a01b0316331461187f5760405162461bcd60e51b81526004016108fe9061301e565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118c65760405162461bcd60e51b81526004016108fe9061301e565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146119045760405162461bcd60e51b81526004016108fe9061301e565b6001600160a01b0381166119695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fe565b610cb98161214b565b6000546001600160a01b0316331461199c5760405162461bcd60e51b81526004016108fe9061301e565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a2582611e3b565b80519091506000906001600160a01b0316336001600160a01b03161480611a5c575033611a5184610893565b6001600160a01b0316145b80611a6e57508151611a6e9033610726565b905080611ad85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108fe565b846001600160a01b031682600001516001600160a01b031614611b4c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108fe565b6001600160a01b038416611bb05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108fe565b611bc060008484600001516119be565b6001600160a01b0385166000908152600560205260408120805460019290611bf29084906001600160801b031661311c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611c3e918591166130a6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611cc68460016130d1565b6000818152600460205260409020549091506001600160a01b0316611d5857611cf0816001541190565b15611d585760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008111611df25760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e7420746f206d696e742063616e206e6f742062652030000000000060448201526064016108fe565b6000546001600160a01b03163314611e315780600b54611e1291906130fd565b341015611e315760405162461bcd60e51b81526004016108fe90612f87565b610cb933826123b5565b6040805180820190915260008082526020820152611e5a826001541190565b611eb95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108fe565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f1a57611f0c7f000000000000000000000000000000000000000000000000000000000000000084613144565b611f179060016130d1565b90505b825b818110611f84576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f7157949350505050565b5080611f7c81613187565b915050611f1c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108fe565b604080516bffffffffffffffffffffffff19606085901b16602080830191909152825180830360140181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006054840152607080840191909152835180840390910181526090909201909252805191012060009061206f81846123cf565b949350505050565b600081116120c75760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e7420746f206d696e742063616e206e6f742062652030000000000060448201526064016108fe565b3360009081526010602052604090205460ff16806120fa57336000908152601060205260409020805460ff191660011790555b81600b5461210891906130fd565b3410156121275760405162461bcd60e51b81526004016108fe90612f87565b8015612137576111af33836123b5565b6111af336121468460016130d1565b6123b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561229d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121df903390899088908890600401612ef3565b602060405180830381600087803b1580156121f957600080fd5b505af1925050508015612229575060408051601f3d908101601f1916820190925261222691810190612d2a565b60015b612283573d808015612257576040519150601f19603f3d011682016040523d82523d6000602084013e61225c565b606091505b50805161227b5760405162461bcd60e51b81526004016108fe90613053565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061206f565b506001949350505050565b6060600a80546108109061319e565b6060816122db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230557806122ef816131d9565b91506122fe9050600a836130e9565b91506122df565b60008167ffffffffffffffff81111561232057612320613260565b6040519080825280601f01601f19166020018201604052801561234a576020820181803683370190505b5090505b841561206f5761235f600183613144565b915061236c600a866131f4565b6123779060306130d1565b60f81b81838151811061238c5761238c61324a565b60200101906001600160f81b031916908160001a9053506123ae600a866130e9565b945061234e565b6111af8282604051806020016040528060008152506123eb565b60008060006123de85856126c6565b915091506110d281612736565b6001546001600160a01b03841661244e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108fe565b612459816001541190565b156124a65760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108fe565b7f00000000000000000000000000000000000000000000000000000000000000008311156125215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108fe565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061257d9087906130a6565b6001600160801b0316815260200185836020015161259b91906130a6565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461267f600088848861219b565b61269b5760405162461bcd60e51b81526004016108fe90613053565b816126a5816131d9565b92505080806126b3906131d9565b915050612632565b506001819055611d9a565b6000808251604114156126fd5760208301516040840151606085015160001a6126f1878285856128f1565b9450945050505061272f565b825160401415612727576020830151604084015161271c8683836129de565b93509350505061272f565b506000905060025b9250929050565b600081600481111561274a5761274a613234565b14156127535750565b600181600481111561276757612767613234565b14156127b55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108fe565b60028160048111156127c9576127c9613234565b14156128175760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108fe565b600381600481111561282b5761282b613234565b14156128845760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108fe565b600481600481111561289857612898613234565b1415610cb95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108fe565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561292857506000905060036129d5565b8460ff16601b1415801561294057508460ff16601c14155b1561295157506000905060046129d5565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156129a5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129ce576000600192509250506129d5565b9150600090505b94509492505050565b6000806001600160ff1b038316816129fb60ff86901c601b6130d1565b9050612a09878288856128f1565b935093505050935093915050565b828054612a239061319e565b90600052602060002090601f016020900481019282612a455760008555612a8b565b82601f10612a5e57805160ff1916838001178555612a8b565b82800160010185558215612a8b579182015b82811115612a8b578251825591602001919060010190612a70565b5061116e9291505b8082111561116e5760008155600101612a93565b600067ffffffffffffffff80841115612ac257612ac2613260565b604051601f8501601f19908116603f01168101908282118183101715612aea57612aea613260565b81604052809350858152868686011115612b0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b3457600080fd5b919050565b80358015158114612b3457600080fd5b600082601f830112612b5a57600080fd5b61181f83833560208501612aa7565b600060208284031215612b7b57600080fd5b61181f82612b1d565b60008060408385031215612b9757600080fd5b612ba083612b1d565b9150612bae60208401612b1d565b90509250929050565b600080600060608486031215612bcc57600080fd5b612bd584612b1d565b9250612be360208501612b1d565b9150604084013590509250925092565b60008060008060808587031215612c0957600080fd5b612c1285612b1d565b9350612c2060208601612b1d565b925060408501359150606085013567ffffffffffffffff811115612c4357600080fd5b612c4f87828801612b49565b91505092959194509250565b60008060408385031215612c6e57600080fd5b612c7783612b1d565b9150612bae60208401612b39565b60008060408385031215612c9857600080fd5b612ca183612b1d565b946020939093013593505050565b600080600080600060a08688031215612cc757600080fd5b612cd086612b39565b9450612cde60208701612b39565b935060408601359250612cf360608701612b1d565b9150612d0160808701612b1d565b90509295509295909350565b600060208284031215612d1f57600080fd5b813561181f81613276565b600060208284031215612d3c57600080fd5b815161181f81613276565b600060208284031215612d5957600080fd5b813567ffffffffffffffff811115612d7057600080fd5b8201601f81018413612d8157600080fd5b61206f84823560208401612aa7565b600060208284031215612da257600080fd5b5035919050565b60008060408385031215612dbc57600080fd5b82359150602083013567ffffffffffffffff811115612dda57600080fd5b612de685828601612b49565b9150509250929050565b60008151808452612e0881602086016020860161315b565b601f01601f19169290920160200192915050565b60008151612e2e81856020860161315b565b9290920192915050565b600080845481600182811c915080831680612e5457607f831692505b6020808410821415612e7457634e487b7160e01b86526022600452602486fd5b818015612e885760018114612e9957612ec6565b60ff19861689528489019650612ec6565b60008b81526020902060005b86811015612ebe5781548b820152908501908301612ea5565b505084890196505b505050505050612eea612ed98286612e1c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f2690830184612df0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f6857835183529284019291840191600101612f4c565b50909695505050505050565b60208152600061181f6020830184612df0565b60208082526030908201527f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60408201526f66206d696e74696e67204e465428732960801b606082015260800190565b60208082526027908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015266081bd98813919560ca1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156130c8576130c8613208565b01949350505050565b600082198211156130e4576130e4613208565b500190565b6000826130f8576130f861321e565b500490565b600081600019048311821515161561311757613117613208565b500290565b60006001600160801b038381169083168181101561313c5761313c613208565b039392505050565b60008282101561315657613156613208565b500390565b60005b8381101561317657818101518382015260200161315e565b8381111561174b5750506000910152565b60008161319657613196613208565b506000190190565b600181811c908216806131b257607f821691505b602082108114156131d357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131ed576131ed613208565b5060010190565b6000826132035761320361321e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cb957600080fdfea26469706673582212204b9caba1475307e7f70ab0d24f3855e505511469d8c33a32104e84b7c222ab1e64736f6c63430008070033697066733a2f2f516d614e383547456b41475778714d45714544645631576e3866727a644a3939637942737364397a57416b7878782f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636c19e78311610139578063ba1f879f116100b6578063de7fcb1d1161007a578063de7fcb1d146106cb578063dfe5dd68146106e1578063e222c7f9146106f6578063e985e9c51461070b578063f2fde38b14610754578063feebf0011461077457600080fd5b8063ba1f879f14610628578063c87b56dd14610647578063d5abeb0114610667578063d7224ba014610695578063d93d3244146106ab57600080fd5b806395d89b41116100fd57806395d89b4114610590578063a0712d68146105a5578063a22cb465146105b8578063a290d1e5146105d8578063b88d4fde1461060857600080fd5b80636c19e7831461050a5780636f86b0c81461052a57806370a082311461053d578063715018a61461055d5780638da5cb5b1461057257600080fd5b806334107282116101d2578063438b630011610196578063438b63001461044857806344a0d68a146104755780634f6ccce71461049557806355f804b3146104b55780636352211e146104d55780636c0360eb146104f557600080fd5b806334107282146103ba578063375a069a146103e057806338c0ac5f146104005780633ccfd60b1461042057806342842e0e1461042857600080fd5b806318160ddd1161021957806318160ddd1461032b578063228537331461034057806323b872dd146103605780632f745c591461038057806333bc1c5c146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004612d0d565b610794565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610801565b6040516102829190612f74565b3480156102b957600080fd5b506102cd6102c8366004612d90565b610893565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612c85565b610923565b005b34801561031357600080fd5b5061031d600b5481565b604051908152602001610282565b34801561033757600080fd5b5060015461031d565b34801561034c57600080fd5b5061030561035b366004612caf565b610a3b565b34801561036c57600080fd5b5061030561037b366004612bb7565b610ac9565b34801561038c57600080fd5b5061031d61039b366004612c85565b610ad4565b3480156103ac57600080fd5b50600e546102769060ff1681565b3480156103c657600080fd5b50600e546102cd906201000090046001600160a01b031681565b3480156103ec57600080fd5b506103056103fb366004612d90565b610c4d565b34801561040c57600080fd5b50600f546102cd906001600160a01b031681565b610305610cbc565b34801561043457600080fd5b50610305610443366004612bb7565b61101d565b34801561045457600080fd5b50610468610463366004612b69565b611038565b6040516102829190612f30565b34801561048157600080fd5b50610305610490366004612d90565b6110da565b3480156104a157600080fd5b5061031d6104b0366004612d90565b611109565b3480156104c157600080fd5b506103056104d0366004612d47565b611172565b3480156104e157600080fd5b506102cd6104f0366004612d90565b6111b3565b34801561050157600080fd5b506102a06111c5565b34801561051657600080fd5b50610305610525366004612b69565b611253565b610305610538366004612da9565b6112a7565b34801561054957600080fd5b5061031d610558366004612b69565b6114a0565b34801561056957600080fd5b50610305611531565b34801561057e57600080fd5b506000546001600160a01b03166102cd565b34801561059c57600080fd5b506102a0611567565b6103056105b3366004612d90565b611576565b3480156105c457600080fd5b506103056105d3366004612c5b565b611653565b3480156105e457600080fd5b506102766105f3366004612b69565b60106020526000908152604090205460ff1681565b34801561061457600080fd5b50610305610623366004612bf3565b611718565b34801561063457600080fd5b50600e5461027690610100900460ff1681565b34801561065357600080fd5b506102a0610662366004612d90565b611751565b34801561067357600080fd5b50600c546106829061ffff1681565b60405161ffff9091168152602001610282565b3480156106a157600080fd5b5061031d60085481565b3480156106b757600080fd5b506103056106c6366004612d90565b611826565b3480156106d757600080fd5b5061031d600d5481565b3480156106ed57600080fd5b50610305611855565b34801561070257600080fd5b5061030561189c565b34801561071757600080fd5b50610276610726366004612b84565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076057600080fd5b5061030561076f366004612b69565b6118da565b34801561078057600080fd5b5061030561078f366004612b69565b611972565b60006001600160e01b031982166380ac58cd60e01b14806107c557506001600160e01b03198216635b5e139f60e01b145b806107e057506001600160e01b0319821663780e9d6360e01b145b806107fb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108109061319e565b80601f016020809104026020016040519081016040528092919081815260200182805461083c9061319e565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b60006108a0826001541190565b6109075760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061092e826111b3565b9050806001600160a01b0316836001600160a01b0316141561099d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108fe565b336001600160a01b03821614806109b957506109b98133610726565b610a2b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108fe565b610a368383836119be565b505050565b6000546001600160a01b03163314610a655760405162461bcd60e51b81526004016108fe9061301e565b600e8054600d9490945561ffff1990931694151561ff00191694909417610100931515939093029290921762010000600160b01b031916620100006001600160a01b0393841602179055600f80546001600160a01b03191692909116919091179055565b610a36838383611a1a565b6000610adf836114a0565b8210610b385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108fe565b6000610b4360015490565b905060008060005b83811015610bed576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b9e57805192505b876001600160a01b0316836001600160a01b03161415610bda5786841415610bcc575093506107fb92505050565b83610bd6816131d9565b9450505b5080610be5816131d9565b915050610b4b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108fe565b6000546001600160a01b03163314610c775760405162461bcd60e51b81526004016108fe9061301e565b600c5461ffff1681610c8860015490565b610c9291906130d1565b1115610cb05760405162461bcd60e51b81526004016108fe90612fd7565b610cb981611da2565b50565b6000546001600160a01b03163314610ce65760405162461bcd60e51b81526004016108fe9061301e565b4760006064610cf68360026130fd565b610d0091906130e9565b905060006064610d118460036130fd565b610d1b91906130e9565b905060006064610d2c8560046130fd565b610d3691906130e9565b905060006064610d478660056130fd565b610d5191906130e9565b905060006064610d628760096130fd565b610d6c91906130e9565b905060006064610d7d88600a6130fd565b610d8791906130e9565b905060006064610d9889600f6130fd565b610da291906130e9565b905060006064610db38a60326130fd565b610dbd91906130e9565b604051909150737c007c8da1b2c984fc9562cf71cca71381c1542d9089156108fc02908a906000818181858888f19350505050158015610e01573d6000803e3d6000fd5b50604051734e25ef40a532148d3eeef157dea5b903ed9d20299089156108fc02908a906000818181858888f19350505050158015610e43573d6000803e3d6000fd5b5060405173e42c23f113a4bd5190faba54b38ab1a7f72486299088156108fc029089906000818181858888f19350505050158015610e85573d6000803e3d6000fd5b5060405173b2533a92960803f0a641dd72290ba38399cec4599087156108fc029088906000818181858888f19350505050158015610ec7573d6000803e3d6000fd5b5060405173c1bf8d192c2130c106429d73ba26172113f2b9fc9086156108fc029087906000818181858888f19350505050158015610f09573d6000803e3d6000fd5b5060405173d480c1e4738b7570bfbe809610338efcd0d0c1f39085156108fc029086906000818181858888f19350505050158015610f4b573d6000803e3d6000fd5b50604051737049871039097e61b1ae827e77abb1c9a0b140619084156108fc029085906000818181858888f19350505050158015610f8d573d6000803e3d6000fd5b5060405173709bf4ac7ed6bb2f9d60b1215d983496ab68efbc9083156108fc029084906000818181858888f19350505050158015610fcf573d6000803e3d6000fd5b5060405173f14d484b29a8ac040feb489afadb4b972422b4e99082156108fc029083906000818181858888f19350505050158015611011573d6000803e3d6000fd5b50505050505050505050565b610a3683838360405180602001604052806000815250611718565b60606000611045836114a0565b905060008167ffffffffffffffff81111561106257611062613260565b60405190808252806020026020018201604052801561108b578160200160208202803683370190505b50905060005b828110156110d2576110a38582610ad4565b8282815181106110b5576110b561324a565b6020908102919091010152806110ca816131d9565b915050611091565b509392505050565b6000546001600160a01b031633146111045760405162461bcd60e51b81526004016108fe9061301e565b600b55565b600061111460015490565b821061116e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108fe565b5090565b6000546001600160a01b0316331461119c5760405162461bcd60e51b81526004016108fe9061301e565b80516111af90600a906020840190612a17565b5050565b60006111be82611e3b565b5192915050565b600a80546111d29061319e565b80601f01602080910402602001604051908101604052809291908181526020018280546111fe9061319e565b801561124b5780601f106112205761010080835404028352916020019161124b565b820191906000526020600020905b81548152906001019060200180831161122e57829003601f168201915b505050505081565b6000546001600160a01b0316331461127d5760405162461bcd60e51b81526004016108fe9061301e565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600e54610100900460ff1661130c5760405162461bcd60e51b815260206004820152602560248201527f507269766174652073616c65206973206e6f742063757272656e746c792072756044820152646e6e696e6760d81b60648201526084016108fe565b600c5461ffff168261131d60015490565b61132791906130d1565b111561138e5760405162461bcd60e51b815260206004820152603060248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526f206f6620707269766174652073616c6560801b60648201526084016108fe565b600d548211156113f75760405162461bcd60e51b815260206004820152602e60248201527f507572636861736520776f756c6420657863656564206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b60648201526084016108fe565b60006114033383611fe5565b600e549091506001600160a01b038083166201000090920416141561142b57610a3683612077565b600f546001600160a01b038281169116141561144a57610a3683611da2565b60405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f742077686974656c697374656420666f722074686973604482015264081b5a5b9d60da1b60648201526084016108fe565b60006001600160a01b03821661150c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108fe565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461155b5760405162461bcd60e51b81526004016108fe9061301e565b611565600061214b565b565b6060600380546108109061319e565b600e5460ff166115c85760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e672063757272656e746c79206f6e20686f6c640000000000000060448201526064016108fe565b600c5461ffff16816115d960015490565b6115e391906130d1565b11156116015760405162461bcd60e51b81526004016108fe90612fd7565b600d54811115610cb05760405162461bcd60e51b815260206004820152601c60248201527f4d6178696d756d206d696e7420616d6f756e742065786365656465640000000060448201526064016108fe565b6001600160a01b0382163314156116ac5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108fe565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611723848484611a1a565b61172f8484848461219b565b61174b5760405162461bcd60e51b81526004016108fe90613053565b50505050565b606061175e826001541190565b6117c95760405162461bcd60e51b815260206004820152603660248201527f4552433732314d657461646174613a20746f6b656e5552492071756572696564604482015275103337b9103737b732bc34b9ba32b73a103a37b5b2b760511b60648201526084016108fe565b60006117d36122a8565b905060008151116117f3576040518060200160405280600081525061181f565b600a6117fe846122b7565b60405160200161180f929190612e38565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118505760405162461bcd60e51b81526004016108fe9061301e565b600d55565b6000546001600160a01b0316331461187f5760405162461bcd60e51b81526004016108fe9061301e565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118c65760405162461bcd60e51b81526004016108fe9061301e565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146119045760405162461bcd60e51b81526004016108fe9061301e565b6001600160a01b0381166119695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fe565b610cb98161214b565b6000546001600160a01b0316331461199c5760405162461bcd60e51b81526004016108fe9061301e565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a2582611e3b565b80519091506000906001600160a01b0316336001600160a01b03161480611a5c575033611a5184610893565b6001600160a01b0316145b80611a6e57508151611a6e9033610726565b905080611ad85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108fe565b846001600160a01b031682600001516001600160a01b031614611b4c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108fe565b6001600160a01b038416611bb05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108fe565b611bc060008484600001516119be565b6001600160a01b0385166000908152600560205260408120805460019290611bf29084906001600160801b031661311c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611c3e918591166130a6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611cc68460016130d1565b6000818152600460205260409020549091506001600160a01b0316611d5857611cf0816001541190565b15611d585760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008111611df25760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e7420746f206d696e742063616e206e6f742062652030000000000060448201526064016108fe565b6000546001600160a01b03163314611e315780600b54611e1291906130fd565b341015611e315760405162461bcd60e51b81526004016108fe90612f87565b610cb933826123b5565b6040805180820190915260008082526020820152611e5a826001541190565b611eb95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108fe565b60007f00000000000000000000000000000000000000000000000000000000000000148310611f1a57611f0c7f000000000000000000000000000000000000000000000000000000000000001484613144565b611f179060016130d1565b90505b825b818110611f84576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f7157949350505050565b5080611f7c81613187565b915050611f1c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108fe565b604080516bffffffffffffffffffffffff19606085901b16602080830191909152825180830360140181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006054840152607080840191909152835180840390910181526090909201909252805191012060009061206f81846123cf565b949350505050565b600081116120c75760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e7420746f206d696e742063616e206e6f742062652030000000000060448201526064016108fe565b3360009081526010602052604090205460ff16806120fa57336000908152601060205260409020805460ff191660011790555b81600b5461210891906130fd565b3410156121275760405162461bcd60e51b81526004016108fe90612f87565b8015612137576111af33836123b5565b6111af336121468460016130d1565b6123b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561229d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121df903390899088908890600401612ef3565b602060405180830381600087803b1580156121f957600080fd5b505af1925050508015612229575060408051601f3d908101601f1916820190925261222691810190612d2a565b60015b612283573d808015612257576040519150601f19603f3d011682016040523d82523d6000602084013e61225c565b606091505b50805161227b5760405162461bcd60e51b81526004016108fe90613053565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061206f565b506001949350505050565b6060600a80546108109061319e565b6060816122db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230557806122ef816131d9565b91506122fe9050600a836130e9565b91506122df565b60008167ffffffffffffffff81111561232057612320613260565b6040519080825280601f01601f19166020018201604052801561234a576020820181803683370190505b5090505b841561206f5761235f600183613144565b915061236c600a866131f4565b6123779060306130d1565b60f81b81838151811061238c5761238c61324a565b60200101906001600160f81b031916908160001a9053506123ae600a866130e9565b945061234e565b6111af8282604051806020016040528060008152506123eb565b60008060006123de85856126c6565b915091506110d281612736565b6001546001600160a01b03841661244e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108fe565b612459816001541190565b156124a65760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108fe565b7f00000000000000000000000000000000000000000000000000000000000000148311156125215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108fe565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061257d9087906130a6565b6001600160801b0316815260200185836020015161259b91906130a6565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461267f600088848861219b565b61269b5760405162461bcd60e51b81526004016108fe90613053565b816126a5816131d9565b92505080806126b3906131d9565b915050612632565b506001819055611d9a565b6000808251604114156126fd5760208301516040840151606085015160001a6126f1878285856128f1565b9450945050505061272f565b825160401415612727576020830151604084015161271c8683836129de565b93509350505061272f565b506000905060025b9250929050565b600081600481111561274a5761274a613234565b14156127535750565b600181600481111561276757612767613234565b14156127b55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108fe565b60028160048111156127c9576127c9613234565b14156128175760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108fe565b600381600481111561282b5761282b613234565b14156128845760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108fe565b600481600481111561289857612898613234565b1415610cb95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108fe565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561292857506000905060036129d5565b8460ff16601b1415801561294057508460ff16601c14155b1561295157506000905060046129d5565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156129a5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129ce576000600192509250506129d5565b9150600090505b94509492505050565b6000806001600160ff1b038316816129fb60ff86901c601b6130d1565b9050612a09878288856128f1565b935093505050935093915050565b828054612a239061319e565b90600052602060002090601f016020900481019282612a455760008555612a8b565b82601f10612a5e57805160ff1916838001178555612a8b565b82800160010185558215612a8b579182015b82811115612a8b578251825591602001919060010190612a70565b5061116e9291505b8082111561116e5760008155600101612a93565b600067ffffffffffffffff80841115612ac257612ac2613260565b604051601f8501601f19908116603f01168101908282118183101715612aea57612aea613260565b81604052809350858152868686011115612b0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b3457600080fd5b919050565b80358015158114612b3457600080fd5b600082601f830112612b5a57600080fd5b61181f83833560208501612aa7565b600060208284031215612b7b57600080fd5b61181f82612b1d565b60008060408385031215612b9757600080fd5b612ba083612b1d565b9150612bae60208401612b1d565b90509250929050565b600080600060608486031215612bcc57600080fd5b612bd584612b1d565b9250612be360208501612b1d565b9150604084013590509250925092565b60008060008060808587031215612c0957600080fd5b612c1285612b1d565b9350612c2060208601612b1d565b925060408501359150606085013567ffffffffffffffff811115612c4357600080fd5b612c4f87828801612b49565b91505092959194509250565b60008060408385031215612c6e57600080fd5b612c7783612b1d565b9150612bae60208401612b39565b60008060408385031215612c9857600080fd5b612ca183612b1d565b946020939093013593505050565b600080600080600060a08688031215612cc757600080fd5b612cd086612b39565b9450612cde60208701612b39565b935060408601359250612cf360608701612b1d565b9150612d0160808701612b1d565b90509295509295909350565b600060208284031215612d1f57600080fd5b813561181f81613276565b600060208284031215612d3c57600080fd5b815161181f81613276565b600060208284031215612d5957600080fd5b813567ffffffffffffffff811115612d7057600080fd5b8201601f81018413612d8157600080fd5b61206f84823560208401612aa7565b600060208284031215612da257600080fd5b5035919050565b60008060408385031215612dbc57600080fd5b82359150602083013567ffffffffffffffff811115612dda57600080fd5b612de685828601612b49565b9150509250929050565b60008151808452612e0881602086016020860161315b565b601f01601f19169290920160200192915050565b60008151612e2e81856020860161315b565b9290920192915050565b600080845481600182811c915080831680612e5457607f831692505b6020808410821415612e7457634e487b7160e01b86526022600452602486fd5b818015612e885760018114612e9957612ec6565b60ff19861689528489019650612ec6565b60008b81526020902060005b86811015612ebe5781548b820152908501908301612ea5565b505084890196505b505050505050612eea612ed98286612e1c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f2690830184612df0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f6857835183529284019291840191600101612f4c565b50909695505050505050565b60208152600061181f6020830184612df0565b60208082526030908201527f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60408201526f66206d696e74696e67204e465428732960801b606082015260800190565b60208082526027908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015266081bd98813919560ca1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156130c8576130c8613208565b01949350505050565b600082198211156130e4576130e4613208565b500190565b6000826130f8576130f861321e565b500490565b600081600019048311821515161561311757613117613208565b500290565b60006001600160801b038381169083168181101561313c5761313c613208565b039392505050565b60008282101561315657613156613208565b500390565b60005b8381101561317657818101518382015260200161315e565b8381111561174b5750506000910152565b60008161319657613196613208565b506000190190565b600181811c908216806131b257607f821691505b602082108114156131d357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131ed576131ed613208565b5060010190565b6000826132035761320361321e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cb957600080fdfea26469706673582212204b9caba1475307e7f70ab0d24f3855e505511469d8c33a32104e84b7c222ab1e64736f6c63430008070033

Deployed Bytecode Sourcemap

52211:6795:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37300:370;;;;;;;;;;-1:-1:-1;37300:370:0;;;;;:::i;:::-;;:::i;:::-;;;9073:14:1;;9066:22;9048:41;;9036:2;9021:18;37300:370:0;;;;;;;;39026:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40551:204::-;;;;;;;;;;-1:-1:-1;40551:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7734:32:1;;;7716:51;;7704:2;7689:18;40551:204:0;7570:203:1;40114:379:0;;;;;;;;;;-1:-1:-1;40114:379:0;;;;;:::i;:::-;;:::i;:::-;;52429:33;;;;;;;;;;;;;;;;;;;23186:25:1;;;23174:2;23159:18;52429:33:0;23040:177:1;35861:94:0;;;;;;;;;;-1:-1:-1;35937:12:0;;35861:94;;57749:320;;;;;;;;;;-1:-1:-1;57749:320:0;;;;;:::i;:::-;;:::i;41401:142::-;;;;;;;;;;-1:-1:-1;41401:142:0;;;;;:::i;:::-;;:::i;36492:744::-;;;;;;;;;;-1:-1:-1;36492:744:0;;;;;:::i;:::-;;:::i;52541:30::-;;;;;;;;;;-1:-1:-1;52541:30:0;;;;;;;;52616:22;;;;;;;;;;-1:-1:-1;52616:22:0;;;;;;;-1:-1:-1;;;;;52616:22:0;;;56822:196;;;;;;;;;;-1:-1:-1;56822:196:0;;;;;:::i;:::-;;:::i;52670:22::-;;;;;;;;;;-1:-1:-1;52670:22:0;;;;-1:-1:-1;;;;;52670:22:0;;;58077:924;;;:::i;41606:157::-;;;;;;;;;;-1:-1:-1;41606:157:0;;;;;:::i;:::-;;:::i;55600:357::-;;;;;;;;;;-1:-1:-1;55600:357:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57225:82::-;;;;;;;;;;-1:-1:-1;57225:82:0;;;;;:::i;:::-;;:::i;36024:177::-;;;;;;;;;;-1:-1:-1;36024:177:0;;;;;:::i;:::-;;:::i;57436:106::-;;;;;;;;;;-1:-1:-1;57436:106:0;;;;;:::i;:::-;;:::i;38849:118::-;;;;;;;;;;-1:-1:-1;38849:118:0;;;;;:::i;:::-;;:::i;52342:80::-;;;;;;;;;;;;;:::i;57026:91::-;;;;;;;;;;-1:-1:-1;57026:91:0;;;;;:::i;:::-;;:::i;54024:685::-;;;;;;:::i;:::-;;:::i;37726:211::-;;;;;;;;;;-1:-1:-1;37726:211:0;;;;;:::i;:::-;;:::i;51315:103::-;;;;;;;;;;;;;:::i;50664:87::-;;;;;;;;;;-1:-1:-1;50710:7:0;50737:6;-1:-1:-1;;;;;50737:6:0;50664:87;;39181:98;;;;;;;;;;;;;:::i;53689:327::-;;;;;;:::i;:::-;;:::i;40819:274::-;;;;;;;;;;-1:-1:-1;40819:274:0;;;;;:::i;:::-;;:::i;52725:42::-;;;;;;;;;;-1:-1:-1;52725:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41826:311;;;;;;;;;;-1:-1:-1;41826:311:0;;;;;:::i;:::-;;:::i;52578:31::-;;;;;;;;;;-1:-1:-1;52578:31:0;;;;;;;;;;;55965:363;;;;;;;;;;-1:-1:-1;55965:363:0;;;;;:::i;:::-;;:::i;52469:30::-;;;;;;;;;;-1:-1:-1;52469:30:0;;;;;;;;;;;23021:6:1;23009:19;;;22991:38;;22979:2;22964:18;52469:30:0;22847:188:1;46241:43:0;;;;;;;;;;;;;;;;57315:113;;;;;;;;;;-1:-1:-1;57315:113:0;;;;;:::i;:::-;;:::i;52506:28::-;;;;;;;;;;;;;;;;57648:93;;;;;;;;;;;;;:::i;57550:90::-;;;;;;;;;;;;;:::i;41156:186::-;;;;;;;;;;-1:-1:-1;41156:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;41301:25:0;;;41278:4;41301:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41156:186;51573:201;;;;;;;;;;-1:-1:-1;51573:201:0;;;;;:::i;:::-;;:::i;57125:92::-;;;;;;;;;;-1:-1:-1;57125:92:0;;;;;:::i;:::-;;:::i;37300:370::-;37427:4;-1:-1:-1;;;;;;37457:40:0;;-1:-1:-1;;;37457:40:0;;:99;;-1:-1:-1;;;;;;;37508:48:0;;-1:-1:-1;;;37508:48:0;37457:99;:160;;;-1:-1:-1;;;;;;;37567:50:0;;-1:-1:-1;;;37567:50:0;37457:160;:207;;;-1:-1:-1;;;;;;;;;;11425:40:0;;;37628:36;37443:221;37300:370;-1:-1:-1;;37300:370:0:o;39026:94::-;39080:13;39109:5;39102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39026:94;:::o;40551:204::-;40619:7;40643:16;40651:7;42463:12;;-1:-1:-1;42453:22:0;42376:105;40643:16;40635:74;;;;-1:-1:-1;;;40635:74:0;;21826:2:1;40635:74:0;;;21808:21:1;21865:2;21845:18;;;21838:30;21904:34;21884:18;;;21877:62;-1:-1:-1;;;21955:18:1;;;21948:43;22008:19;;40635:74:0;;;;;;;;;-1:-1:-1;40725:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40725:24:0;;40551:204::o;40114:379::-;40183:13;40199:24;40215:7;40199:15;:24::i;:::-;40183:40;;40244:5;-1:-1:-1;;;;;40238:11:0;:2;-1:-1:-1;;;;;40238:11:0;;;40230:58;;;;-1:-1:-1;;;40230:58:0;;18633:2:1;40230:58:0;;;18615:21:1;18672:2;18652:18;;;18645:30;18711:34;18691:18;;;18684:62;-1:-1:-1;;;18762:18:1;;;18755:32;18804:19;;40230:58:0;18431:398:1;40230:58:0;33411:10;-1:-1:-1;;;;;40313:21:0;;;;:62;;-1:-1:-1;40338:37:0;40355:5;33411:10;41156:186;:::i;40338:37::-;40297:153;;;;-1:-1:-1;;;40297:153:0;;14255:2:1;40297:153:0;;;14237:21:1;14294:2;14274:18;;;14267:30;14333:34;14313:18;;;14306:62;14404:27;14384:18;;;14377:55;14449:19;;40297:153:0;14053:421:1;40297:153:0;40459:28;40468:2;40472:7;40481:5;40459:8;:28::i;:::-;40176:317;40114:379;;:::o;57749:320::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57903:10:::1;:24:::0;;57975:12:::1;:28:::0;;;;-1:-1:-1;;57938:26:0;;;57903:24;::::1;;-1:-1:-1::0;;57938:26:0;;;;;57903:24:::1;57938:26:::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;;58014:18:0::1;::::0;-1:-1:-1;;;;;58014:18:0;;::::1;;;::::0;;58043:7:::1;:18:::0;;-1:-1:-1;;;;;;58043:18:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;57749:320::o;41401:142::-;41509:28;41519:4;41525:2;41529:7;41509:9;:28::i;36492:744::-;36601:7;36636:16;36646:5;36636:9;:16::i;:::-;36628:5;:24;36620:71;;;;-1:-1:-1;;;36620:71:0;;10282:2:1;36620:71:0;;;10264:21:1;10321:2;10301:18;;;10294:30;10360:34;10340:18;;;10333:62;-1:-1:-1;;;10411:18:1;;;10404:32;10453:19;;36620:71:0;10080:398:1;36620:71:0;36698:22;36723:13;35937:12;;;35861:94;36723:13;36698:38;;36743:19;36773:25;36823:9;36818:350;36842:14;36838:1;:18;36818:350;;;36872:31;36906:14;;;:11;:14;;;;;;;;;36872:48;;;;;;;;;-1:-1:-1;;;;;36872:48:0;;;;;-1:-1:-1;;;36872:48:0;;;;;;;;;;;;36933:28;36929:89;;36994:14;;;-1:-1:-1;36929:89:0;37051:5;-1:-1:-1;;;;;37030:26:0;:17;-1:-1:-1;;;;;37030:26:0;;37026:135;;;37088:5;37073:11;:20;37069:59;;;-1:-1:-1;37115:1:0;-1:-1:-1;37108:8:0;;-1:-1:-1;;;37108:8:0;37069:59;37138:13;;;;:::i;:::-;;;;37026:135;-1:-1:-1;36858:3:0;;;;:::i;:::-;;;;36818:350;;;-1:-1:-1;37174:56:0;;-1:-1:-1;;;37174:56:0;;20572:2:1;37174:56:0;;;20554:21:1;20611:2;20591:18;;;20584:30;20650:34;20630:18;;;20623:62;-1:-1:-1;;;20701:18:1;;;20694:44;20755:19;;37174:56:0;20370:410:1;56822:196:0;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;56928:9:::1;::::0;::::1;;56913:11:::0;56897:13:::1;35937:12:::0;;;35861:94;56897:13:::1;:27;;;;:::i;:::-;:40;;56889:92;;;;-1:-1:-1::0;;;56889:92:0::1;;;;;;;:::i;:::-;56992:18;56998:11;56992:5;:18::i;:::-;56822:196:::0;:::o;58077:924::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;58152:21:::1;58137:12;58213:3;58198:11;58152:21:::0;58208:1:::1;58198:11;:::i;:::-;58197:19;;;;:::i;:::-;58184:32:::0;-1:-1:-1;58227:10:0::1;58256:3;58241:11;:7:::0;58251:1:::1;58241:11;:::i;:::-;58240:19;;;;:::i;:::-;58227:32:::0;-1:-1:-1;58270:10:0::1;58299:3;58284:11;:7:::0;58294:1:::1;58284:11;:::i;:::-;58283:19;;;;:::i;:::-;58270:32:::0;-1:-1:-1;58313:10:0::1;58342:3;58327:11;:7:::0;58337:1:::1;58327:11;:::i;:::-;58326:19;;;;:::i;:::-;58313:32:::0;-1:-1:-1;58356:10:0::1;58385:3;58370:11;:7:::0;58380:1:::1;58370:11;:::i;:::-;58369:19;;;;:::i;:::-;58356:32:::0;-1:-1:-1;58399:11:0::1;58430:3;58414:12;:7:::0;58424:2:::1;58414:12;:::i;:::-;58413:20;;;;:::i;:::-;58399:34:::0;-1:-1:-1;58444:11:0::1;58475:3;58459:12;:7:::0;58469:2:::1;58459:12;:::i;:::-;58458:20;;;;:::i;:::-;58444:34:::0;-1:-1:-1;58489:11:0::1;58520:3;58504:12;:7:::0;58514:2:::1;58504:12;:::i;:::-;58503:20;;;;:::i;:::-;58534:27;::::0;58489:34;;-1:-1:-1;52806:42:0::1;::::0;58534:27;::::1;;;::::0;58555:5;;58534:27:::1;::::0;;;58555:5;52806:42;58534:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58572:28:0::1;::::0;52886:42:::1;::::0;58572:28;::::1;;;::::0;58594:5;;58572:28:::1;::::0;;;58594:5;52886:42;58572:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58611:27:0::1;::::0;52965:42:::1;::::0;58611:27;::::1;;;::::0;58632:5;;58611:27:::1;::::0;;;58632:5;52965:42;58611:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58649:27:0::1;::::0;53044:42:::1;::::0;58649:27;::::1;;;::::0;58670:5;;58649:27:::1;::::0;;;58670:5;53044:42;58649:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58687:27:0::1;::::0;53123:42:::1;::::0;58687:27;::::1;;;::::0;58708:5;;58687:27:::1;::::0;;;58708:5;53123:42;58687:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58725:27:0::1;::::0;53202:42:::1;::::0;58725:27;::::1;;;::::0;58746:5;;58725:27:::1;::::0;;;58746:5;53202:42;58725:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58763:29:0::1;::::0;53282:42:::1;::::0;58763:29;::::1;;;::::0;58785:6;;58763:29:::1;::::0;;;58785:6;53282:42;58763:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58803:29:0::1;::::0;53362:42:::1;::::0;58803:29;::::1;;;::::0;58825:6;;58803:29:::1;::::0;;;58825:6;53362:42;58803:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58845:29:0::1;::::0;53442:42:::1;::::0;58845:29;::::1;;;::::0;58867:6;;58845:29:::1;::::0;;;58867:6;53442:42;58845:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;58124:877;;;;;;;;;58077:924::o:0;41606:157::-;41718:39;41735:4;41741:2;41745:7;41718:39;;;;;;;;;;;;:16;:39::i;55600:357::-;55660:16;55688:23;55714:17;55724:6;55714:9;:17::i;:::-;55688:43;;55742:25;55784:15;55770:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55770:30:0;;55742:58;;55816:9;55811:113;55831:15;55827:1;:19;55811:113;;;55882:30;55902:6;55910:1;55882:19;:30::i;:::-;55868:8;55877:1;55868:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55848:3;;;;:::i;:::-;;;;55811:113;;;-1:-1:-1;55941:8:0;55600:357;-1:-1:-1;;;55600:357:0:o;57225:82::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57287:4:::1;:12:::0;57225:82::o;36024:177::-;36091:7;36123:13;35937:12;;;35861:94;36123:13;36115:5;:21;36107:69;;;;-1:-1:-1;;;36107:69:0;;12280:2:1;36107:69:0;;;12262:21:1;12319:2;12299:18;;;12292:30;12358:34;12338:18;;;12331:62;-1:-1:-1;;;12409:18:1;;;12402:33;12452:19;;36107:69:0;12078:399:1;36107:69:0;-1:-1:-1;36190:5:0;36024:177::o;57436:106::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57513:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57436:106:::0;:::o;38849:118::-;38913:7;38936:20;38948:7;38936:11;:20::i;:::-;:25;;38849:118;-1:-1:-1;;38849:118:0:o;52342:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57026:91::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57092:7:::1;:17:::0;;-1:-1:-1;;;;;57092:17:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;57092:17:0;;::::1;::::0;;;::::1;::::0;;57026:91::o;54024:685::-;54127:11;;;;;;;54119:61;;;;-1:-1:-1;;;54119:61:0;;22240:2:1;54119:61:0;;;22222:21:1;22279:2;22259:18;;;22252:30;22318:34;22298:18;;;22291:62;-1:-1:-1;;;22369:18:1;;;22362:35;22414:19;;54119:61:0;22038:401:1;54119:61:0;54230:9;;;;54215:11;54199:13;35937:12;;;35861:94;54199:13;:27;;;;:::i;:::-;:40;;54191:101;;;;-1:-1:-1;;;54191:101:0;;17036:2:1;54191:101:0;;;17018:21:1;17075:2;17055:18;;;17048:30;17114:34;17094:18;;;17087:62;-1:-1:-1;;;17165:18:1;;;17158:46;17221:19;;54191:101:0;16834:412:1;54191:101:0;54326:12;;54311:11;:27;;54303:86;;;;-1:-1:-1;;;54303:86:0;;16260:2:1;54303:86:0;;;16242:21:1;16299:2;16279:18;;;16272:30;16338:34;16318:18;;;16311:62;-1:-1:-1;;;16389:18:1;;;16382:44;16443:19;;54303:86:0;16058:410:1;54303:86:0;54402:15;54420:43;54441:10;54453:9;54420:20;:43::i;:::-;54491:7;;54402:61;;-1:-1:-1;;;;;;54480:18:0;;;54491:7;;;;;54480:18;54476:224;;;54515:21;54524:11;54515:8;:21::i;54476:224::-;54568:7;;-1:-1:-1;;;;;54557:18:0;;;54568:7;;54557:18;54553:147;;;54592:18;54598:11;54592:5;:18::i;54553:147::-;54641:47;;-1:-1:-1;;;54641:47:0;;18227:2:1;54641:47:0;;;18209:21:1;18266:2;18246:18;;;18239:30;18305:34;18285:18;;;18278:62;-1:-1:-1;;;18356:18:1;;;18349:35;18401:19;;54641:47:0;18025:401:1;37726:211:0;37790:7;-1:-1:-1;;;;;37814:19:0;;37806:75;;;;-1:-1:-1;;;37806:75:0;;15038:2:1;37806:75:0;;;15020:21:1;15077:2;15057:18;;;15050:30;15116:34;15096:18;;;15089:62;-1:-1:-1;;;15167:18:1;;;15160:41;15218:19;;37806:75:0;14836:407:1;37806:75:0;-1:-1:-1;;;;;;37903:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37903:27:0;;37726:211::o;51315:103::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;51380:30:::1;51407:1;51380:18;:30::i;:::-;51315:103::o:0;39181:98::-;39237:13;39266:7;39259:14;;;;;:::i;53689:327::-;53757:10;;;;53749:48;;;;-1:-1:-1;;;53749:48:0;;13901:2:1;53749:48:0;;;13883:21:1;13940:2;13920:18;;;13913:30;13979:27;13959:18;;;13952:55;14024:18;;53749:48:0;13699:349:1;53749:48:0;53847:9;;;;53832:11;53816:13;35937:12;;;35861:94;53816:13;:27;;;;:::i;:::-;:40;;53808:92;;;;-1:-1:-1;;;53808:92:0;;;;;;;:::i;:::-;53934:12;;53919:11;:27;;53911:68;;;;-1:-1:-1;;;53911:68:0;;14681:2:1;53911:68:0;;;14663:21:1;14720:2;14700:18;;;14693:30;14759;14739:18;;;14732:58;14807:18;;53911:68:0;14479:352:1;40819:274:0;-1:-1:-1;;;;;40910:24:0;;33411:10;40910:24;;40902:63;;;;-1:-1:-1;;;40902:63:0;;17453:2:1;40902:63:0;;;17435:21:1;17492:2;17472:18;;;17465:30;17531:28;17511:18;;;17504:56;17577:18;;40902:63:0;17251:350:1;40902:63:0;33411:10;40974:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40974:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40974:53:0;;;;;;;;;;41039:48;;9048:41:1;;;40974:42:0;;33411:10;41039:48;;9021:18:1;41039:48:0;;;;;;;40819:274;;:::o;41826:311::-;41963:28;41973:4;41979:2;41983:7;41963:9;:28::i;:::-;42014:48;42037:4;42043:2;42047:7;42056:5;42014:22;:48::i;:::-;41998:133;;;;-1:-1:-1;;;41998:133:0;;;;;;;:::i;:::-;41826:311;;;;:::o;55965:363::-;56038:13;56073:16;56081:7;42463:12;;-1:-1:-1;42453:22:0;42376:105;56073:16;56065:83;;;;-1:-1:-1;;;56065:83:0;;20987:2:1;56065:83:0;;;20969:21:1;21026:2;21006:18;;;20999:30;21065:34;21045:18;;;21038:62;-1:-1:-1;;;21116:18:1;;;21109:52;21178:19;;56065:83:0;20785:418:1;56065:83:0;56159:28;56190:10;:8;:10::i;:::-;56159:41;;56249:1;56224:14;56218:28;:32;:102;;;;;;;;;;;;;;;;;56277:7;56286:18;:7;:16;:18::i;:::-;56260:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56218:102;56211:109;55965:363;-1:-1:-1;;;55965:363:0:o;57315:113::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57392:12:::1;:28:::0;57315:113::o;57648:93::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57722:11:::1;::::0;;-1:-1:-1;;57707:26:0;::::1;57722:11;::::0;;;::::1;;;57721:12;57707:26:::0;;::::1;;::::0;;57648:93::o;57550:90::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57622:10:::1;::::0;;-1:-1:-1;;57608:24:0;::::1;57622:10;::::0;;::::1;57621:11;57608:24;::::0;;57550:90::o;51573:201::-;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51662:22:0;::::1;51654:73;;;::::0;-1:-1:-1;;;51654:73:0;;11045:2:1;51654:73:0::1;::::0;::::1;11027:21:1::0;11084:2;11064:18;;;11057:30;11123:34;11103:18;;;11096:62;-1:-1:-1;;;11174:18:1;;;11167:36;11220:19;;51654:73:0::1;10843:402:1::0;51654:73:0::1;51738:28;51757:8;51738:18;:28::i;57125:92::-:0;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;33411:10;50884:23;50876:68;;;;-1:-1:-1;;;50876:68:0;;;;;;;:::i;:::-;57192:7:::1;:17:::0;;-1:-1:-1;;;;;;57192:17:0::1;-1:-1:-1::0;;;;;57192:17:0;;;::::1;::::0;;;::::1;::::0;;57125:92::o;46063:172::-;46160:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46160:29:0;-1:-1:-1;;;;;46160:29:0;;;;;;;;;46201:28;;46160:24;;46201:28;;;;;;;46063:172;;;:::o;44428:1529::-;44525:35;44563:20;44575:7;44563:11;:20::i;:::-;44634:18;;44525:58;;-1:-1:-1;44592:22:0;;-1:-1:-1;;;;;44618:34:0;33411:10;-1:-1:-1;;;;;44618:34:0;;:81;;;-1:-1:-1;33411:10:0;44663:20;44675:7;44663:11;:20::i;:::-;-1:-1:-1;;;;;44663:36:0;;44618:81;:142;;;-1:-1:-1;44727:18:0;;44710:50;;33411:10;41156:186;:::i;44710:50::-;44592:169;;44786:17;44770:101;;;;-1:-1:-1;;;44770:101:0;;17808:2:1;44770:101:0;;;17790:21:1;17847:2;17827:18;;;17820:30;17886:34;17866:18;;;17859:62;-1:-1:-1;;;17937:18:1;;;17930:48;17995:19;;44770:101:0;17606:414:1;44770:101:0;44918:4;-1:-1:-1;;;;;44896:26:0;:13;:18;;;-1:-1:-1;;;;;44896:26:0;;44880:98;;;;-1:-1:-1;;;44880:98:0;;15853:2:1;44880:98:0;;;15835:21:1;15892:2;15872:18;;;15865:30;15931:34;15911:18;;;15904:62;-1:-1:-1;;;15982:18:1;;;15975:36;16028:19;;44880:98:0;15651:402:1;44880:98:0;-1:-1:-1;;;;;44993:16:0;;44985:66;;;;-1:-1:-1;;;44985:66:0;;13092:2:1;44985:66:0;;;13074:21:1;13131:2;13111:18;;;13104:30;13170:34;13150:18;;;13143:62;-1:-1:-1;;;13221:18:1;;;13214:35;13266:19;;44985:66:0;12890:401:1;44985:66:0;45160:49;45177:1;45181:7;45190:13;:18;;;45160:8;:49::i;:::-;-1:-1:-1;;;;;45218:18:0;;;;;;:12;:18;;;;;:31;;45248:1;;45218:18;:31;;45248:1;;-1:-1:-1;;;;;45218:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;45218:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45256:16:0;;-1:-1:-1;45256:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;45256:16:0;;:29;;-1:-1:-1;;45256:29:0;;:::i;:::-;;;-1:-1:-1;;;;;45256:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45315:43:0;;;;;;;;-1:-1:-1;;;;;45315:43:0;;;;;;45341:15;45315:43;;;;;;;;;-1:-1:-1;45292:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;45292:66:0;-1:-1:-1;;;;;;45292:66:0;;;;;;;;;;;45608:11;45304:7;-1:-1:-1;45608:11:0;:::i;:::-;45671:1;45630:24;;;:11;:24;;;;;:29;45586:33;;-1:-1:-1;;;;;;45630:29:0;45626:236;;45688:20;45696:11;42463:12;;-1:-1:-1;42453:22:0;42376:105;45688:20;45684:171;;;45748:97;;;;;;;;45775:18;;-1:-1:-1;;;;;45748:97:0;;;;;;45806:28;;;;45748:97;;;;;;;;;;-1:-1:-1;45721:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;45721:124:0;-1:-1:-1;;;;;;45721:124:0;;;;;;;;;;;;45684:171;45894:7;45890:2;-1:-1:-1;;;;;45875:27:0;45884:4;-1:-1:-1;;;;;45875:27:0;;;;;;;;;;;45909:42;44518:1439;;;44428:1529;;;:::o;55276:316::-;55350:1;55336:11;:15;55328:55;;;;-1:-1:-1;;;55328:55:0;;19814:2:1;55328:55:0;;;19796:21:1;19853:2;19833:18;;;19826:30;19892:29;19872:18;;;19865:57;19939:18;;55328:55:0;19612:351:1;55328:55:0;50710:7;50737:6;-1:-1:-1;;;;;50737:6:0;55398:10;:21;55394:146;;55464:11;55457:4;;:18;;;;:::i;:::-;55444:9;:31;;55436:92;;;;-1:-1:-1;;;55436:92:0;;;;;;;:::i;:::-;55550:34;55560:10;55572:11;55550:9;:34::i;38189:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;38306:16:0;38314:7;42463:12;;-1:-1:-1;42453:22:0;42376:105;38306:16;38298:71;;;;-1:-1:-1;;;38298:71:0;;11452:2:1;38298:71:0;;;11434:21:1;11491:2;11471:18;;;11464:30;11530:34;11510:18;;;11503:62;-1:-1:-1;;;11581:18:1;;;11574:40;11631:19;;38298:71:0;11250:406:1;38298:71:0;38378:26;38426:12;38415:7;:23;38411:93;;38470:22;38480:12;38470:7;:22;:::i;:::-;:26;;38495:1;38470:26;:::i;:::-;38449:47;;38411:93;38532:7;38512:212;38549:18;38541:4;:26;38512:212;;38586:31;38620:17;;;:11;:17;;;;;;;;;38586:51;;;;;;;;;-1:-1:-1;;;;;38586:51:0;;;;;-1:-1:-1;;;38586:51:0;;;;;;;;;;;;38650:28;38646:71;;38698:9;38189:606;-1:-1:-1;;;;38189:606:0:o;38646:71::-;-1:-1:-1;38569:6:0;;;;:::i;:::-;;;;38512:212;;;-1:-1:-1;38732:57:0;;-1:-1:-1;;;38732:57:0;;21410:2:1;38732:57:0;;;21392:21:1;21449:2;21429:18;;;21422:30;21488:34;21468:18;;;21461:62;-1:-1:-1;;;21539:18:1;;;21532:45;21594:19;;38732:57:0;21208:411:1;56588:199:0;56456:24;;;-1:-1:-1;;5794:2:1;5790:15;;;5786:53;56456:24:0;;;;5774:66:1;;;;56456:24:0;;;;;;;;;5856:12:1;;;56456:24:0;;56446:35;;;;;;7427:66:1;56509:62:0;;;7415:79:1;7510:12;;;;7503:28;;;;56509:62:0;;;;;;;;;;7547:12:1;;;;56509:62:0;;;56499:73;;;;;56680:7;;56756:23;56700:38;56769:9;56756:12;:23::i;:::-;56749:30;56588:199;-1:-1:-1;;;;56588:199:0:o;54717:543::-;54794:1;54780:11;:15;54772:55;;;;-1:-1:-1;;;54772:55:0;;19814:2:1;54772:55:0;;;19796:21:1;19853:2;19833:18;;;19826:30;19892:29;19872:18;;;19865:57;19939:18;;54772:55:0;19612:351:1;54772:55:0;54911:10;54885:12;54900:22;;;:10;:22;;;;;;;;;54933:68;;54971:10;54960:22;;;;:10;:22;;;;;:29;;-1:-1:-1;;54960:29:0;54985:4;54960:29;;;54933:68;55039:11;55032:4;;:18;;;;:::i;:::-;55019:9;:31;;55011:92;;;;-1:-1:-1;;;55011:92:0;;;;;;;:::i;:::-;55117:7;55114:139;;;55140:34;55150:10;55162:11;55140:9;:34::i;55114:139::-;55205:36;55215:10;55227:13;:11;55239:1;55227:13;:::i;:::-;55205:9;:36::i;51934:191::-;52008:16;52027:6;;-1:-1:-1;;;;;52044:17:0;;;-1:-1:-1;;;;;;52044:17:0;;;;;;52077:40;;52027:6;;;;;;;52077:40;;52008:16;52077:40;51997:128;51934:191;:::o;47778:690::-;47915:4;-1:-1:-1;;;;;47932:13:0;;1528:19;:23;47928:535;;47971:72;;-1:-1:-1;;;47971:72:0;;-1:-1:-1;;;;;47971:36:0;;;;;:72;;33411:10;;48022:4;;48028:7;;48037:5;;47971:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47971:72:0;;;;;;;;-1:-1:-1;;47971:72:0;;;;;;;;;;;;:::i;:::-;;;47958:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48202:13:0;;48198:215;;48235:61;;-1:-1:-1;;;48235:61:0;;;;;;;:::i;48198:215::-;48381:6;48375:13;48366:6;48362:2;48358:15;48351:38;47958:464;-1:-1:-1;;;;;;48093:55:0;-1:-1:-1;;;48093:55:0;;-1:-1:-1;48086:62:0;;47928:535;-1:-1:-1;48451:4:0;47778:690;;;;;;:::o;53574:107::-;53634:13;53666:7;53659:14;;;;;:::i;21359:723::-;21415:13;21636:10;21632:53;;-1:-1:-1;;21663:10:0;;;;;;;;;;;;-1:-1:-1;;;21663:10:0;;;;;21359:723::o;21632:53::-;21710:5;21695:12;21751:78;21758:9;;21751:78;;21784:8;;;;:::i;:::-;;-1:-1:-1;21807:10:0;;-1:-1:-1;21815:2:0;21807:10;;:::i;:::-;;;21751:78;;;21839:19;21871:6;21861:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21861:17:0;;21839:39;;21889:154;21896:10;;21889:154;;21923:11;21933:1;21923:11;;:::i;:::-;;-1:-1:-1;21992:10:0;22000:2;21992:5;:10;:::i;:::-;21979:24;;:2;:24;:::i;:::-;21966:39;;21949:6;21956;21949:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21949:56:0;;;;;;;;-1:-1:-1;22020:11:0;22029:2;22020:11;;:::i;:::-;;;21889:154;;42487:98;42552:27;42562:2;42566:8;42552:27;;;;;;;;;;;;:9;:27::i;27535:231::-;27613:7;27634:17;27653:18;27675:27;27686:4;27692:9;27675:10;:27::i;:::-;27633:69;;;;27713:18;27725:5;27713:11;:18::i;42924:1272::-;43052:12;;-1:-1:-1;;;;;43079:16:0;;43071:62;;;;-1:-1:-1;;;43071:62:0;;20170:2:1;43071:62:0;;;20152:21:1;20209:2;20189:18;;;20182:30;20248:34;20228:18;;;20221:62;-1:-1:-1;;;20299:18:1;;;20292:31;20340:19;;43071:62:0;19968:397:1;43071:62:0;43270:21;43278:12;42463;;-1:-1:-1;42453:22:0;42376:105;43270:21;43269:22;43261:64;;;;-1:-1:-1;;;43261:64:0;;19456:2:1;43261:64:0;;;19438:21:1;19495:2;19475:18;;;19468:30;19534:31;19514:18;;;19507:59;19583:18;;43261:64:0;19254:353:1;43261:64:0;43352:12;43340:8;:24;;43332:71;;;;-1:-1:-1;;;43332:71:0;;22646:2:1;43332:71:0;;;22628:21:1;22685:2;22665:18;;;22658:30;22724:34;22704:18;;;22697:62;-1:-1:-1;;;22775:18:1;;;22768:32;22817:19;;43332:71:0;22444:398:1;43332:71:0;-1:-1:-1;;;;;43515:16:0;;43482:30;43515:16;;;:12;:16;;;;;;;;;43482:49;;;;;;;;;-1:-1:-1;;;;;43482:49:0;;;;;-1:-1:-1;;;43482:49:0;;;;;;;;;;;43557:119;;;;;;;;43577:19;;43482:49;;43557:119;;;43577:39;;43607:8;;43577:39;:::i;:::-;-1:-1:-1;;;;;43557:119:0;;;;;43660:8;43625:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;43557:119:0;;;;;;-1:-1:-1;;;;;43538:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;43538:138:0;;;;;;;;;;;;43711:43;;;;;;;;;;;43737:15;43711:43;;;;;;;;43683:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;43683:71:0;-1:-1:-1;;;;;;43683:71:0;;;;;;;;;;;;;;;;;;43695:12;;43807:281;43831:8;43827:1;:12;43807:281;;;43860:38;;43885:12;;-1:-1:-1;;;;;43860:38:0;;;43877:1;;43860:38;;43877:1;;43860:38;43925:59;43956:1;43960:2;43964:12;43978:5;43925:22;:59::i;:::-;43907:150;;;;-1:-1:-1;;;43907:150:0;;;;;;;:::i;:::-;44066:14;;;;:::i;:::-;;;;43841:3;;;;;:::i;:::-;;;;43807:281;;;-1:-1:-1;44096:12:0;:27;;;44130:60;41826:311;25425:1308;25506:7;25515:12;25740:9;:16;25760:2;25740:22;25736:990;;;26036:4;26021:20;;26015:27;26086:4;26071:20;;26065:27;26144:4;26129:20;;26123:27;25779:9;26115:36;26187:25;26198:4;26115:36;26015:27;26065;26187:10;:25::i;:::-;26180:32;;;;;;;;;25736:990;26234:9;:16;26254:2;26234:22;26230:496;;;26509:4;26494:20;;26488:27;26560:4;26545:20;;26539:27;26602:23;26613:4;26488:27;26539;26602:10;:23::i;:::-;26595:30;;;;;;;;26230:496;-1:-1:-1;26674:1:0;;-1:-1:-1;26678:35:0;26230:496;25425:1308;;;;;:::o;23696:643::-;23774:20;23765:5;:29;;;;;;;;:::i;:::-;;23761:571;;;23696:643;:::o;23761:571::-;23872:29;23863:5;:38;;;;;;;;:::i;:::-;;23859:473;;;23918:34;;-1:-1:-1;;;23918:34:0;;9929:2:1;23918:34:0;;;9911:21:1;9968:2;9948:18;;;9941:30;10007:26;9987:18;;;9980:54;10051:18;;23918:34:0;9727:348:1;23859:473:0;23983:35;23974:5;:44;;;;;;;;:::i;:::-;;23970:362;;;24035:41;;-1:-1:-1;;;24035:41:0;;10685:2:1;24035:41:0;;;10667:21:1;10724:2;10704:18;;;10697:30;10763:33;10743:18;;;10736:61;10814:18;;24035:41:0;10483:355:1;23970:362:0;24107:30;24098:5;:39;;;;;;;;:::i;:::-;;24094:238;;;24154:44;;-1:-1:-1;;;24154:44:0;;13498:2:1;24154:44:0;;;13480:21:1;13537:2;13517:18;;;13510:30;13576:34;13556:18;;;13549:62;-1:-1:-1;;;13627:18:1;;;13620:32;13669:19;;24154:44:0;13296:398:1;24094:238:0;24229:30;24220:5;:39;;;;;;;;:::i;:::-;;24216:116;;;24276:44;;-1:-1:-1;;;24276:44:0;;15450:2:1;24276:44:0;;;15432:21:1;15489:2;15469:18;;;15462:30;15528:34;15508:18;;;15501:62;-1:-1:-1;;;15579:18:1;;;15572:32;15621:19;;24276:44:0;15248:398:1;28987:1632:0;29118:7;;30052:66;30039:79;;30035:163;;;-1:-1:-1;30151:1:0;;-1:-1:-1;30155:30:0;30135:51;;30035:163;30212:1;:7;;30217:2;30212:7;;:18;;;;;30223:1;:7;;30228:2;30223:7;;30212:18;30208:102;;;-1:-1:-1;30263:1:0;;-1:-1:-1;30267:30:0;30247:51;;30208:102;30424:24;;;30407:14;30424:24;;;;;;;;;9327:25:1;;;9400:4;9388:17;;9368:18;;;9361:45;;;;9422:18;;;9415:34;;;9465:18;;;9458:34;;;30424:24:0;;9299:19:1;;30424:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30424:24:0;;-1:-1:-1;;30424:24:0;;;-1:-1:-1;;;;;;;30463:20:0;;30459:103;;30516:1;30520:29;30500:50;;;;;;;30459:103;30582:6;-1:-1:-1;30590:20:0;;-1:-1:-1;28987:1632:0;;;;;;;;:::o;28029:344::-;28143:7;;-1:-1:-1;;;;;28189:80:0;;28143:7;28296:25;28312:3;28297:18;;;28319:2;28296:25;:::i;:::-;28280:42;;28340:25;28351:4;28357:1;28360;28363;28340:10;:25::i;:::-;28333:32;;;;;;28029:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;2434:18;2426:6;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:254::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;3052:2;3037:18;;;;3024:32;;-1:-1:-1;;;2808:254:1:o;3067:466::-;3156:6;3164;3172;3180;3188;3241:3;3229:9;3220:7;3216:23;3212:33;3209:53;;;3258:1;3255;3248:12;3209:53;3281:26;3297:9;3281:26;:::i;:::-;3271:36;;3326:35;3357:2;3346:9;3342:18;3326:35;:::i;:::-;3316:45;;3408:2;3397:9;3393:18;3380:32;3370:42;;3431:38;3465:2;3454:9;3450:18;3431:38;:::i;:::-;3421:48;;3488:39;3522:3;3511:9;3507:19;3488:39;:::i;:::-;3478:49;;3067:466;;;;;;;;:::o;3538:245::-;3596:6;3649:2;3637:9;3628:7;3624:23;3620:32;3617:52;;;3665:1;3662;3655:12;3617:52;3704:9;3691:23;3723:30;3747:5;3723:30;:::i;3788:249::-;3857:6;3910:2;3898:9;3889:7;3885:23;3881:32;3878:52;;;3926:1;3923;3916:12;3878:52;3958:9;3952:16;3977:30;4001:5;3977:30;:::i;4042:450::-;4111:6;4164:2;4152:9;4143:7;4139:23;4135:32;4132:52;;;4180:1;4177;4170:12;4132:52;4220:9;4207:23;4253:18;4245:6;4242:30;4239:50;;;4285:1;4282;4275:12;4239:50;4308:22;;4361:4;4353:13;;4349:27;-1:-1:-1;4339:55:1;;4390:1;4387;4380:12;4339:55;4413:73;4478:7;4473:2;4460:16;4455:2;4451;4447:11;4413:73;:::i;4497:180::-;4556:6;4609:2;4597:9;4588:7;4584:23;4580:32;4577:52;;;4625:1;4622;4615:12;4577:52;-1:-1:-1;4648:23:1;;4497:180;-1:-1:-1;4497:180:1:o;4682:388::-;4759:6;4767;4820:2;4808:9;4799:7;4795:23;4791:32;4788:52;;;4836:1;4833;4826:12;4788:52;4872:9;4859:23;4849:33;;4933:2;4922:9;4918:18;4905:32;4960:18;4952:6;4949:30;4946:50;;;4992:1;4989;4982:12;4946:50;5015:49;5056:7;5047:6;5036:9;5032:22;5015:49;:::i;:::-;5005:59;;;4682:388;;;;;:::o;5075:257::-;5116:3;5154:5;5148:12;5181:6;5176:3;5169:19;5197:63;5253:6;5246:4;5241:3;5237:14;5230:4;5223:5;5219:16;5197:63;:::i;:::-;5314:2;5293:15;-1:-1:-1;;5289:29:1;5280:39;;;;5321:4;5276:50;;5075:257;-1:-1:-1;;5075:257:1:o;5337:185::-;5379:3;5417:5;5411:12;5432:52;5477:6;5472:3;5465:4;5458:5;5454:16;5432:52;:::i;:::-;5500:16;;;;;5337:185;-1:-1:-1;;5337:185:1:o;5879:1301::-;6156:3;6185:1;6218:6;6212:13;6248:3;6270:1;6298:9;6294:2;6290:18;6280:28;;6358:2;6347:9;6343:18;6380;6370:61;;6424:4;6416:6;6412:17;6402:27;;6370:61;6450:2;6498;6490:6;6487:14;6467:18;6464:38;6461:165;;;-1:-1:-1;;;6525:33:1;;6581:4;6578:1;6571:15;6611:4;6532:3;6599:17;6461:165;6642:18;6669:104;;;;6787:1;6782:320;;;;6635:467;;6669:104;-1:-1:-1;;6702:24:1;;6690:37;;6747:16;;;;-1:-1:-1;6669:104:1;;6782:320;23295:1;23288:14;;;23332:4;23319:18;;6877:1;6891:165;6905:6;6902:1;6899:13;6891:165;;;6983:14;;6970:11;;;6963:35;7026:16;;;;6920:10;;6891:165;;;6895:3;;7085:6;7080:3;7076:16;7069:23;;6635:467;;;;;;;7118:56;7143:30;7169:3;7161:6;7143:30;:::i;:::-;-1:-1:-1;;;5587:20:1;;5632:1;5623:11;;5527:113;7118:56;7111:63;5879:1301;-1:-1:-1;;;;;5879:1301:1:o;7778:488::-;-1:-1:-1;;;;;8047:15:1;;;8029:34;;8099:15;;8094:2;8079:18;;8072:43;8146:2;8131:18;;8124:34;;;8194:3;8189:2;8174:18;;8167:31;;;7972:4;;8215:45;;8240:19;;8232:6;8215:45;:::i;:::-;8207:53;7778:488;-1:-1:-1;;;;;;7778:488:1:o;8271:632::-;8442:2;8494:21;;;8564:13;;8467:18;;;8586:22;;;8413:4;;8442:2;8665:15;;;;8639:2;8624:18;;;8413:4;8708:169;8722:6;8719:1;8716:13;8708:169;;;8783:13;;8771:26;;8852:15;;;;8817:12;;;;8744:1;8737:9;8708:169;;;-1:-1:-1;8894:3:1;;8271:632;-1:-1:-1;;;;;;8271:632:1:o;9503:219::-;9652:2;9641:9;9634:21;9615:4;9672:44;9712:2;9701:9;9697:18;9689:6;9672:44;:::i;11661:412::-;11863:2;11845:21;;;11902:2;11882:18;;;11875:30;11941:34;11936:2;11921:18;;11914:62;-1:-1:-1;;;12007:2:1;11992:18;;11985:46;12063:3;12048:19;;11661:412::o;12482:403::-;12684:2;12666:21;;;12723:2;12703:18;;;12696:30;12762:34;12757:2;12742:18;;12735:62;-1:-1:-1;;;12828:2:1;12813:18;;12806:37;12875:3;12860:19;;12482:403::o;16473:356::-;16675:2;16657:21;;;16694:18;;;16687:30;16753:34;16748:2;16733:18;;16726:62;16820:2;16805:18;;16473:356::o;18834:415::-;19036:2;19018:21;;;19075:2;19055:18;;;19048:30;19114:34;19109:2;19094:18;;19087:62;-1:-1:-1;;;19180:2:1;19165:18;;19158:49;19239:3;19224:19;;18834:415::o;23348:253::-;23388:3;-1:-1:-1;;;;;23477:2:1;23474:1;23470:10;23507:2;23504:1;23500:10;23538:3;23534:2;23530:12;23525:3;23522:21;23519:47;;;23546:18;;:::i;:::-;23582:13;;23348:253;-1:-1:-1;;;;23348:253:1:o;23606:128::-;23646:3;23677:1;23673:6;23670:1;23667:13;23664:39;;;23683:18;;:::i;:::-;-1:-1:-1;23719:9:1;;23606:128::o;23739:120::-;23779:1;23805;23795:35;;23810:18;;:::i;:::-;-1:-1:-1;23844:9:1;;23739:120::o;23864:168::-;23904:7;23970:1;23966;23962:6;23958:14;23955:1;23952:21;23947:1;23940:9;23933:17;23929:45;23926:71;;;23977:18;;:::i;:::-;-1:-1:-1;24017:9:1;;23864:168::o;24037:246::-;24077:4;-1:-1:-1;;;;;24190:10:1;;;;24160;;24212:12;;;24209:38;;;24227:18;;:::i;:::-;24264:13;;24037:246;-1:-1:-1;;;24037:246:1:o;24288:125::-;24328:4;24356:1;24353;24350:8;24347:34;;;24361:18;;:::i;:::-;-1:-1:-1;24398:9:1;;24288:125::o;24418:258::-;24490:1;24500:113;24514:6;24511:1;24508:13;24500:113;;;24590:11;;;24584:18;24571:11;;;24564:39;24536:2;24529:10;24500:113;;;24631:6;24628:1;24625:13;24622:48;;;-1:-1:-1;;24666:1:1;24648:16;;24641:27;24418:258::o;24681:136::-;24720:3;24748:5;24738:39;;24757:18;;:::i;:::-;-1:-1:-1;;;24793:18:1;;24681:136::o;24822:380::-;24901:1;24897:12;;;;24944;;;24965:61;;25019:4;25011:6;25007:17;24997:27;;24965:61;25072:2;25064:6;25061:14;25041:18;25038:38;25035:161;;;25118:10;25113:3;25109:20;25106:1;25099:31;25153:4;25150:1;25143:15;25181:4;25178:1;25171:15;25035:161;;24822:380;;;:::o;25207:135::-;25246:3;-1:-1:-1;;25267:17:1;;25264:43;;;25287:18;;:::i;:::-;-1:-1:-1;25334:1:1;25323:13;;25207:135::o;25347:112::-;25379:1;25405;25395:35;;25410:18;;:::i;:::-;-1:-1:-1;25444:9:1;;25347:112::o;25464:127::-;25525:10;25520:3;25516:20;25513:1;25506:31;25556:4;25553:1;25546:15;25580:4;25577:1;25570:15;25596:127;25657:10;25652:3;25648:20;25645:1;25638:31;25688:4;25685:1;25678:15;25712:4;25709:1;25702:15;25728:127;25789:10;25784:3;25780:20;25777:1;25770:31;25820:4;25817:1;25810:15;25844:4;25841:1;25834:15;25860:127;25921:10;25916:3;25912:20;25909:1;25902:31;25952:4;25949:1;25942:15;25976:4;25973:1;25966:15;25992:127;26053:10;26048:3;26044:20;26041:1;26034:31;26084:4;26081:1;26074:15;26108:4;26105:1;26098:15;26124:131;-1:-1:-1;;;;;;26198:32:1;;26188:43;;26178:71;;26245:1;26242;26235:12

Swarm Source

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