ETH Price: $3,278.52 (-0.04%)
Gas: 10 Gwei

Token

Bruhbies (BBs)
 

Overview

Max Total Supply

675 BBs

Holders

86

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 BBs
0xe4b4abd64d32e657629db8fb52c873b328e38299
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Bruhbies

Compiler Version
v0.8.11+commit.d7f03943

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-31
*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

// 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;
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.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 tokenId);

    /**
     * @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);
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
    }
}

pragma solidity ^0.8.7;

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) 
        public 
        view 
        virtual 
        override 
        returns (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.7;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
    }
}

// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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


pragma solidity ^0.8.11;
pragma abicoder v2;

contract Bruhbies is ERC721Enumerable, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  
  using MerkleProof for bytes32[];
  bytes32 public whitelistMerkleRoot;
  bool public preSaleIsActive = false;
  bool public saleIsActive = false;
  uint256 public tokenPrice = 10000000000000000;
  
  uint public constant MAX_TOKEN_PER_TXN = 11;
  
  uint256 public constant MAX_TOKENS = 1500;
  uint256 public constant FREE_TOKENS = 501;
  uint256 public constant MAX_FREE_PER_WALLET = 11;
  uint256 public constant COLLECTOR_ALLOWANCE = 2;
  
  address public proxyRegistryAddress;
  address public collectionWhitelist = address(0x301144b43d8dCBa1b3E9F70eD7338d0751d700A3);
  mapping(address => uint256) private allowance;
  string public baseURI;
    
  constructor() ERC721("Bruhbies", "BBs") {
    setBaseURI("https://blam.io/api/bruhbies-0BPCcpI/token/");
    proxyRegistryAddress = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
  }

  function updateTokenPrice(uint256 newPrice) public onlyOwner {
    require(!saleIsActive, "Sale must be inactive to change token price");
    tokenPrice = newPrice;
  }

  
  function dependancyMint(uint256 tokenId) internal view returns (bool) {
    return IERC721(collectionWhitelist).ownerOf(tokenId) == _msgSender();
  }

  function collectorWhitelist(uint256 ownedTokenId, uint256 numberOfTokens) public payable nonReentrant {
    require(preSaleIsActive, "Pre sale needs to be active to mint.");
    require(dependancyMint(ownedTokenId), "Requires owning a token from another collection.");
    require(totalSupply().add(numberOfTokens) < MAX_TOKENS, "Purchase would exceed max supply.");
    require(allowance[_msgSender()].add(numberOfTokens) < COLLECTOR_ALLOWANCE, "Exceeded whitelist allowance.");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether sent is not correct");

    for (uint i; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
    allowance[_msgSender()] += numberOfTokens;
  }
  
  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0);

    address owner = payable(_msgSender());
    address payoutAddress1 = payable(0xAc01B61D659bD72b120DB7c5289BBFc020771943);
    uint256 payoutPayment1 = balance.mul(2).div(100);
    address payoutAddress2 = payable(0x8fc1F1F48cBB2e4A0f1dfeB9e6019606b307C3c4);
    uint256 payoutPayment2 = balance.mul(5).div(100);
    address payoutAddress3 = payable(0x7E86DEFab4c9fF2f125BffE4647254Ce553C3126);
    uint256 payoutPayment3 = balance.mul(93).div(100);
    
    (bool success1, ) = payoutAddress1.call{value: payoutPayment1}("");
    require(success1, "Failed to send.");
    
    (bool success2, ) = payoutAddress2.call{value: payoutPayment2}("");
    require(success2, "Failed to send.");
    
    (bool success3, ) = payoutAddress3.call{value: payoutPayment3}("");
    require(success3, "Failed to send.");
    

    (bool ownerSuccess, ) = owner.call{value: address(this).balance}("");
    require(ownerSuccess, "Failed to send to Owner.");
  }
  
  function setBaseURI(string memory _baseURI) public onlyOwner {
    baseURI = _baseURI;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }
  
  function flipPreSaleState() public onlyOwner {
    preSaleIsActive = !preSaleIsActive;
  }
  
  function whitelistMint(uint256 numberOfTokens, uint256 allowed, bytes32[] memory proof) public payable {
    require(preSaleIsActive, "Pre-sale not started or has ended");
    require(
      _verify(_leaf(_msgSender(), allowed), proof),
      "Your address is not whitelisted"
    );
    require(allowance[_msgSender()] + numberOfTokens <= allowed, "Exceeds wallet allowance");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether sent is not correct");

    for (uint i; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
    allowance[_msgSender()] += numberOfTokens;
  }
  
  function freeMint(uint numberOfTokens) public {
    require(saleIsActive, "Sale must be active to mint");
    require(allowance[_msgSender()].add(numberOfTokens) < MAX_FREE_PER_WALLET, "You can't mint any more free tokens.");
    require(totalSupply().add(numberOfTokens) < FREE_TOKENS, "Purchase would exceed free supply");
    
    for(uint i; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }

    allowance[_msgSender()] += numberOfTokens;
  }
  
  function mintToken(uint numberOfTokens) public payable {
    require(saleIsActive, "Sale must be active to mint");
    require(numberOfTokens < MAX_TOKEN_PER_TXN, "The max mint per transaction is 10");
    require(totalSupply().add(numberOfTokens) < MAX_TOKENS, "Purchase would exceed max supply");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether value sent is not correct");
    
    for(uint i; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
  }
  
  function _leaf(address account, uint256 count) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(account, count));
  }

  function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
    return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
  }

  function setRoot(bytes32 root) external onlyOwner {
    whitelistMerkleRoot = root;
  }
  

  function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
    require(_exists(_tokenId), "Token does not exist.");
    return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
  }

  function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
    OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(_owner)) == operator) return true;

    return super.isApprovedForAll(_owner, operator);
  }
}

contract OwnableDelegateProxy {}
contract OpenSeaProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COLLECTOR_ALLOWANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionWhitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ownedTokenId","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"collectorWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","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":"uint256","name":"newPrice","type":"uint256"}],"name":"updateTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"allowed","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805461ffff19169055662386f26fc10000600955600b80546001600160a01b03191673301144b43d8dcba1b3e9f70ed7338d0751d700a31790553480156200004d57600080fd5b506040805180820182526008815267427275686269657360c01b60208083019182528351808501909452600384526242427360e81b9084015281519192916200009991600091620001f2565b508051620000af906001906020840190620001f2565b505050620000cc620000c66200012460201b60201c565b62000128565b6001600681905550620000f86040518060600160405280602b815260200162003003602b91396200017a565b600a80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1179055620002d5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ee90600d906020840190620001f2565b5050565b828054620002009062000298565b90600052602060002090601f0160209004810192826200022457600085556200026f565b82601f106200023f57805160ff19168380011785556200026f565b828001600101855582156200026f579182015b828111156200026f57825182559160200191906001019062000252565b506200027d92915062000281565b5090565b5b808211156200027d576000815560010162000282565b600181811c90821680620002ad57607f821691505b60208210811415620002cf57634e487b7160e01b600052602260045260246000fd5b50919050565b612d1e80620002e56000396000f3fe6080604052600436106102515760003560e01c80637c34ea6311610139578063c4be5b59116100b6578063dab5f3401161007a578063dab5f3401461064c578063e985e9c51461066c578063eb8d24441461068c578063f0325549146106ab578063f2fde38b146106c0578063f47c84c5146106e057600080fd5b8063c4be5b59146105c6578063c634d032146105d9578063c87b56dd146105ec578063cd7c03261461060c578063d26ea6c01461062c57600080fd5b806398710d1e116100fd57806398710d1e1461042a5780639e780ed21461055b578063a22cb46514610570578063aa98e0c614610590578063b88d4fde146105a657600080fd5b80637c34ea63146104df5780637c928fe9146104f25780637ff9b596146105125780638da5cb5b1461052857806395d89b411461054657600080fd5b80633ccfd60b116101d25780636352211e116101965780636352211e1461043f578063676c0d771461045f5780636c0360eb1461047f5780636dbc45821461049457806370a08231146104aa578063715018a6146104ca57600080fd5b80633ccfd60b146103b557806342842e0e146103ca5780634f6ccce7146103ea57806355f804b31461040a578063634da63a1461042a57600080fd5b80631f0234d8116102195780631f0234d81461032657806323b872dd14610340578063296020ba146103605780632f745c591461038057806334918dfd146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612563565b6106f6565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610721565b60405161028291906125d8565b3480156102b957600080fd5b506102cd6102c83660046125eb565b6107b3565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612619565b610840565b005b34801561031357600080fd5b506002545b604051908152602001610282565b34801561033257600080fd5b506008546102769060ff1681565b34801561034c57600080fd5b5061030561035b366004612645565b610956565b34801561036c57600080fd5b50600b546102cd906001600160a01b031681565b34801561038c57600080fd5b5061031861039b366004612619565b610987565b3480156103ac57600080fd5b50610305610a3a565b3480156103c157600080fd5b50610305610a81565b3480156103d657600080fd5b506103056103e5366004612645565b610d42565b3480156103f657600080fd5b506103186104053660046125eb565b610d5d565b34801561041657600080fd5b50610305610425366004612725565b610dca565b34801561043657600080fd5b50610318600b81565b34801561044b57600080fd5b506102cd61045a3660046125eb565b610e0b565b34801561046b57600080fd5b5061030561047a3660046125eb565b610e97565b34801561048b57600080fd5b506102a0610f32565b3480156104a057600080fd5b506103186101f581565b3480156104b657600080fd5b506103186104c536600461276e565b610fc0565b3480156104d657600080fd5b5061030561108e565b6103056104ed36600461278b565b6110c4565b3480156104fe57600080fd5b5061030561050d3660046125eb565b61137d565b34801561051e57600080fd5b5061031860095481565b34801561053457600080fd5b506005546001600160a01b03166102cd565b34801561055257600080fd5b506102a06114f2565b34801561056757600080fd5b50610318600281565b34801561057c57600080fd5b5061030561058b3660046127ad565b611501565b34801561059c57600080fd5b5061031860075481565b3480156105b257600080fd5b506103056105c13660046127eb565b6115c6565b6103056105d436600461286b565b6115fe565b6103056105e73660046125eb565b611801565b3480156105f857600080fd5b506102a06106073660046125eb565b611991565b34801561061857600080fd5b50600a546102cd906001600160a01b031681565b34801561063857600080fd5b5061030561064736600461276e565b611a12565b34801561065857600080fd5b506103056106673660046125eb565b611a5e565b34801561067857600080fd5b50610276610687366004612926565b611a8d565b34801561069857600080fd5b5060085461027690610100900460ff1681565b3480156106b757600080fd5b50610305611b4e565b3480156106cc57600080fd5b506103056106db36600461276e565b611b8c565b3480156106ec57600080fd5b506103186105dc81565b60006001600160e01b0319821663780e9d6360e01b148061071b575061071b82611c27565b92915050565b60606000805461073090612954565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90612954565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be82611c77565b6108245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061084b82610e0b565b9050806001600160a01b0316836001600160a01b031614156108b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081b565b336001600160a01b03821614806108d557506108d58133611a8d565b6109475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081b565b6109518383611cc1565b505050565b6109603382611d2f565b61097c5760405162461bcd60e51b815260040161081b9061298f565b610951838383611df1565b600061099283610fc0565b82106109b05760405162461bcd60e51b815260040161081b906129e0565b6000805b600254811015610a2157600281815481106109d1576109d1612a2b565b6000918252602090912001546001600160a01b0386811691161415610a0f5783821415610a0157915061071b9050565b81610a0b81612a57565b9250505b80610a1981612a57565b9150506109b4565b5060405162461bcd60e51b815260040161081b906129e0565b6005546001600160a01b03163314610a645760405162461bcd60e51b815260040161081b90612a72565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610aab5760405162461bcd60e51b815260040161081b90612a72565b4780610ab657600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610ae46064610ade866002611f47565b90611f5a565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610b0d6064610ade886005611f47565b9050737e86defab4c9ff2f125bffe4647254ce553c31266000610b366064610ade8a605d611f47565b90506000866001600160a01b03168660405160006040518083038185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bab5760405162461bcd60e51b815260040161081b90612aa7565b6000856001600160a01b03168560405160006040518083038185875af1925050503d8060008114610bf8576040519150601f19603f3d011682016040523d82523d6000602084013e610bfd565b606091505b5050905080610c1e5760405162461bcd60e51b815260040161081b90612aa7565b6000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610c6b576040519150601f19603f3d011682016040523d82523d6000602084013e610c70565b606091505b5050905080610c915760405162461bcd60e51b815260040161081b90612aa7565b60008a6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cde576040519150601f19603f3d011682016040523d82523d6000602084013e610ce3565b606091505b5050905080610d345760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e0000000000000000604482015260640161081b565b505050505050505050505050565b610951838383604051806020016040528060008152506115c6565b6002546000908210610dc65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081b565b5090565b6005546001600160a01b03163314610df45760405162461bcd60e51b815260040161081b90612a72565b8051610e0790600d9060208401906124bd565b5050565b60008060028381548110610e2157610e21612a2b565b6000918252602090912001546001600160a01b031690508061071b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081b565b6005546001600160a01b03163314610ec15760405162461bcd60e51b815260040161081b90612a72565b600854610100900460ff1615610f2d5760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b606482015260840161081b565b600955565b600d8054610f3f90612954565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6b90612954565b8015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b505050505081565b60006001600160a01b03821661102b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081b565b6000805b600254811015611087576002818154811061104c5761104c612a2b565b6000918252602090912001546001600160a01b03858116911614156110775761107482612a57565b91505b61108081612a57565b905061102f565b5092915050565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161081b90612a72565b6110c26000611f66565b565b600260065414156111175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161081b565b600260065560085460ff1661117a5760405162461bcd60e51b8152602060048201526024808201527f5072652073616c65206e6565647320746f2062652061637469766520746f206d60448201526334b73a1760e11b606482015260840161081b565b61118382611fb8565b6111e85760405162461bcd60e51b815260206004820152603060248201527f5265717569726573206f776e696e67206120746f6b656e2066726f6d20616e6f60448201526f3a3432b91031b7b63632b1ba34b7b71760811b606482015260840161081b565b6105dc6111fe826111f860025490565b9061203c565b106112555760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b606482015260840161081b565b600261128182600c6000335b6001600160a01b031681526020810191909152604001600020549061203c565b106112ce5760405162461bcd60e51b815260206004820152601d60248201527f45786365656465642077686974656c69737420616c6c6f77616e63652e000000604482015260640161081b565b6009546112db9082611f47565b34146113255760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161081b565b60005b8181101561134f5761133d335b600254612048565b8061134781612a57565b915050611328565b50336000908152600c60205260408120805483929061136f908490612ad0565b909155505060016006555050565b600854610100900460ff166113d45760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161081b565b600b6113e482600c600033611261565b1061143d5760405162461bcd60e51b8152602060048201526024808201527f596f752063616e2774206d696e7420616e79206d6f7265206672656520746f6b60448201526332b7399760e11b606482015260840161081b565b6101f561144d826111f860025490565b106114a45760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206672656520737570706c6044820152607960f81b606482015260840161081b565b60005b818110156114ca576114b833611335565b806114c281612a57565b9150506114a7565b50336000908152600c6020526040812080548392906114ea908490612ad0565b909155505050565b60606001805461073090612954565b6001600160a01b03821633141561155a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081b565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115d03383611d2f565b6115ec5760405162461bcd60e51b815260040161081b9061298f565b6115f884848484612062565b50505050565b60085460ff1661165a5760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b606482015260840161081b565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152603480830186905283518084039091018152605490920190925280519101206116a39082612095565b6116ef5760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c697374656400604482015260640161081b565b336000908152600c6020526040902054829061170c908590612ad0565b111561175a5760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e63650000000000000000604482015260640161081b565b6009546117679084611f47565b34146117b15760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161081b565b60005b838110156117d7576117c533611335565b806117cf81612a57565b9150506117b4565b50336000908152600c6020526040812080548592906117f7908490612ad0565b9091555050505050565b600854610100900460ff166118585760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161081b565b600b81106118b35760405162461bcd60e51b815260206004820152602260248201527f546865206d6178206d696e7420706572207472616e73616374696f6e20697320604482015261031360f41b606482015260840161081b565b6105dc6118c3826111f860025490565b106119105760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161081b565b60095461191d9082611f47565b341461196b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161081b565b60005b81811015610e075761197f33611335565b8061198981612a57565b91505061196e565b606061199c82611c77565b6119e05760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161081b565b600d6119eb836120a4565b6040516020016119fc929190612b04565b6040516020818303038152906040529050919050565b6005546001600160a01b03163314611a3c5760405162461bcd60e51b815260040161081b90612a72565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a885760405162461bcd60e51b815260040161081b90612a72565b600755565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b039190612bab565b6001600160a01b03161415611b1c57600191505061071b565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b03163314611b785760405162461bcd60e51b815260040161081b90612a72565b6008805460ff19811660ff90911615179055565b6005546001600160a01b03163314611bb65760405162461bcd60e51b815260040161081b90612a72565b6001600160a01b038116611c1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b611c2481611f66565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c5857506001600160e01b03198216635b5e139f60e01b145b8061071b57506301ffc9a760e01b6001600160e01b031983161461071b565b6002546000908210801561071b575060006001600160a01b031660028381548110611ca457611ca4612a2b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cf682610e0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d3a82611c77565b611d9b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081b565b6000611da683610e0b565b9050806001600160a01b0316846001600160a01b03161480611de15750836001600160a01b0316611dd6846107b3565b6001600160a01b0316145b80611b465750611b468185611a8d565b826001600160a01b0316611e0482610e0b565b6001600160a01b031614611e6c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081b565b6001600160a01b038216611ece5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081b565b611ed9600082611cc1565b8160028281548110611eed57611eed612a2b565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611f538284612bc8565b9392505050565b6000611f538284612bfd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600033600b546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e90602401602060405180830381865afa158015612008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202c9190612bab565b6001600160a01b03161492915050565b6000611f538284612ad0565b610e078282604051806020016040528060008152506121a2565b61206d848484611df1565b612079848484846121d5565b6115f85760405162461bcd60e51b815260040161081b90612c11565b6000611f5382600754856122d3565b6060816120c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120f257806120dc81612a57565b91506120eb9050600a83612bfd565b91506120cc565b60008167ffffffffffffffff81111561210d5761210d612686565b6040519080825280601f01601f191660200182016040528015612137576020820181803683370190505b5090505b8415611b465761214c600183612c63565b9150612159600a86612c7a565b612164906030612ad0565b60f81b81838151811061217957612179612a2b565b60200101906001600160f81b031916908160001a90535061219b600a86612bfd565b945061213b565b6121ac83836122e9565b6121b960008484846121d5565b6109515760405162461bcd60e51b815260040161081b90612c11565b60006001600160a01b0384163b156122c857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612219903390899088908890600401612c8e565b6020604051808303816000875af1925050508015612254575060408051601f3d908101601f1916820190925261225191810190612ccb565b60015b6122ae573d808015612282576040519150601f19603f3d011682016040523d82523d6000602084013e612287565b606091505b5080516122a65760405162461bcd60e51b815260040161081b90612c11565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b46565b506001949350505050565b6000826122e08584612411565b14949350505050565b6001600160a01b03821661233f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081b565b61234881611c77565b156123955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b84518110156124b557600085828151811061243357612433612a2b565b602002602001015190508083116124755760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506124a2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806124ad81612a57565b915050612416565b509392505050565b8280546124c990612954565b90600052602060002090601f0160209004810192826124eb5760008555612531565b82601f1061250457805160ff1916838001178555612531565b82800160010185558215612531579182015b82811115612531578251825591602001919060010190612516565b50610dc69291505b80821115610dc65760008155600101612539565b6001600160e01b031981168114611c2457600080fd5b60006020828403121561257557600080fd5b8135611f538161254d565b60005b8381101561259b578181015183820152602001612583565b838111156115f85750506000910152565b600081518084526125c4816020860160208601612580565b601f01601f19169290920160200192915050565b602081526000611f5360208301846125ac565b6000602082840312156125fd57600080fd5b5035919050565b6001600160a01b0381168114611c2457600080fd5b6000806040838503121561262c57600080fd5b823561263781612604565b946020939093013593505050565b60008060006060848603121561265a57600080fd5b833561266581612604565b9250602084013561267581612604565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156126c5576126c5612686565b604052919050565b600067ffffffffffffffff8311156126e7576126e7612686565b6126fa601f8401601f191660200161269c565b905082815283838301111561270e57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561273757600080fd5b813567ffffffffffffffff81111561274e57600080fd5b8201601f8101841361275f57600080fd5b611b46848235602084016126cd565b60006020828403121561278057600080fd5b8135611f5381612604565b6000806040838503121561279e57600080fd5b50508035926020909101359150565b600080604083850312156127c057600080fd5b82356127cb81612604565b9150602083013580151581146127e057600080fd5b809150509250929050565b6000806000806080858703121561280157600080fd5b843561280c81612604565b9350602085013561281c81612604565b925060408501359150606085013567ffffffffffffffff81111561283f57600080fd5b8501601f8101871361285057600080fd5b61285f878235602084016126cd565b91505092959194509250565b60008060006060848603121561288057600080fd5b833592506020808501359250604085013567ffffffffffffffff808211156128a757600080fd5b818701915087601f8301126128bb57600080fd5b8135818111156128cd576128cd612686565b8060051b91506128de84830161269c565b818152918301840191848101908a8411156128f857600080fd5b938501935b83851015612916578435825293850193908501906128fd565b8096505050505050509250925092565b6000806040838503121561293957600080fd5b823561294481612604565b915060208301356127e081612604565b600181811c9082168061296857607f821691505b6020821081141561298957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a6b57612a6b612a41565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e2330b4b632b2103a379039b2b7321760891b604082015260600190565b60008219821115612ae357612ae3612a41565b500190565b60008151612afa818560208601612580565b9290920192915050565b600080845481600182811c915080831680612b2057607f831692505b6020808410821415612b4057634e487b7160e01b86526022600452602486fd5b818015612b545760018114612b6557612b92565b60ff19861689528489019650612b92565b60008b81526020902060005b86811015612b8a5781548b820152908501908301612b71565b505084890196505b505050505050612ba28185612ae8565b95945050505050565b600060208284031215612bbd57600080fd5b8151611f5381612604565b6000816000190483118215151615612be257612be2612a41565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612c0c57612c0c612be7565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015612c7557612c75612a41565b500390565b600082612c8957612c89612be7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cc1908301846125ac565b9695505050505050565b600060208284031215612cdd57600080fd5b8151611f538161254d56fea264697066735822122079e455928414facb4c38d086da0edd198a6825646a9fc4a63d9307b3d776a41564736f6c634300080b003368747470733a2f2f626c616d2e696f2f6170692f62727568626965732d304250436370492f746f6b656e2f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637c34ea6311610139578063c4be5b59116100b6578063dab5f3401161007a578063dab5f3401461064c578063e985e9c51461066c578063eb8d24441461068c578063f0325549146106ab578063f2fde38b146106c0578063f47c84c5146106e057600080fd5b8063c4be5b59146105c6578063c634d032146105d9578063c87b56dd146105ec578063cd7c03261461060c578063d26ea6c01461062c57600080fd5b806398710d1e116100fd57806398710d1e1461042a5780639e780ed21461055b578063a22cb46514610570578063aa98e0c614610590578063b88d4fde146105a657600080fd5b80637c34ea63146104df5780637c928fe9146104f25780637ff9b596146105125780638da5cb5b1461052857806395d89b411461054657600080fd5b80633ccfd60b116101d25780636352211e116101965780636352211e1461043f578063676c0d771461045f5780636c0360eb1461047f5780636dbc45821461049457806370a08231146104aa578063715018a6146104ca57600080fd5b80633ccfd60b146103b557806342842e0e146103ca5780634f6ccce7146103ea57806355f804b31461040a578063634da63a1461042a57600080fd5b80631f0234d8116102195780631f0234d81461032657806323b872dd14610340578063296020ba146103605780632f745c591461038057806334918dfd146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612563565b6106f6565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610721565b60405161028291906125d8565b3480156102b957600080fd5b506102cd6102c83660046125eb565b6107b3565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612619565b610840565b005b34801561031357600080fd5b506002545b604051908152602001610282565b34801561033257600080fd5b506008546102769060ff1681565b34801561034c57600080fd5b5061030561035b366004612645565b610956565b34801561036c57600080fd5b50600b546102cd906001600160a01b031681565b34801561038c57600080fd5b5061031861039b366004612619565b610987565b3480156103ac57600080fd5b50610305610a3a565b3480156103c157600080fd5b50610305610a81565b3480156103d657600080fd5b506103056103e5366004612645565b610d42565b3480156103f657600080fd5b506103186104053660046125eb565b610d5d565b34801561041657600080fd5b50610305610425366004612725565b610dca565b34801561043657600080fd5b50610318600b81565b34801561044b57600080fd5b506102cd61045a3660046125eb565b610e0b565b34801561046b57600080fd5b5061030561047a3660046125eb565b610e97565b34801561048b57600080fd5b506102a0610f32565b3480156104a057600080fd5b506103186101f581565b3480156104b657600080fd5b506103186104c536600461276e565b610fc0565b3480156104d657600080fd5b5061030561108e565b6103056104ed36600461278b565b6110c4565b3480156104fe57600080fd5b5061030561050d3660046125eb565b61137d565b34801561051e57600080fd5b5061031860095481565b34801561053457600080fd5b506005546001600160a01b03166102cd565b34801561055257600080fd5b506102a06114f2565b34801561056757600080fd5b50610318600281565b34801561057c57600080fd5b5061030561058b3660046127ad565b611501565b34801561059c57600080fd5b5061031860075481565b3480156105b257600080fd5b506103056105c13660046127eb565b6115c6565b6103056105d436600461286b565b6115fe565b6103056105e73660046125eb565b611801565b3480156105f857600080fd5b506102a06106073660046125eb565b611991565b34801561061857600080fd5b50600a546102cd906001600160a01b031681565b34801561063857600080fd5b5061030561064736600461276e565b611a12565b34801561065857600080fd5b506103056106673660046125eb565b611a5e565b34801561067857600080fd5b50610276610687366004612926565b611a8d565b34801561069857600080fd5b5060085461027690610100900460ff1681565b3480156106b757600080fd5b50610305611b4e565b3480156106cc57600080fd5b506103056106db36600461276e565b611b8c565b3480156106ec57600080fd5b506103186105dc81565b60006001600160e01b0319821663780e9d6360e01b148061071b575061071b82611c27565b92915050565b60606000805461073090612954565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90612954565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be82611c77565b6108245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061084b82610e0b565b9050806001600160a01b0316836001600160a01b031614156108b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081b565b336001600160a01b03821614806108d557506108d58133611a8d565b6109475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081b565b6109518383611cc1565b505050565b6109603382611d2f565b61097c5760405162461bcd60e51b815260040161081b9061298f565b610951838383611df1565b600061099283610fc0565b82106109b05760405162461bcd60e51b815260040161081b906129e0565b6000805b600254811015610a2157600281815481106109d1576109d1612a2b565b6000918252602090912001546001600160a01b0386811691161415610a0f5783821415610a0157915061071b9050565b81610a0b81612a57565b9250505b80610a1981612a57565b9150506109b4565b5060405162461bcd60e51b815260040161081b906129e0565b6005546001600160a01b03163314610a645760405162461bcd60e51b815260040161081b90612a72565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610aab5760405162461bcd60e51b815260040161081b90612a72565b4780610ab657600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610ae46064610ade866002611f47565b90611f5a565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610b0d6064610ade886005611f47565b9050737e86defab4c9ff2f125bffe4647254ce553c31266000610b366064610ade8a605d611f47565b90506000866001600160a01b03168660405160006040518083038185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bab5760405162461bcd60e51b815260040161081b90612aa7565b6000856001600160a01b03168560405160006040518083038185875af1925050503d8060008114610bf8576040519150601f19603f3d011682016040523d82523d6000602084013e610bfd565b606091505b5050905080610c1e5760405162461bcd60e51b815260040161081b90612aa7565b6000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610c6b576040519150601f19603f3d011682016040523d82523d6000602084013e610c70565b606091505b5050905080610c915760405162461bcd60e51b815260040161081b90612aa7565b60008a6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cde576040519150601f19603f3d011682016040523d82523d6000602084013e610ce3565b606091505b5050905080610d345760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e0000000000000000604482015260640161081b565b505050505050505050505050565b610951838383604051806020016040528060008152506115c6565b6002546000908210610dc65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081b565b5090565b6005546001600160a01b03163314610df45760405162461bcd60e51b815260040161081b90612a72565b8051610e0790600d9060208401906124bd565b5050565b60008060028381548110610e2157610e21612a2b565b6000918252602090912001546001600160a01b031690508061071b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081b565b6005546001600160a01b03163314610ec15760405162461bcd60e51b815260040161081b90612a72565b600854610100900460ff1615610f2d5760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b606482015260840161081b565b600955565b600d8054610f3f90612954565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6b90612954565b8015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b505050505081565b60006001600160a01b03821661102b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081b565b6000805b600254811015611087576002818154811061104c5761104c612a2b565b6000918252602090912001546001600160a01b03858116911614156110775761107482612a57565b91505b61108081612a57565b905061102f565b5092915050565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161081b90612a72565b6110c26000611f66565b565b600260065414156111175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161081b565b600260065560085460ff1661117a5760405162461bcd60e51b8152602060048201526024808201527f5072652073616c65206e6565647320746f2062652061637469766520746f206d60448201526334b73a1760e11b606482015260840161081b565b61118382611fb8565b6111e85760405162461bcd60e51b815260206004820152603060248201527f5265717569726573206f776e696e67206120746f6b656e2066726f6d20616e6f60448201526f3a3432b91031b7b63632b1ba34b7b71760811b606482015260840161081b565b6105dc6111fe826111f860025490565b9061203c565b106112555760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b606482015260840161081b565b600261128182600c6000335b6001600160a01b031681526020810191909152604001600020549061203c565b106112ce5760405162461bcd60e51b815260206004820152601d60248201527f45786365656465642077686974656c69737420616c6c6f77616e63652e000000604482015260640161081b565b6009546112db9082611f47565b34146113255760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161081b565b60005b8181101561134f5761133d335b600254612048565b8061134781612a57565b915050611328565b50336000908152600c60205260408120805483929061136f908490612ad0565b909155505060016006555050565b600854610100900460ff166113d45760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161081b565b600b6113e482600c600033611261565b1061143d5760405162461bcd60e51b8152602060048201526024808201527f596f752063616e2774206d696e7420616e79206d6f7265206672656520746f6b60448201526332b7399760e11b606482015260840161081b565b6101f561144d826111f860025490565b106114a45760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206672656520737570706c6044820152607960f81b606482015260840161081b565b60005b818110156114ca576114b833611335565b806114c281612a57565b9150506114a7565b50336000908152600c6020526040812080548392906114ea908490612ad0565b909155505050565b60606001805461073090612954565b6001600160a01b03821633141561155a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081b565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115d03383611d2f565b6115ec5760405162461bcd60e51b815260040161081b9061298f565b6115f884848484612062565b50505050565b60085460ff1661165a5760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b606482015260840161081b565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152603480830186905283518084039091018152605490920190925280519101206116a39082612095565b6116ef5760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c697374656400604482015260640161081b565b336000908152600c6020526040902054829061170c908590612ad0565b111561175a5760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e63650000000000000000604482015260640161081b565b6009546117679084611f47565b34146117b15760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161081b565b60005b838110156117d7576117c533611335565b806117cf81612a57565b9150506117b4565b50336000908152600c6020526040812080548592906117f7908490612ad0565b9091555050505050565b600854610100900460ff166118585760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161081b565b600b81106118b35760405162461bcd60e51b815260206004820152602260248201527f546865206d6178206d696e7420706572207472616e73616374696f6e20697320604482015261031360f41b606482015260840161081b565b6105dc6118c3826111f860025490565b106119105760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161081b565b60095461191d9082611f47565b341461196b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161081b565b60005b81811015610e075761197f33611335565b8061198981612a57565b91505061196e565b606061199c82611c77565b6119e05760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161081b565b600d6119eb836120a4565b6040516020016119fc929190612b04565b6040516020818303038152906040529050919050565b6005546001600160a01b03163314611a3c5760405162461bcd60e51b815260040161081b90612a72565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a885760405162461bcd60e51b815260040161081b90612a72565b600755565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b039190612bab565b6001600160a01b03161415611b1c57600191505061071b565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b03163314611b785760405162461bcd60e51b815260040161081b90612a72565b6008805460ff19811660ff90911615179055565b6005546001600160a01b03163314611bb65760405162461bcd60e51b815260040161081b90612a72565b6001600160a01b038116611c1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b611c2481611f66565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c5857506001600160e01b03198216635b5e139f60e01b145b8061071b57506301ffc9a760e01b6001600160e01b031983161461071b565b6002546000908210801561071b575060006001600160a01b031660028381548110611ca457611ca4612a2b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cf682610e0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d3a82611c77565b611d9b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081b565b6000611da683610e0b565b9050806001600160a01b0316846001600160a01b03161480611de15750836001600160a01b0316611dd6846107b3565b6001600160a01b0316145b80611b465750611b468185611a8d565b826001600160a01b0316611e0482610e0b565b6001600160a01b031614611e6c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081b565b6001600160a01b038216611ece5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081b565b611ed9600082611cc1565b8160028281548110611eed57611eed612a2b565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611f538284612bc8565b9392505050565b6000611f538284612bfd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600033600b546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e90602401602060405180830381865afa158015612008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202c9190612bab565b6001600160a01b03161492915050565b6000611f538284612ad0565b610e078282604051806020016040528060008152506121a2565b61206d848484611df1565b612079848484846121d5565b6115f85760405162461bcd60e51b815260040161081b90612c11565b6000611f5382600754856122d3565b6060816120c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120f257806120dc81612a57565b91506120eb9050600a83612bfd565b91506120cc565b60008167ffffffffffffffff81111561210d5761210d612686565b6040519080825280601f01601f191660200182016040528015612137576020820181803683370190505b5090505b8415611b465761214c600183612c63565b9150612159600a86612c7a565b612164906030612ad0565b60f81b81838151811061217957612179612a2b565b60200101906001600160f81b031916908160001a90535061219b600a86612bfd565b945061213b565b6121ac83836122e9565b6121b960008484846121d5565b6109515760405162461bcd60e51b815260040161081b90612c11565b60006001600160a01b0384163b156122c857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612219903390899088908890600401612c8e565b6020604051808303816000875af1925050508015612254575060408051601f3d908101601f1916820190925261225191810190612ccb565b60015b6122ae573d808015612282576040519150601f19603f3d011682016040523d82523d6000602084013e612287565b606091505b5080516122a65760405162461bcd60e51b815260040161081b90612c11565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b46565b506001949350505050565b6000826122e08584612411565b14949350505050565b6001600160a01b03821661233f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081b565b61234881611c77565b156123955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b84518110156124b557600085828151811061243357612433612a2b565b602002602001015190508083116124755760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506124a2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806124ad81612a57565b915050612416565b509392505050565b8280546124c990612954565b90600052602060002090601f0160209004810192826124eb5760008555612531565b82601f1061250457805160ff1916838001178555612531565b82800160010185558215612531579182015b82811115612531578251825591602001919060010190612516565b50610dc69291505b80821115610dc65760008155600101612539565b6001600160e01b031981168114611c2457600080fd5b60006020828403121561257557600080fd5b8135611f538161254d565b60005b8381101561259b578181015183820152602001612583565b838111156115f85750506000910152565b600081518084526125c4816020860160208601612580565b601f01601f19169290920160200192915050565b602081526000611f5360208301846125ac565b6000602082840312156125fd57600080fd5b5035919050565b6001600160a01b0381168114611c2457600080fd5b6000806040838503121561262c57600080fd5b823561263781612604565b946020939093013593505050565b60008060006060848603121561265a57600080fd5b833561266581612604565b9250602084013561267581612604565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156126c5576126c5612686565b604052919050565b600067ffffffffffffffff8311156126e7576126e7612686565b6126fa601f8401601f191660200161269c565b905082815283838301111561270e57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561273757600080fd5b813567ffffffffffffffff81111561274e57600080fd5b8201601f8101841361275f57600080fd5b611b46848235602084016126cd565b60006020828403121561278057600080fd5b8135611f5381612604565b6000806040838503121561279e57600080fd5b50508035926020909101359150565b600080604083850312156127c057600080fd5b82356127cb81612604565b9150602083013580151581146127e057600080fd5b809150509250929050565b6000806000806080858703121561280157600080fd5b843561280c81612604565b9350602085013561281c81612604565b925060408501359150606085013567ffffffffffffffff81111561283f57600080fd5b8501601f8101871361285057600080fd5b61285f878235602084016126cd565b91505092959194509250565b60008060006060848603121561288057600080fd5b833592506020808501359250604085013567ffffffffffffffff808211156128a757600080fd5b818701915087601f8301126128bb57600080fd5b8135818111156128cd576128cd612686565b8060051b91506128de84830161269c565b818152918301840191848101908a8411156128f857600080fd5b938501935b83851015612916578435825293850193908501906128fd565b8096505050505050509250925092565b6000806040838503121561293957600080fd5b823561294481612604565b915060208301356127e081612604565b600181811c9082168061296857607f821691505b6020821081141561298957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a6b57612a6b612a41565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e2330b4b632b2103a379039b2b7321760891b604082015260600190565b60008219821115612ae357612ae3612a41565b500190565b60008151612afa818560208601612580565b9290920192915050565b600080845481600182811c915080831680612b2057607f831692505b6020808410821415612b4057634e487b7160e01b86526022600452602486fd5b818015612b545760018114612b6557612b92565b60ff19861689528489019650612b92565b60008b81526020902060005b86811015612b8a5781548b820152908501908301612b71565b505084890196505b505050505050612ba28185612ae8565b95945050505050565b600060208284031215612bbd57600080fd5b8151611f5381612604565b6000816000190483118215151615612be257612be2612a41565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612c0c57612c0c612be7565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015612c7557612c75612a41565b500390565b600082612c8957612c89612be7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cc1908301846125ac565b9695505050505050565b600060208284031215612cdd57600080fd5b8151611f538161254d56fea264697066735822122079e455928414facb4c38d086da0edd198a6825646a9fc4a63d9307b3d776a41564736f6c634300080b0033

Deployed Bytecode Sourcemap

41420:6159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35530:224;;;;;;;;;;-1:-1:-1;35530:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35530:224:0;;;;;;;;24147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24959:308::-;;;;;;;;;;-1:-1:-1;24959:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;24959:308:0;1550:203:1;24482:411:0;;;;;;;;;;-1:-1:-1;24482:411:0;;;;;:::i;:::-;;:::i;:::-;;35830:110;;;;;;;;;;-1:-1:-1;35918:7:0;:14;35830:110;;;2360:25:1;;;2348:2;2333:18;35830:110:0;2214:177:1;41599:35:0;;;;;;;;;;-1:-1:-1;41599:35:0;;;;;;;;26018:376;;;;;;;;;;-1:-1:-1;26018:376:0;;;;;:::i;:::-;;:::i;42023:88::-;;;;;;;;;;-1:-1:-1;42023:88:0;;;;-1:-1:-1;;;;;42023:88:0;;;36306:490;;;;;;;;;;-1:-1:-1;36306:490:0;;;;;:::i;:::-;;:::i;44654:83::-;;;;;;;;;;;;;:::i;43466:1082::-;;;;;;;;;;;;;:::i;26465:185::-;;;;;;;;;;-1:-1:-1;26465:185:0;;;;;:::i;:::-;;:::i;36017:205::-;;;;;;;;;;-1:-1:-1;36017:205:0;;;;;:::i;:::-;;:::i;44556:92::-;;;;;;;;;;-1:-1:-1;44556:92:0;;;;;:::i;:::-;;:::i;41730:43::-;;;;;;;;;;;;41771:2;41730:43;;23754:326;;;;;;;;;;-1:-1:-1;23754:326:0;;;;;:::i;:::-;;:::i;42395:171::-;;;;;;;;;;-1:-1:-1;42395:171:0;;;;;:::i;:::-;;:::i;42166:21::-;;;;;;;;;;;;;:::i;41828:41::-;;;;;;;;;;;;41866:3;41828:41;;23300:392;;;;;;;;;;-1:-1:-1;23300:392:0;;;;;:::i;:::-;;:::i;38457:103::-;;;;;;;;;;;;;:::i;42733:725::-;;;;;;:::i;:::-;;:::i;45478:486::-;;;;;;;;;;-1:-1:-1;45478:486:0;;;;;:::i;:::-;;:::i;41676:45::-;;;;;;;;;;;;;;;;37806:87;;;;;;;;;;-1:-1:-1;37879:6:0;;-1:-1:-1;;;;;37879:6:0;37806:87;;24316:104;;;;;;;;;;;;;:::i;41927:47::-;;;;;;;;;;;;41973:1;41927:47;;25339:327;;;;;;;;;;-1:-1:-1;25339:327:0;;;;;:::i;:::-;;:::i;41560:34::-;;;;;;;;;;;;;;;;26721:365;;;;;;;;;;-1:-1:-1;26721:365:0;;;;;:::i;:::-;;:::i;44845:625::-;;;;;;:::i;:::-;;:::i;45972:504::-;;;;;;:::i;:::-;;:::i;47039:213::-;;;;;;;;;;-1:-1:-1;47039:213:0;;;;;:::i;:::-;;:::i;41983:35::-;;;;;;;;;;-1:-1:-1;41983:35:0;;;;-1:-1:-1;;;;;41983:35:0;;;46893:140;;;;;;;;;;-1:-1:-1;46893:140:0;;;;;:::i;:::-;;:::i;46794:89::-;;;;;;;;;;-1:-1:-1;46794:89:0;;;;;:::i;:::-;;:::i;47258:318::-;;;;;;;;;;-1:-1:-1;47258:318:0;;;;;:::i;:::-;;:::i;41639:32::-;;;;;;;;;;-1:-1:-1;41639:32:0;;;;;;;;;;;44745:92;;;;;;;;;;;;;:::i;38715:201::-;;;;;;;;;;-1:-1:-1;38715:201:0;;;;;:::i;:::-;;:::i;41782:41::-;;;;;;;;;;;;41819:4;41782:41;;35530:224;35632:4;-1:-1:-1;;;;;;35656:50:0;;-1:-1:-1;;;35656:50:0;;:90;;;35710:36;35734:11;35710:23;:36::i;:::-;35649:97;35530:224;-1:-1:-1;;35530:224:0:o;24147:100::-;24201:13;24234:5;24227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24147:100;:::o;24959:308::-;25080:7;25127:16;25135:7;25127;:16::i;:::-;25105:110;;;;-1:-1:-1;;;25105:110:0;;8297:2:1;25105:110:0;;;8279:21:1;8336:2;8316:18;;;8309:30;8375:34;8355:18;;;8348:62;-1:-1:-1;;;8426:18:1;;;8419:42;8478:19;;25105:110:0;;;;;;;;;-1:-1:-1;25235:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25235:24:0;;24959:308::o;24482:411::-;24563:13;24579:23;24594:7;24579:14;:23::i;:::-;24563:39;;24627:5;-1:-1:-1;;;;;24621:11:0;:2;-1:-1:-1;;;;;24621:11:0;;;24613:57;;;;-1:-1:-1;;;24613:57:0;;8710:2:1;24613:57:0;;;8692:21:1;8749:2;8729:18;;;8722:30;8788:34;8768:18;;;8761:62;-1:-1:-1;;;8839:18:1;;;8832:31;8880:19;;24613:57:0;8508:397:1;24613:57:0;738:10;-1:-1:-1;;;;;24705:21:0;;;;:62;;-1:-1:-1;24730:37:0;24747:5;738:10;47258:318;:::i;24730:37::-;24683:168;;;;-1:-1:-1;;;24683:168:0;;9112:2:1;24683:168:0;;;9094:21:1;9151:2;9131:18;;;9124:30;9190:34;9170:18;;;9163:62;9261:26;9241:18;;;9234:54;9305:19;;24683:168:0;8910:420:1;24683:168:0;24864:21;24873:2;24877:7;24864:8;:21::i;:::-;24552:341;24482:411;;:::o;26018:376::-;26227:41;738:10;26260:7;26227:18;:41::i;:::-;26205:140;;;;-1:-1:-1;;;26205:140:0;;;;;;;:::i;:::-;26358:28;26368:4;26374:2;26378:7;26358:9;:28::i;36306:490::-;36403:15;36447:16;36457:5;36447:9;:16::i;:::-;36439:5;:24;36431:80;;;;-1:-1:-1;;;36431:80:0;;;;;;;:::i;:::-;36524:10;36549:6;36545:178;36561:7;:14;36557:18;;36545:178;;;36608:7;36616:1;36608:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36599:19:0;;;36608:10;;36599:19;36596:116;;;36650:5;36641;:14;36638:58;;;36664:1;-1:-1:-1;36657:8:0;;-1:-1:-1;36657:8:0;36638:58;36689:7;;;;:::i;:::-;;;;36638:58;36577:3;;;;:::i;:::-;;;;36545:178;;;;36735:53;;-1:-1:-1;;;36735:53:0;;;;;;;:::i;44654:83::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;44719:12:::1;::::0;;-1:-1:-1;;44703:28:0;::::1;44719:12;::::0;;;::::1;;;44718:13;44703:28:::0;;::::1;;::::0;;44654:83::o;43466:1082::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;43528:21:::1;43564:11:::0;43556:20:::1;;;::::0;::::1;;738:10:::0;43662:42:::1;43585:13;43737:23;43756:3;43737:14;:7:::0;43749:1:::1;43737:11;:14::i;:::-;:18:::0;::::1;:23::i;:::-;43712:48:::0;-1:-1:-1;43800:42:0::1;43767:22;43875:23;43894:3;43875:14;:7:::0;43887:1:::1;43875:11;:14::i;:23::-;43850:48:::0;-1:-1:-1;43938:42:0::1;43905:22;44013:24;44033:3;44013:15;:7:::0;44025:2:::1;44013:11;:15::i;:24::-;43988:49;;44051:13;44070:14;-1:-1:-1::0;;;;;44070:19:0::1;44097:14;44070:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44050:66;;;44131:8;44123:36;;;;-1:-1:-1::0;;;44123:36:0::1;;;;;;;:::i;:::-;44173:13;44192:14;-1:-1:-1::0;;;;;44192:19:0::1;44219:14;44192:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44172:66;;;44253:8;44245:36;;;;-1:-1:-1::0;;;44245:36:0::1;;;;;;;:::i;:::-;44295:13;44314:14;-1:-1:-1::0;;;;;44314:19:0::1;44341:14;44314:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44294:66;;;44375:8;44367:36;;;;-1:-1:-1::0;;;44367:36:0::1;;;;;;;:::i;:::-;44419:17;44442:5;-1:-1:-1::0;;;;;44442:10:0::1;44460:21;44442:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44418:68;;;44501:12;44493:49;;;::::0;-1:-1:-1;;;44493:49:0;;11686:2:1;44493:49:0::1;::::0;::::1;11668:21:1::0;11725:2;11705:18;;;11698:30;11764:26;11744:18;;;11737:54;11808:18;;44493:49:0::1;11484:348:1::0;44493:49:0::1;43503:1045;;;;;;;;;;;;43466:1082::o:0;26465:185::-;26603:39;26620:4;26626:2;26630:7;26603:39;;;;;;;;;;;;:16;:39::i;36017:205::-;36128:7;:14;36092:7;;36120:22;;36112:79;;;;-1:-1:-1;;;36112:79:0;;12039:2:1;36112:79:0;;;12021:21:1;12078:2;12058:18;;;12051:30;12117:34;12097:18;;;12090:62;-1:-1:-1;;;12168:18:1;;;12161:42;12220:19;;36112:79:0;11837:408:1;36112:79:0;-1:-1:-1;36209:5:0;36017:205::o;44556:92::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;44624:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44556:92:::0;:::o;23754:326::-;23871:7;23896:13;23912:7;23920;23912:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23912:16:0;;-1:-1:-1;23961:19:0;23939:110;;;;-1:-1:-1;;;23939:110:0;;12452:2:1;23939:110:0;;;12434:21:1;12491:2;12471:18;;;12464:30;12530:34;12510:18;;;12503:62;-1:-1:-1;;;12581:18:1;;;12574:39;12630:19;;23939:110:0;12250:405:1;42395:171:0;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;42472:12:::1;::::0;::::1;::::0;::::1;;;42471:13;42463:69;;;::::0;-1:-1:-1;;;42463:69:0;;12862:2:1;42463:69:0::1;::::0;::::1;12844:21:1::0;12901:2;12881:18;;;12874:30;12940:34;12920:18;;;12913:62;-1:-1:-1;;;12991:18:1;;;12984:41;13042:19;;42463:69:0::1;12660:407:1::0;42463:69:0::1;42539:10;:21:::0;42395:171::o;42166:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23300:392::-;23422:4;-1:-1:-1;;;;;23453:19:0;;23445:74;;;;-1:-1:-1;;;23445:74:0;;13274:2:1;23445:74:0;;;13256:21:1;13313:2;13293:18;;;13286:30;13352:34;13332:18;;;13325:62;-1:-1:-1;;;13403:18:1;;;13396:40;13453:19;;23445:74:0;13072:406:1;23445:74:0;23532:10;23558:6;23553:109;23570:7;:14;23566:18;;23553:109;;;23617:7;23625:1;23617:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23608:19:0;;;23617:10;;23608:19;23604:46;;;23643:7;;;:::i;:::-;;;23604:46;23586:3;;;:::i;:::-;;;23553:109;;;-1:-1:-1;23679:5:0;23300:392;-1:-1:-1;;23300:392:0:o;38457:103::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;38522:30:::1;38549:1;38522:18;:30::i;:::-;38457:103::o:0;42733:725::-;2617:1;3215:7;;:19;;3207:63;;;;-1:-1:-1;;;3207:63:0;;13685:2:1;3207:63:0;;;13667:21:1;13724:2;13704:18;;;13697:30;13763:33;13743:18;;;13736:61;13814:18;;3207:63:0;13483:355:1;3207:63:0;2617:1;3348:7;:18;42850:15:::1;::::0;::::1;;42842:64;;;::::0;-1:-1:-1;;;42842:64:0;;14045:2:1;42842:64:0::1;::::0;::::1;14027:21:1::0;14084:2;14064:18;;;14057:30;14123:34;14103:18;;;14096:62;-1:-1:-1;;;14174:18:1;;;14167:34;14218:19;;42842:64:0::1;13843:400:1::0;42842:64:0::1;42921:28;42936:12;42921:14;:28::i;:::-;42913:89;;;::::0;-1:-1:-1;;;42913:89:0;;14450:2:1;42913:89:0::1;::::0;::::1;14432:21:1::0;14489:2;14469:18;;;14462:30;14528:34;14508:18;;;14501:62;-1:-1:-1;;;14579:18:1;;;14572:46;14635:19;;42913:89:0::1;14248:412:1::0;42913:89:0::1;41819:4;43017:33;43035:14;43017:13;35918:7:::0;:14;;35830:110;43017:13:::1;:17:::0;::::1;:33::i;:::-;:46;43009:92;;;::::0;-1:-1:-1;;;43009:92:0;;14867:2:1;43009:92:0::1;::::0;::::1;14849:21:1::0;14906:2;14886:18;;;14879:30;14945:34;14925:18;;;14918:62;-1:-1:-1;;;14996:18:1;;;14989:31;15037:19;;43009:92:0::1;14665:397:1::0;43009:92:0::1;41973:1;43116:43;43144:14:::0;43116:9:::1;:23;738:10:::0;43126:12:::1;-1:-1:-1::0;;;;;43116:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43116:23:0;;;:27:::1;:43::i;:::-;:65;43108:107;;;::::0;-1:-1:-1;;;43108:107:0;;15269:2:1;43108:107:0::1;::::0;::::1;15251:21:1::0;15308:2;15288:18;;;15281:30;15347:31;15327:18;;;15320:59;15396:18;;43108:107:0::1;15067:353:1::0;43108:107:0::1;43243:10;::::0;:30:::1;::::0;43258:14;43243::::1;:30::i;:::-;43230:9;:43;43222:81;;;::::0;-1:-1:-1;;;43222:81:0;;15627:2:1;43222:81:0::1;::::0;::::1;15609:21:1::0;15666:2;15646:18;;;15639:30;-1:-1:-1;;;15685:18:1;;;15678:55;15750:18;;43222:81:0::1;15425:349:1::0;43222:81:0::1;43317:6;43312:93;43329:14;43325:1;:18;43312:93;;;43359:38;738:10:::0;43369:12:::1;35918:7:::0;:14;43359:9:::1;:38::i;:::-;43345:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43312:93;;;-1:-1:-1::0;738:10:0;43411:23:::1;::::0;;;:9:::1;:23;::::0;;;;:41;;43438:14;;43411:23;:41:::1;::::0;43438:14;;43411:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;2573:1:0;3527:7;:22;-1:-1:-1;;42733:725:0:o;45478:486::-;45539:12;;;;;;;45531:52;;;;-1:-1:-1;;;45531:52:0;;16114:2:1;45531:52:0;;;16096:21:1;16153:2;16133:18;;;16126:30;16192:29;16172:18;;;16165:57;16239:18;;45531:52:0;15912:351:1;45531:52:0;41920:2;45598:43;45626:14;45598:9;:23;738:10;45608:12;658:98;45598:43;:65;45590:114;;;;-1:-1:-1;;;45590:114:0;;16470:2:1;45590:114:0;;;16452:21:1;16509:2;16489:18;;;16482:30;16548:34;16528:18;;;16521:62;-1:-1:-1;;;16599:18:1;;;16592:34;16643:19;;45590:114:0;16268:400:1;45590:114:0;41866:3;45719:33;45737:14;45719:13;35918:7;:14;;35830:110;45719:33;:47;45711:93;;;;-1:-1:-1;;;45711:93:0;;16875:2:1;45711:93:0;;;16857:21:1;16914:2;16894:18;;;16887:30;16953:34;16933:18;;;16926:62;-1:-1:-1;;;17004:18:1;;;16997:31;17045:19;;45711:93:0;16673:397:1;45711:93:0;45821:6;45817:92;45833:14;45829:1;:18;45817:92;;;45863:38;738:10;45873:12;658:98;45863:38;45849:3;;;;:::i;:::-;;;;45817:92;;;-1:-1:-1;738:10:0;45917:23;;;;:9;:23;;;;;:41;;45944:14;;45917:23;:41;;45944:14;;45917:41;:::i;:::-;;;;-1:-1:-1;;;45478:486:0:o;24316:104::-;24372:13;24405:7;24398:14;;;;;:::i;25339:327::-;-1:-1:-1;;;;;25474:24:0;;738:10;25474:24;;25466:62;;;;-1:-1:-1;;;25466:62:0;;17277:2:1;25466:62:0;;;17259:21:1;17316:2;17296:18;;;17289:30;17355:27;17335:18;;;17328:55;17400:18;;25466:62:0;17075:349:1;25466:62:0;738:10;25541:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25541:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25541:53:0;;;;;;;;;;25610:48;;540:41:1;;;25541:42:0;;738:10;25610:48;;513:18:1;25610:48:0;;;;;;;25339:327;;:::o;26721:365::-;26910:41;738:10;26943:7;26910:18;:41::i;:::-;26888:140;;;;-1:-1:-1;;;26888:140:0;;;;;;;:::i;:::-;27039:39;27053:4;27059:2;27063:7;27072:5;27039:13;:39::i;:::-;26721:365;;;;:::o;44845:625::-;44963:15;;;;44955:61;;;;-1:-1:-1;;;44955:61:0;;17631:2:1;44955:61:0;;;17613:21:1;17670:2;17650:18;;;17643:30;17709:34;17689:18;;;17682:62;-1:-1:-1;;;17760:18:1;;;17753:31;17801:19;;44955:61:0;17429:397:1;44955:61:0;46587:32;;;738:10;24715:2:1;24711:15;-1:-1:-1;;24707:53:1;46587:32:0;;;;24695:66:1;;;;24777:12;;;;24770:28;;;46587:32:0;;;;;;;;;;24814:12:1;;;;46587:32:0;;;46577:43;;;;;45039:44;;45077:5;45039:7;:44::i;:::-;45023:109;;;;-1:-1:-1;;;45023:109:0;;18033:2:1;45023:109:0;;;18015:21:1;18072:2;18052:18;;;18045:30;18111:33;18091:18;;;18084:61;18162:18;;45023:109:0;17831:355:1;45023:109:0;738:10;45147:23;;;;:9;:23;;;;;;45191:7;;45147:40;;45173:14;;45147:40;:::i;:::-;:51;;45139:88;;;;-1:-1:-1;;;45139:88:0;;18393:2:1;45139:88:0;;;18375:21:1;18432:2;18412:18;;;18405:30;18471:26;18451:18;;;18444:54;18515:18;;45139:88:0;18191:348:1;45139:88:0;45255:10;;:30;;45270:14;45255;:30::i;:::-;45242:9;:43;45234:81;;;;-1:-1:-1;;;45234:81:0;;15627:2:1;45234:81:0;;;15609:21:1;15666:2;15646:18;;;15639:30;-1:-1:-1;;;15685:18:1;;;15678:55;15750:18;;45234:81:0;15425:349:1;45234:81:0;45329:6;45324:93;45341:14;45337:1;:18;45324:93;;;45371:38;738:10;45381:12;658:98;45371:38;45357:3;;;;:::i;:::-;;;;45324:93;;;-1:-1:-1;738:10:0;45423:23;;;;:9;:23;;;;;:41;;45450:14;;45423:23;:41;;45450:14;;45423:41;:::i;:::-;;;;-1:-1:-1;;;;;44845:625:0:o;45972:504::-;46042:12;;;;;;;46034:52;;;;-1:-1:-1;;;46034:52:0;;16114:2:1;46034:52:0;;;16096:21:1;16153:2;16133:18;;;16126:30;16192:29;16172:18;;;16165:57;16239:18;;46034:52:0;15912:351:1;46034:52:0;41771:2;46101:14;:34;46093:81;;;;-1:-1:-1;;;46093:81:0;;18746:2:1;46093:81:0;;;18728:21:1;18785:2;18765:18;;;18758:30;18824:34;18804:18;;;18797:62;-1:-1:-1;;;18875:18:1;;;18868:32;18917:19;;46093:81:0;18544:398:1;46093:81:0;41819:4;46189:33;46207:14;46189:13;35918:7;:14;;35830:110;46189:33;:46;46181:91;;;;-1:-1:-1;;;46181:91:0;;19149:2:1;46181:91:0;;;19131:21:1;;;19168:18;;;19161:30;19227:34;19207:18;;;19200:62;19279:18;;46181:91:0;18947:356:1;46181:91:0;46300:10;;:30;;46315:14;46300;:30::i;:::-;46287:9;:43;46279:87;;;;-1:-1:-1;;;46279:87:0;;19510:2:1;46279:87:0;;;19492:21:1;19549:2;19529:18;;;19522:30;19588:33;19568:18;;;19561:61;19639:18;;46279:87:0;19308:355:1;46279:87:0;46383:6;46379:92;46395:14;46391:1;:18;46379:92;;;46425:38;738:10;46435:12;658:98;46425:38;46411:3;;;;:::i;:::-;;;;46379:92;;47039:213;47098:13;47128:17;47136:8;47128:7;:17::i;:::-;47120:51;;;;-1:-1:-1;;;47120:51:0;;19870:2:1;47120:51:0;;;19852:21:1;19909:2;19889:18;;;19882:30;-1:-1:-1;;;19928:18:1;;;19921:51;19989:18;;47120:51:0;19668:345:1;47120:51:0;47209:7;47218:26;47235:8;47218:16;:26::i;:::-;47192:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47178:68;;47039:213;;;:::o;46893:140::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;46983:20:::1;:44:::0;;-1:-1:-1;;;;;;46983:44:0::1;-1:-1:-1::0;;;;;46983:44:0;;;::::1;::::0;;;::::1;::::0;;46893:140::o;46794:89::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;46851:19:::1;:26:::0;46794:89::o;47258:318::-;47419:20;;47459:29;;-1:-1:-1;;;47459:29:0;;-1:-1:-1;;;;;1714:32:1;;;47459:29:0;;;1696:51:1;47348:4:0;;47419:20;;;47451:50;;;;47419:20;;47459:21;;1669:18:1;;47459:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47451:50:0;;47447:67;;;47510:4;47503:11;;;;;47447:67;-1:-1:-1;;;;;25908:25:0;;;25879:4;25908:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47530:40;47523:47;47258:318;-1:-1:-1;;;;47258:318:0:o;44745:92::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;44816:15:::1;::::0;;-1:-1:-1;;44797:34:0;::::1;44816:15;::::0;;::::1;44815:16;44797:34;::::0;;44745:92::o;38715:201::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38804:22:0;::::1;38796:73;;;::::0;-1:-1:-1;;;38796:73:0;;22000:2:1;38796:73:0::1;::::0;::::1;21982:21:1::0;22039:2;22019:18;;;22012:30;22078:34;22058:18;;;22051:62;-1:-1:-1;;;22129:18:1;;;22122:36;22175:19;;38796:73:0::1;21798:402:1::0;38796:73:0::1;38880:28;38899:8;38880:18;:28::i;:::-;38715:201:::0;:::o;22881:355::-;23028:4;-1:-1:-1;;;;;;23070:40:0;;-1:-1:-1;;;23070:40:0;;:105;;-1:-1:-1;;;;;;;23127:48:0;;-1:-1:-1;;;23127:48:0;23070:105;:158;;;-1:-1:-1;;;;;;;;;;12787:40:0;;;23192:36;12678:157;28633:155;28732:7;:14;28698:4;;28722:24;;:58;;;;;28778:1;-1:-1:-1;;;;;28750:30:0;:7;28758;28750:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28750:16:0;:30;;28715:65;28633:155;-1:-1:-1;;28633:155:0:o;32658:174::-;32733:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32733:29:0;-1:-1:-1;;;;;32733:29:0;;;;;;;;:24;;32787:23;32733:24;32787:14;:23::i;:::-;-1:-1:-1;;;;;32778:46:0;;;;;;;;;;;32658:174;;:::o;28955:452::-;29084:4;29128:16;29136:7;29128;:16::i;:::-;29106:110;;;;-1:-1:-1;;;29106:110:0;;22407:2:1;29106:110:0;;;22389:21:1;22446:2;22426:18;;;22419:30;22485:34;22465:18;;;22458:62;-1:-1:-1;;;22536:18:1;;;22529:42;22588:19;;29106:110:0;22205:408:1;29106:110:0;29227:13;29243:23;29258:7;29243:14;:23::i;:::-;29227:39;;29296:5;-1:-1:-1;;;;;29285:16:0;:7;-1:-1:-1;;;;;29285:16:0;;:64;;;;29342:7;-1:-1:-1;;;;;29318:31:0;:20;29330:7;29318:11;:20::i;:::-;-1:-1:-1;;;;;29318:31:0;;29285:64;:113;;;;29366:32;29383:5;29390:7;29366:16;:32::i;31987:553::-;32160:4;-1:-1:-1;;;;;32133:31:0;:23;32148:7;32133:14;:23::i;:::-;-1:-1:-1;;;;;32133:31:0;;32111:122;;;;-1:-1:-1;;;32111:122:0;;22820:2:1;32111:122:0;;;22802:21:1;22859:2;22839:18;;;22832:30;22898:34;22878:18;;;22871:62;-1:-1:-1;;;22949:18:1;;;22942:39;22998:19;;32111:122:0;22618:405:1;32111:122:0;-1:-1:-1;;;;;32252:16:0;;32244:65;;;;-1:-1:-1;;;32244:65:0;;23230:2:1;32244:65:0;;;23212:21:1;23269:2;23249:18;;;23242:30;23308:34;23288:18;;;23281:62;-1:-1:-1;;;23359:18:1;;;23352:34;23403:19;;32244:65:0;23028:400:1;32244:65:0;32426:29;32443:1;32447:7;32426:8;:29::i;:::-;32485:2;32466:7;32474;32466:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;32466:21:0;-1:-1:-1;;;;;32466:21:0;;;;;;32505:27;;32524:7;;32505:27;;;;;;;;;;32466:16;32505:27;31987:553;;;:::o;16380:98::-;16438:7;16465:5;16469:1;16465;:5;:::i;:::-;16458:12;16380:98;-1:-1:-1;;;16380:98:0:o;16779:::-;16837:7;16864:5;16868:1;16864;:5;:::i;39076:191::-;39169:6;;;-1:-1:-1;;;;;39186:17:0;;;-1:-1:-1;;;;;;39186:17:0;;;;;;;39219:40;;39169:6;;;39186:17;39169:6;;39219:40;;39150:16;;39219:40;39139:128;39076:191;:::o;42576:151::-;42640:4;738:10;42668:19;;42660:45;;-1:-1:-1;;;42660:45:0;;;;;2360:25:1;;;-1:-1:-1;;;;;42660:61:0;;;;42668:19;;;;42660:36;;2333:18:1;;42660:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42660:61:0;;;42576:151;-1:-1:-1;;42576:151:0:o;15642:98::-;15700:7;15727:5;15731:1;15727;:5;:::i;29749:110::-;29825:26;29835:2;29839:7;29825:26;;;;;;;;;;;;:9;:26::i;27968:352::-;28125:28;28135:4;28141:2;28145:7;28125:9;:28::i;:::-;28186:48;28209:4;28215:2;28219:7;28228:5;28186:22;:48::i;:::-;28164:148;;;;-1:-1:-1;;;28164:148:0;;;;;;;:::i;46632:156::-;46710:4;46730:52;46749:5;46756:19;;46777:4;46730:18;:52::i;20366:723::-;20422:13;20643:10;20639:53;;-1:-1:-1;;20670:10:0;;;;;;;;;;;;-1:-1:-1;;;20670:10:0;;;;;20366:723::o;20639:53::-;20717:5;20702:12;20758:78;20765:9;;20758:78;;20791:8;;;;:::i;:::-;;-1:-1:-1;20814:10:0;;-1:-1:-1;20822:2:0;20814:10;;:::i;:::-;;;20758:78;;;20846:19;20878:6;20868:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20868:17:0;;20846:39;;20896:154;20903:10;;20896:154;;20930:11;20940:1;20930:11;;:::i;:::-;;-1:-1:-1;20999:10:0;21007:2;20999:5;:10;:::i;:::-;20986:24;;:2;:24;:::i;:::-;20973:39;;20956:6;20963;20956:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20956:56:0;;;;;;;;-1:-1:-1;21027:11:0;21036:2;21027:11;;:::i;:::-;;;20896:154;;30086:321;30216:18;30222:2;30226:7;30216:5;:18::i;:::-;30267:54;30298:1;30302:2;30306:7;30315:5;30267:22;:54::i;:::-;30245:154;;;;-1:-1:-1;;;30245:154:0;;;;;;;:::i;33397:980::-;33552:4;-1:-1:-1;;;;;33573:13:0;;19986:20;20034:8;33569:801;;33626:175;;-1:-1:-1;;;33626:175:0;;-1:-1:-1;;;;;33626:36:0;;;;;:175;;738:10;;33720:4;;33747:7;;33777:5;;33626:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33626:175:0;;;;;;;;-1:-1:-1;;33626:175:0;;;;;;;;;;;;:::i;:::-;;;33605:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33984:13:0;;33980:320;;34027:108;;-1:-1:-1;;;34027:108:0;;;;;;;:::i;33980:320::-;34250:6;34244:13;34235:6;34231:2;34227:15;34220:38;33605:710;-1:-1:-1;;;;;;33865:51:0;-1:-1:-1;;;33865:51:0;;-1:-1:-1;33858:58:0;;33569:801;-1:-1:-1;34354:4:0;33397:980;;;;;;:::o;40109:190::-;40234:4;40287;40258:25;40271:5;40278:4;40258:12;:25::i;:::-;:33;;40109:190;-1:-1:-1;;;;40109:190:0:o;30743:346::-;-1:-1:-1;;;;;30823:16:0;;30815:61;;;;-1:-1:-1;;;30815:61:0;;26045:2:1;30815:61:0;;;26027:21:1;;;26064:18;;;26057:30;26123:34;26103:18;;;26096:62;26175:18;;30815:61:0;25843:356:1;30815:61:0;30896:16;30904:7;30896;:16::i;:::-;30895:17;30887:58;;;;-1:-1:-1;;;30887:58:0;;26406:2:1;30887:58:0;;;26388:21:1;26445:2;26425:18;;;26418:30;26484;26464:18;;;26457:58;26532:18;;30887:58:0;26204:352:1;30887:58:0;31014:7;:16;;;;;;;-1:-1:-1;31014:16:0;;;;;;;-1:-1:-1;;;;;;31014:16:0;-1:-1:-1;;;;;31014:16:0;;;;;;;;31048:33;;31073:7;;-1:-1:-1;31048:33:0;;-1:-1:-1;;31048:33:0;30743:346;;:::o;40661:701::-;40744:7;40787:4;40744:7;40802:523;40826:5;:12;40822:1;:16;40802:523;;;40860:20;40883:5;40889:1;40883:8;;;;;;;;:::i;:::-;;;;;;;40860:31;;40926:12;40910;:28;40906:408;;41063:44;;;;;;26718:19:1;;;26753:12;;;26746:28;;;26790:12;;41063:44:0;;;;;;;;;;;;41053:55;;;;;;41038:70;;40906:408;;;41253:44;;;;;;26718:19:1;;;26753:12;;;26746:28;;;26790:12;;41253:44:0;;;;;;;;;;;;41243:55;;;;;;41228:70;;40906:408;-1:-1:-1;40840:3:0;;;;:::i;:::-;;;;40802:523;;;-1:-1:-1;41342:12:0;40661:701;-1:-1:-1;;;40661:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:127::-;2918:10;2913:3;2909:20;2906:1;2899:31;2949:4;2946:1;2939:15;2973:4;2970:1;2963:15;2989:275;3060:2;3054:9;3125:2;3106:13;;-1:-1:-1;;3102:27:1;3090:40;;3160:18;3145:34;;3181:22;;;3142:62;3139:88;;;3207:18;;:::i;:::-;3243:2;3236:22;2989:275;;-1:-1:-1;2989:275:1:o;3269:407::-;3334:5;3368:18;3360:6;3357:30;3354:56;;;3390:18;;:::i;:::-;3428:57;3473:2;3452:15;;-1:-1:-1;;3448:29:1;3479:4;3444:40;3428:57;:::i;:::-;3419:66;;3508:6;3501:5;3494:21;3548:3;3539:6;3534:3;3530:16;3527:25;3524:45;;;3565:1;3562;3555:12;3524:45;3614:6;3609:3;3602:4;3595:5;3591:16;3578:43;3668:1;3661:4;3652:6;3645:5;3641:18;3637:29;3630:40;3269:407;;;;;:::o;3681:451::-;3750:6;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;3859:9;3846:23;3892:18;3884:6;3881:30;3878:50;;;3924:1;3921;3914:12;3878:50;3947:22;;4000:4;3992:13;;3988:27;-1:-1:-1;3978:55:1;;4029:1;4026;4019:12;3978:55;4052:74;4118:7;4113:2;4100:16;4095:2;4091;4087:11;4052:74;:::i;4137:247::-;4196:6;4249:2;4237:9;4228:7;4224:23;4220:32;4217:52;;;4265:1;4262;4255:12;4217:52;4304:9;4291:23;4323:31;4348:5;4323:31;:::i;4389:248::-;4457:6;4465;4518:2;4506:9;4497:7;4493:23;4489:32;4486:52;;;4534:1;4531;4524:12;4486:52;-1:-1:-1;;4557:23:1;;;4627:2;4612:18;;;4599:32;;-1:-1:-1;4389:248:1:o;4642:416::-;4707:6;4715;4768:2;4756:9;4747:7;4743:23;4739:32;4736:52;;;4784:1;4781;4774:12;4736:52;4823:9;4810:23;4842:31;4867:5;4842:31;:::i;:::-;4892:5;-1:-1:-1;4949:2:1;4934:18;;4921:32;4991:15;;4984:23;4972:36;;4962:64;;5022:1;5019;5012:12;4962:64;5045:7;5035:17;;;4642:416;;;;;:::o;5245:795::-;5340:6;5348;5356;5364;5417:3;5405:9;5396:7;5392:23;5388:33;5385:53;;;5434:1;5431;5424:12;5385:53;5473:9;5460:23;5492:31;5517:5;5492:31;:::i;:::-;5542:5;-1:-1:-1;5599:2:1;5584:18;;5571:32;5612:33;5571:32;5612:33;:::i;:::-;5664:7;-1:-1:-1;5718:2:1;5703:18;;5690:32;;-1:-1:-1;5773:2:1;5758:18;;5745:32;5800:18;5789:30;;5786:50;;;5832:1;5829;5822:12;5786:50;5855:22;;5908:4;5900:13;;5896:27;-1:-1:-1;5886:55:1;;5937:1;5934;5927:12;5886:55;5960:74;6026:7;6021:2;6008:16;6003:2;5999;5995:11;5960:74;:::i;:::-;5950:84;;;5245:795;;;;;;;:::o;6045:1082::-;6147:6;6155;6163;6216:2;6204:9;6195:7;6191:23;6187:32;6184:52;;;6232:1;6229;6222:12;6184:52;6268:9;6255:23;6245:33;;6297:2;6346;6335:9;6331:18;6318:32;6308:42;;6401:2;6390:9;6386:18;6373:32;6424:18;6465:2;6457:6;6454:14;6451:34;;;6481:1;6478;6471:12;6451:34;6519:6;6508:9;6504:22;6494:32;;6564:7;6557:4;6553:2;6549:13;6545:27;6535:55;;6586:1;6583;6576:12;6535:55;6622:2;6609:16;6644:2;6640;6637:10;6634:36;;;6650:18;;:::i;:::-;6696:2;6693:1;6689:10;6679:20;;6719:28;6743:2;6739;6735:11;6719:28;:::i;:::-;6781:15;;;6851:11;;;6847:20;;;6812:12;;;;6879:19;;;6876:39;;;6911:1;6908;6901:12;6876:39;6935:11;;;;6955:142;6971:6;6966:3;6963:15;6955:142;;;7037:17;;7025:30;;6988:12;;;;7075;;;;6955:142;;;7116:5;7106:15;;;;;;;;6045:1082;;;;;:::o;7317:388::-;7385:6;7393;7446:2;7434:9;7425:7;7421:23;7417:32;7414:52;;;7462:1;7459;7452:12;7414:52;7501:9;7488:23;7520:31;7545:5;7520:31;:::i;:::-;7570:5;-1:-1:-1;7627:2:1;7612:18;;7599:32;7640:33;7599:32;7640:33;:::i;7710:380::-;7789:1;7785:12;;;;7832;;;7853:61;;7907:4;7899:6;7895:17;7885:27;;7853:61;7960:2;7952:6;7949:14;7929:18;7926:38;7923:161;;;8006:10;8001:3;7997:20;7994:1;7987:31;8041:4;8038:1;8031:15;8069:4;8066:1;8059:15;7923:161;;7710:380;;;:::o;9335:413::-;9537:2;9519:21;;;9576:2;9556:18;;;9549:30;9615:34;9610:2;9595:18;;9588:62;-1:-1:-1;;;9681:2:1;9666:18;;9659:47;9738:3;9723:19;;9335:413::o;9753:407::-;9955:2;9937:21;;;9994:2;9974:18;;;9967:30;10033:34;10028:2;10013:18;;10006:62;-1:-1:-1;;;10099:2:1;10084:18;;10077:41;10150:3;10135:19;;9753:407::o;10165:127::-;10226:10;10221:3;10217:20;10214:1;10207:31;10257:4;10254:1;10247:15;10281:4;10278:1;10271:15;10297:127;10358:10;10353:3;10349:20;10346:1;10339:31;10389:4;10386:1;10379:15;10413:4;10410:1;10403:15;10429:135;10468:3;-1:-1:-1;;10489:17:1;;10486:43;;;10509:18;;:::i;:::-;-1:-1:-1;10556:1:1;10545:13;;10429:135::o;10569:356::-;10771:2;10753:21;;;10790:18;;;10783:30;10849:34;10844:2;10829:18;;10822:62;10916:2;10901:18;;10569:356::o;11140:339::-;11342:2;11324:21;;;11381:2;11361:18;;;11354:30;-1:-1:-1;;;11415:2:1;11400:18;;11393:45;11470:2;11455:18;;11140:339::o;15779:128::-;15819:3;15850:1;15846:6;15843:1;15840:13;15837:39;;;15856:18;;:::i;:::-;-1:-1:-1;15892:9:1;;15779:128::o;20144:185::-;20186:3;20224:5;20218:12;20239:52;20284:6;20279:3;20272:4;20265:5;20261:16;20239:52;:::i;:::-;20307:16;;;;;20144:185;-1:-1:-1;;20144:185:1:o;20334:1174::-;20510:3;20539:1;20572:6;20566:13;20602:3;20624:1;20652:9;20648:2;20644:18;20634:28;;20712:2;20701:9;20697:18;20734;20724:61;;20778:4;20770:6;20766:17;20756:27;;20724:61;20804:2;20852;20844:6;20841:14;20821:18;20818:38;20815:165;;;-1:-1:-1;;;20879:33:1;;20935:4;20932:1;20925:15;20965:4;20886:3;20953:17;20815:165;20996:18;21023:104;;;;21141:1;21136:320;;;;20989:467;;21023:104;-1:-1:-1;;21056:24:1;;21044:37;;21101:16;;;;-1:-1:-1;21023:104:1;;21136:320;20091:1;20084:14;;;20128:4;20115:18;;21231:1;21245:165;21259:6;21256:1;21253:13;21245:165;;;21337:14;;21324:11;;;21317:35;21380:16;;;;21274:10;;21245:165;;;21249:3;;21439:6;21434:3;21430:16;21423:23;;20989:467;;;;;;;21472:30;21498:3;21490:6;21472:30;:::i;:::-;21465:37;20334:1174;-1:-1:-1;;;;;20334:1174:1:o;21513:280::-;21612:6;21665:2;21653:9;21644:7;21640:23;21636:32;21633:52;;;21681:1;21678;21671:12;21633:52;21713:9;21707:16;21732:31;21757:5;21732:31;:::i;23433:168::-;23473:7;23539:1;23535;23531:6;23527:14;23524:1;23521:21;23516:1;23509:9;23502:17;23498:45;23495:71;;;23546:18;;:::i;:::-;-1:-1:-1;23586:9:1;;23433:168::o;23606:127::-;23667:10;23662:3;23658:20;23655:1;23648:31;23698:4;23695:1;23688:15;23722:4;23719:1;23712:15;23738:120;23778:1;23804;23794:35;;23809:18;;:::i;:::-;-1:-1:-1;23843:9:1;;23738:120::o;24119:414::-;24321:2;24303:21;;;24360:2;24340:18;;;24333:30;24399:34;24394:2;24379:18;;24372:62;-1:-1:-1;;;24465:2:1;24450:18;;24443:48;24523:3;24508:19;;24119:414::o;24837:125::-;24877:4;24905:1;24902;24899:8;24896:34;;;24910:18;;:::i;:::-;-1:-1:-1;24947:9:1;;24837:125::o;24967:112::-;24999:1;25025;25015:35;;25030:18;;:::i;:::-;-1:-1:-1;25064:9:1;;24967:112::o;25084:500::-;-1:-1:-1;;;;;25353:15:1;;;25335:34;;25405:15;;25400:2;25385:18;;25378:43;25452:2;25437:18;;25430:34;;;25500:3;25495:2;25480:18;;25473:31;;;25278:4;;25521:57;;25558:19;;25550:6;25521:57;:::i;:::-;25513:65;25084:500;-1:-1:-1;;;;;;25084:500:1:o;25589:249::-;25658:6;25711:2;25699:9;25690:7;25686:23;25682:32;25679:52;;;25727:1;25724;25717:12;25679:52;25759:9;25753:16;25778:30;25802:5;25778:30;:::i

Swarm Source

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