ETH Price: $3,399.21 (-0.10%)
Gas: 22 Gwei

Token

We Are Bred (BRED)
 

Overview

Max Total Supply

167 BRED

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BRED
0xdaac448b33acd14144b73a768c96e449c01c994f
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:
WeAreBred

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-18
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

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

pragma solidity ^0.8.0;

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


// File erc721a/contracts/[email protected]

//
// Creator: Chiru Labs

pragma solidity ^0.8.4;







error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

//
// OpenZeppelin Contracts (last updated v4.5.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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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



pragma solidity ^0.8.4;



contract WeAreBred is ERC721A, Ownable {

    using Strings for uint256;


    uint256 public pricePresale = 0.015 ether;
    uint256 public pricePublic = 0.018 ether;
    uint256 public maxSupply = 2500;
    uint256 public maxPerWallet = 3;
    string public baseURI;
    string public hiddenURI;
    bytes32 public merkleRootPresale;
    bool public isPublicSaleActive = false;
    bool public isRevealed = false;
    constructor() ERC721A('We Are Bred', 'BRED') {_safeMint(msg.sender, 1);}

   
    function preSale(bytes32[] calldata __proof, uint256 __count) external payable {
        uint256 supply = totalSupply();
        uint256 tokenCount = numberMinted(msg.sender);

        require(__count > 0,                   'Count can not be 0');
        require(__count <= maxPerWallet,     string(abi.encodePacked('You can only mint ', maxPerWallet.toString())));
        require(tokenCount + __count <= maxPerWallet,  string(abi.encodePacked('You can only mint ', maxPerWallet.toString())));
        require(tokenCount <= maxPerWallet,  string(abi.encodePacked('You can only mint ', maxPerWallet.toString())));
        require(supply + __count <= maxSupply, 'This transaction would exceed max supply.');
        require(msg.value >= pricePresale * __count,  'Ether value is too low');

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(__proof, merkleRootPresale, leaf), "Not whitelisted.");

        _safeMint(msg.sender, __count);
    }

    function publicSale(uint256 __count) external payable {
        uint256 supply = totalSupply();
        uint256 tokenCount = numberMinted(msg.sender);

        require(isPublicSaleActive,               'Public sale is not active');
        require(__count > 0,                      'Count can not be 0');
        require(__count <= maxPerWallet,     string(abi.encodePacked('You can only mint ', maxPerWallet.toString())));
        require(tokenCount + __count <= maxPerWallet,  string(abi.encodePacked('You can only mint ', maxPerWallet.toString())));
        require(tokenCount <= maxPerWallet,  string(abi.encodePacked('You can only mint ', maxPerWallet.toString())));
        require(supply + __count <= maxSupply,    'This transaction would exceed max supply.');
        require(msg.value >= pricePublic * __count,     'Ether value is too low');

        _safeMint(msg.sender, __count);
    }


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

   
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (!isRevealed) { return hiddenURI; }

        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        return bytes(baseURI).length != 0 ? string(abi.encodePacked(_baseURI(), tokenId.toString(), '.json')) : '';
    }

    function enablePublicSale() public onlyOwner { isPublicSaleActive = true; }

    function setBaseURI(string memory URI) public onlyOwner { baseURI = URI; }
    function setHiddenURI(string memory URI) public onlyOwner { hiddenURI = URI; }
    function setPresaleMerkleRoot(bytes32 merkleRoot) public onlyOwner { merkleRootPresale = merkleRoot; }
    function Reveal() public onlyOwner { isRevealed = true; }

    function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); }

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

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        require(balance > 0, "No ether to withdraw");


        payable(0x00000000B1f1C1DD5F685e8C9D891A341cAE0cd8).transfer(balance/100*40);
        payable(0xdd9b61A8BE486164281491Acd5D2e720482504FF).transfer(balance/100*60);
    }
    receive() external payable {  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"Reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePublicSale","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPresale","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"__proof","type":"bytes32[]"},{"internalType":"uint256","name":"__count","type":"uint256"}],"name":"preSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"__count","type":"uint256"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266354a6ba7a18000600955663ff2e795f50000600a556109c4600b556003600c556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200006857600080fd5b506040518060400160405280600b81526020017f57652041726520427265640000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42524544000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ed92919062000808565b5080600390805190602001906200010692919062000808565b50620001176200015860201b60201c565b60008190555050506200013f620001336200015d60201b60201c565b6200016560201b60201c565b620001523360016200022b60201b60201c565b62000b09565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024d8282604051806020016040528060008152506200025160201b60201c565b5050565b6200026683838360016200026b60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620002d9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000315576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200032a60008683876200066760201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620005025750620005018773ffffffffffffffffffffffffffffffffffffffff166200066d60201b62001e761760201c565b5b15620005d5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200058060008884806001019550886200069060201b60201c565b620005b7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141562000509578260005414620005cf57600080fd5b62000642565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620005d6575b8160008190555050506200066060008683876200080260201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006be6200015d60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006e2949392919062000964565b602060405180830381600087803b158015620006fd57600080fd5b505af19250505080156200073157506040513d601f19601f820116820180604052508101906200072e9190620008cf565b60015b620007af573d806000811462000764576040519150601f19603f3d011682016040523d82523d6000602084013e62000769565b606091505b50600081511415620007a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620008169062000a74565b90600052602060002090601f0160209004810192826200083a576000855562000886565b82601f106200085557805160ff191683800117855562000886565b8280016001018555821562000886579182015b828111156200088557825182559160200191906001019062000868565b5b50905062000895919062000899565b5090565b5b80821115620008b45760008160009055506001016200089a565b5090565b600081519050620008c98162000aef565b92915050565b600060208284031215620008e857620008e762000ad9565b5b6000620008f884828501620008b8565b91505092915050565b6200090c81620009d4565b82525050565b60006200091f82620009b8565b6200092b8185620009c3565b93506200093d81856020860162000a3e565b620009488162000ade565b840191505092915050565b6200095e8162000a34565b82525050565b60006080820190506200097b600083018762000901565b6200098a602083018662000901565b62000999604083018562000953565b8181036060830152620009ad818462000912565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620009e18262000a14565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a5e57808201518184015260208101905062000a41565b8381111562000a6e576000848401525b50505050565b6000600282049050600182168062000a8d57607f821691505b6020821081141562000aa45762000aa362000aaa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000afa81620009e8565b811462000b0657600080fd5b50565b61435f8062000b196000396000f3fe6080604052600436106102135760003560e01c80636c0360eb11610118578063b287c8ed116100a0578063d5abeb011161006f578063d5abeb0114610751578063dc33e6811461077c578063e985e9c5146107b9578063f2fde38b146107f6578063f37340a51461081f5761021a565b8063b287c8ed146106a6578063b88d4fde146106c2578063bbaac02f146106eb578063c87b56dd146107145761021a565b80638da5cb5b116100e75780638da5cb5b146105bf5780639147dd1b146105ea5780639231ab2a1461061557806395d89b4114610652578063a22cb4651461067d5761021a565b80636c0360eb1461051557806370a0823114610540578063715018a61461057d5780638cc54e7f146105945761021a565b806323b872dd1161019b578063453c23101161016a578063453c23101461044257806354214f691461046d57806355f804b3146104985780636352211e146104c157806366b9f0d2146104fe5761021a565b806323b872dd146103b057806328d7b276146103d95780633ccfd60b1461040257806342842e0e146104195761021a565b8063095ea7b3116101e2578063095ea7b3146102ef578063102e766d1461031857806318160ddd146103435780631e84c4131461036e5780632316b4da146103995761021a565b806301c124b71461021f57806301ffc9a71461024a57806306fdde0314610287578063081812fc146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461083b565b6040516102419190613a13565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c919061356f565b610841565b60405161027e91906139f8565b60405180910390f35b34801561029357600080fd5b5061029c610923565b6040516102a99190613a2e565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190613612565b6109b5565b6040516102e69190613991565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906134a2565b610a31565b005b34801561032457600080fd5b5061032d610b3c565b60405161033a9190613b8b565b60405180910390f35b34801561034f57600080fd5b50610358610b42565b6040516103659190613b8b565b60405180910390f35b34801561037a57600080fd5b50610383610b59565b60405161039091906139f8565b60405180910390f35b3480156103a557600080fd5b506103ae610b6c565b005b3480156103bc57600080fd5b506103d760048036038101906103d2919061338c565b610c05565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613542565b610c15565b005b34801561040e57600080fd5b50610417610c9b565b005b34801561042557600080fd5b50610440600480360381019061043b919061338c565b610e44565b005b34801561044e57600080fd5b50610457610e64565b6040516104649190613b8b565b60405180910390f35b34801561047957600080fd5b50610482610e6a565b60405161048f91906139f8565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906135c9565b610e7d565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613612565b610f13565b6040516104f59190613991565b60405180910390f35b34801561050a57600080fd5b50610513610f29565b005b34801561052157600080fd5b5061052a610fc2565b6040516105379190613a2e565b60405180910390f35b34801561054c57600080fd5b506105676004803603810190610562919061331f565b611050565b6040516105749190613b8b565b60405180910390f35b34801561058957600080fd5b50610592611120565b005b3480156105a057600080fd5b506105a96111a8565b6040516105b69190613a2e565b60405180910390f35b3480156105cb57600080fd5b506105d4611236565b6040516105e19190613991565b60405180910390f35b3480156105f657600080fd5b506105ff611260565b60405161060c9190613b8b565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613612565b611266565b6040516106499190613b70565b60405180910390f35b34801561065e57600080fd5b5061066761127e565b6040516106749190613a2e565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613462565b611310565b005b6106c060048036038101906106bb9190613612565b611488565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906133df565b611743565b005b3480156106f757600080fd5b50610712600480360381019061070d91906135c9565b6117bf565b005b34801561072057600080fd5b5061073b60048036038101906107369190613612565b611855565b6040516107489190613a2e565b60405180910390f35b34801561075d57600080fd5b506107666119ab565b6040516107739190613b8b565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e919061331f565b6119b1565b6040516107b09190613b8b565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061334c565b6119c3565b6040516107ed91906139f8565b60405180910390f35b34801561080257600080fd5b5061081d6004803603810190610818919061331f565b611a57565b005b610839600480360381019061083491906134e2565b611b4f565b005b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091c575061091b82611e99565b5b9050919050565b60606002805461093290613e59565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613e59565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611f03565b6109f6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3c82610f13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac3611f51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af55750610af381610aee611f51565b6119c3565b155b15610b2c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b37838383611f59565b505050565b600a5481565b6000610b4c61200b565b6001546000540303905090565b601060009054906101000a900460ff1681565b610b74611f51565b73ffffffffffffffffffffffffffffffffffffffff16610b92611236565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613af0565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b610c10838383612010565b505050565b610c1d611f51565b73ffffffffffffffffffffffffffffffffffffffff16610c3b611236565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890613af0565b60405180910390fd5b80600f8190555050565b610ca3611f51565b73ffffffffffffffffffffffffffffffffffffffff16610cc1611236565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613af0565b60405180910390fd5b600047905060008111610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613ab0565b60405180910390fd5b6fb1f1c1dd5f685e8c9d891a341cae0cd873ffffffffffffffffffffffffffffffffffffffff166108fc6028606484610d989190613cc6565b610da29190613cf7565b9081150290604051600060405180830381858888f19350505050158015610dcd573d6000803e3d6000fd5b5073dd9b61a8be486164281491acd5d2e720482504ff73ffffffffffffffffffffffffffffffffffffffff166108fc603c606484610e0b9190613cc6565b610e159190613cf7565b9081150290604051600060405180830381858888f19350505050158015610e40573d6000803e3d6000fd5b5050565b610e5f83838360405180602001604052806000815250611743565b505050565b600c5481565b601060019054906101000a900460ff1681565b610e85611f51565b73ffffffffffffffffffffffffffffffffffffffff16610ea3611236565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613af0565b60405180910390fd5b80600d9080519060200190610f0f929190613085565b5050565b6000610f1e826124c6565b600001519050919050565b610f31611f51565b73ffffffffffffffffffffffffffffffffffffffff16610f4f611236565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613af0565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b600d8054610fcf90613e59565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb90613e59565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611128611f51565b73ffffffffffffffffffffffffffffffffffffffff16611146611236565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613af0565b60405180910390fd5b6111a66000612755565b565b600e80546111b590613e59565b80601f01602080910402602001604051908101604052809291908181526020018280546111e190613e59565b801561122e5780601f106112035761010080835404028352916020019161122e565b820191906000526020600020905b81548152906001019060200180831161121157829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b61126e61310b565b611277826124c6565b9050919050565b60606003805461128d90613e59565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990613e59565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b5050505050905090565b611318611f51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138a611f51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611437611f51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147c91906139f8565b60405180910390a35050565b6000611492610b42565b9050600061149f336119b1565b9050601060009054906101000a900460ff166114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790613ad0565b60405180910390fd5b60008311611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613a90565b60405180910390fd5b600c54831115611544600c5461281b565b604051602001611554919061396f565b604051602081830303815290604052906115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b9190613a2e565b60405180910390fd5b50600c5483826115b49190613c70565b11156115c1600c5461281b565b6040516020016115d1919061396f565b60405160208183030381529060405290611621576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116189190613a2e565b60405180910390fd5b50600c54811115611633600c5461281b565b604051602001611643919061396f565b60405160208183030381529060405290611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a9190613a2e565b60405180910390fd5b50600b5483836116a39190613c70565b11156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613a70565b60405180910390fd5b82600a546116f29190613cf7565b341015611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613b30565b60405180910390fd5b61173e338461297c565b505050565b61174e848484612010565b61176d8373ffffffffffffffffffffffffffffffffffffffff16611e76565b801561178257506117808484848461299a565b155b156117b9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117c7611f51565b73ffffffffffffffffffffffffffffffffffffffff166117e5611236565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613af0565b60405180910390fd5b80600e9080519060200190611851929190613085565b5050565b6060601060019054906101000a900460ff166118fd57600e805461187890613e59565b80601f01602080910402602001604051908101604052809291908181526020018280546118a490613e59565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b505050505090506119a6565b61190682611f03565b611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90613b10565b60405180910390fd5b6000600d805461195490613e59565b9050141561197157604051806020016040528060008152506119a3565b611979612afa565b6119828361281b565b604051602001611993929190613940565b6040516020818303038152906040525b90505b919050565b600b5481565b60006119bc82612b8c565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a5f611f51565b73ffffffffffffffffffffffffffffffffffffffff16611a7d611236565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613af0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90613a50565b60405180910390fd5b611b4c81612755565b50565b6000611b59610b42565b90506000611b66336119b1565b905060008311611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613a90565b60405180910390fd5b600c54831115611bbc600c5461281b565b604051602001611bcc919061396f565b60405160208183030381529060405290611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c139190613a2e565b60405180910390fd5b50600c548382611c2c9190613c70565b1115611c39600c5461281b565b604051602001611c49919061396f565b60405160208183030381529060405290611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c909190613a2e565b60405180910390fd5b50600c54811115611cab600c5461281b565b604051602001611cbb919061396f565b60405160208183030381529060405290611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d029190613a2e565b60405180910390fd5b50600b548383611d1b9190613c70565b1115611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5390613a70565b60405180910390fd5b82600954611d6a9190613cf7565b341015611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613b30565b60405180910390fd5b600033604051602001611dbf9190613925565b604051602081830303815290604052805190602001209050611e25868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612bf6565b611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90613b50565b60405180910390fd5b611e6e338561297c565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f0e61200b565b11158015611f1d575060005482105b8015611f4a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061201b826124c6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612086576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120a7611f51565b73ffffffffffffffffffffffffffffffffffffffff1614806120d657506120d5856120d0611f51565b6119c3565b5b8061211b57506120e4611f51565b73ffffffffffffffffffffffffffffffffffffffff16612103846109b5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612154576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121c88585856001612c0d565b6121d460008487611f59565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561245457600054821461245357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124bf8585856001612c13565b5050505050565b6124ce61310b565b6000829050806124dc61200b565b111580156124eb575060005481105b1561271e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612600578092505050612750565b5b60011561271b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612716578092505050612750565b612601565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415612863576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612977565b600082905060005b6000821461289557808061287e90613ebc565b915050600a8261288e9190613cc6565b915061286b565b60008167ffffffffffffffff8111156128b1576128b0614016565b5b6040519080825280601f01601f1916602001820160405280156128e35781602001600182028036833780820191505090505b5090505b60008514612970576001826128fc9190613d51565b9150600a8561290b9190613f29565b60306129179190613c70565b60f81b81838151811061292d5761292c613fe7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129699190613cc6565b94506128e7565b8093505050505b919050565b612996828260405180602001604052806000815250612c19565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129c0611f51565b8786866040518563ffffffff1660e01b81526004016129e294939291906139ac565b602060405180830381600087803b1580156129fc57600080fd5b505af1925050508015612a2d57506040513d601f19601f82011682018060405250810190612a2a919061359c565b60015b612aa7573d8060008114612a5d576040519150601f19603f3d011682016040523d82523d6000602084013e612a62565b606091505b50600081511415612a9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054612b0990613e59565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3590613e59565b8015612b825780601f10612b5757610100808354040283529160200191612b82565b820191906000526020600020905b815481529060010190602001808311612b6557829003601f168201915b5050505050905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600082612c038584612c2b565b1490509392505050565b50505050565b50505050565b612c268383836001612ca0565b505050565b60008082905060005b8451811015612c95576000858281518110612c5257612c51613fe7565b5b60200260200101519050808311612c7457612c6d838261306e565b9250612c81565b612c7e818461306e565b92505b508080612c8d90613ebc565b915050612c34565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d0d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d48576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d556000868387612c0d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f1f5750612f1e8773ffffffffffffffffffffffffffffffffffffffff16611e76565b5b15612fe5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f94600088848060010195508861299a565b612fca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612f25578260005414612fe057600080fd5b613051565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612fe6575b8160008190555050506130676000868387612c13565b5050505050565b600082600052816020526040600020905092915050565b82805461309190613e59565b90600052602060002090601f0160209004810192826130b357600085556130fa565b82601f106130cc57805160ff19168380011785556130fa565b828001600101855582156130fa579182015b828111156130f95782518255916020019190600101906130de565b5b509050613107919061314e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561316757600081600090555060010161314f565b5090565b600061317e61317984613bcb565b613ba6565b90508281526020810184848401111561319a57613199614054565b5b6131a5848285613e17565b509392505050565b60006131c06131bb84613bfc565b613ba6565b9050828152602081018484840111156131dc576131db614054565b5b6131e7848285613e17565b509392505050565b6000813590506131fe816142b6565b92915050565b60008083601f84011261321a5761321961404a565b5b8235905067ffffffffffffffff81111561323757613236614045565b5b6020830191508360208202830111156132535761325261404f565b5b9250929050565b600081359050613269816142cd565b92915050565b60008135905061327e816142e4565b92915050565b600081359050613293816142fb565b92915050565b6000815190506132a8816142fb565b92915050565b600082601f8301126132c3576132c261404a565b5b81356132d384826020860161316b565b91505092915050565b600082601f8301126132f1576132f061404a565b5b81356133018482602086016131ad565b91505092915050565b60008135905061331981614312565b92915050565b6000602082840312156133355761333461405e565b5b6000613343848285016131ef565b91505092915050565b600080604083850312156133635761336261405e565b5b6000613371858286016131ef565b9250506020613382858286016131ef565b9150509250929050565b6000806000606084860312156133a5576133a461405e565b5b60006133b3868287016131ef565b93505060206133c4868287016131ef565b92505060406133d58682870161330a565b9150509250925092565b600080600080608085870312156133f9576133f861405e565b5b6000613407878288016131ef565b9450506020613418878288016131ef565b93505060406134298782880161330a565b925050606085013567ffffffffffffffff81111561344a57613449614059565b5b613456878288016132ae565b91505092959194509250565b600080604083850312156134795761347861405e565b5b6000613487858286016131ef565b92505060206134988582860161325a565b9150509250929050565b600080604083850312156134b9576134b861405e565b5b60006134c7858286016131ef565b92505060206134d88582860161330a565b9150509250929050565b6000806000604084860312156134fb576134fa61405e565b5b600084013567ffffffffffffffff81111561351957613518614059565b5b61352586828701613204565b935093505060206135388682870161330a565b9150509250925092565b6000602082840312156135585761355761405e565b5b60006135668482850161326f565b91505092915050565b6000602082840312156135855761358461405e565b5b600061359384828501613284565b91505092915050565b6000602082840312156135b2576135b161405e565b5b60006135c084828501613299565b91505092915050565b6000602082840312156135df576135de61405e565b5b600082013567ffffffffffffffff8111156135fd576135fc614059565b5b613609848285016132dc565b91505092915050565b6000602082840312156136285761362761405e565b5b60006136368482850161330a565b91505092915050565b61364881613d85565b82525050565b61365781613d85565b82525050565b61366e61366982613d85565b613f05565b82525050565b61367d81613d97565b82525050565b61368c81613d97565b82525050565b61369b81613da3565b82525050565b60006136ac82613c2d565b6136b68185613c43565b93506136c6818560208601613e26565b6136cf81614063565b840191505092915050565b60006136e582613c38565b6136ef8185613c54565b93506136ff818560208601613e26565b61370881614063565b840191505092915050565b600061371e82613c38565b6137288185613c65565b9350613738818560208601613e26565b80840191505092915050565b6000613751602683613c54565b915061375c82614081565b604082019050919050565b6000613774602983613c54565b915061377f826140d0565b604082019050919050565b6000613797601283613c54565b91506137a28261411f565b602082019050919050565b60006137ba601483613c54565b91506137c582614148565b602082019050919050565b60006137dd601983613c54565b91506137e882614171565b602082019050919050565b6000613800600583613c65565b915061380b8261419a565b600582019050919050565b6000613823602083613c54565b915061382e826141c3565b602082019050919050565b6000613846602f83613c54565b9150613851826141ec565b604082019050919050565b6000613869601683613c54565b91506138748261423b565b602082019050919050565b600061388c601083613c54565b915061389782614264565b602082019050919050565b60006138af601283613c65565b91506138ba8261428d565b601282019050919050565b6060820160008201516138db600085018261363f565b5060208201516138ee6020850182613916565b5060408201516139016040850182613674565b50505050565b61391081613df9565b82525050565b61391f81613e03565b82525050565b6000613931828461365d565b60148201915081905092915050565b600061394c8285613713565b91506139588284613713565b9150613963826137f3565b91508190509392505050565b600061397a826138a2565b91506139868284613713565b915081905092915050565b60006020820190506139a6600083018461364e565b92915050565b60006080820190506139c1600083018761364e565b6139ce602083018661364e565b6139db6040830185613907565b81810360608301526139ed81846136a1565b905095945050505050565b6000602082019050613a0d6000830184613683565b92915050565b6000602082019050613a286000830184613692565b92915050565b60006020820190508181036000830152613a4881846136da565b905092915050565b60006020820190508181036000830152613a6981613744565b9050919050565b60006020820190508181036000830152613a8981613767565b9050919050565b60006020820190508181036000830152613aa98161378a565b9050919050565b60006020820190508181036000830152613ac9816137ad565b9050919050565b60006020820190508181036000830152613ae9816137d0565b9050919050565b60006020820190508181036000830152613b0981613816565b9050919050565b60006020820190508181036000830152613b2981613839565b9050919050565b60006020820190508181036000830152613b498161385c565b9050919050565b60006020820190508181036000830152613b698161387f565b9050919050565b6000606082019050613b8560008301846138c5565b92915050565b6000602082019050613ba06000830184613907565b92915050565b6000613bb0613bc1565b9050613bbc8282613e8b565b919050565b6000604051905090565b600067ffffffffffffffff821115613be657613be5614016565b5b613bef82614063565b9050602081019050919050565b600067ffffffffffffffff821115613c1757613c16614016565b5b613c2082614063565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7b82613df9565b9150613c8683613df9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cbb57613cba613f5a565b5b828201905092915050565b6000613cd182613df9565b9150613cdc83613df9565b925082613cec57613ceb613f89565b5b828204905092915050565b6000613d0282613df9565b9150613d0d83613df9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4657613d45613f5a565b5b828202905092915050565b6000613d5c82613df9565b9150613d6783613df9565b925082821015613d7a57613d79613f5a565b5b828203905092915050565b6000613d9082613dd9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613e44578082015181840152602081019050613e29565b83811115613e53576000848401525b50505050565b60006002820490506001821680613e7157607f821691505b60208210811415613e8557613e84613fb8565b5b50919050565b613e9482614063565b810181811067ffffffffffffffff82111715613eb357613eb2614016565b5b80604052505050565b6000613ec782613df9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613efa57613ef9613f5a565b5b600182019050919050565b6000613f1082613f17565b9050919050565b6000613f2282614074565b9050919050565b6000613f3482613df9565b9150613f3f83613df9565b925082613f4f57613f4e613f89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54686973207472616e73616374696f6e20776f756c6420657863656564206d6160008201527f7820737570706c792e0000000000000000000000000000000000000000000000602082015250565b7f436f756e742063616e206e6f7420626520300000000000000000000000000000600082015250565b7f4e6f20657468657220746f207769746864726177000000000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45746865722076616c756520697320746f6f206c6f7700000000000000000000600082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b7f596f752063616e206f6e6c79206d696e74200000000000000000000000000000600082015250565b6142bf81613d85565b81146142ca57600080fd5b50565b6142d681613d97565b81146142e157600080fd5b50565b6142ed81613da3565b81146142f857600080fd5b50565b61430481613dad565b811461430f57600080fd5b50565b61431b81613df9565b811461432657600080fd5b5056fea26469706673582212202404125b69efdd287b163e0323118cfa149b64f087627de73fcf0a596703e22f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80636c0360eb11610118578063b287c8ed116100a0578063d5abeb011161006f578063d5abeb0114610751578063dc33e6811461077c578063e985e9c5146107b9578063f2fde38b146107f6578063f37340a51461081f5761021a565b8063b287c8ed146106a6578063b88d4fde146106c2578063bbaac02f146106eb578063c87b56dd146107145761021a565b80638da5cb5b116100e75780638da5cb5b146105bf5780639147dd1b146105ea5780639231ab2a1461061557806395d89b4114610652578063a22cb4651461067d5761021a565b80636c0360eb1461051557806370a0823114610540578063715018a61461057d5780638cc54e7f146105945761021a565b806323b872dd1161019b578063453c23101161016a578063453c23101461044257806354214f691461046d57806355f804b3146104985780636352211e146104c157806366b9f0d2146104fe5761021a565b806323b872dd146103b057806328d7b276146103d95780633ccfd60b1461040257806342842e0e146104195761021a565b8063095ea7b3116101e2578063095ea7b3146102ef578063102e766d1461031857806318160ddd146103435780631e84c4131461036e5780632316b4da146103995761021a565b806301c124b71461021f57806301ffc9a71461024a57806306fdde0314610287578063081812fc146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461083b565b6040516102419190613a13565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c919061356f565b610841565b60405161027e91906139f8565b60405180910390f35b34801561029357600080fd5b5061029c610923565b6040516102a99190613a2e565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190613612565b6109b5565b6040516102e69190613991565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906134a2565b610a31565b005b34801561032457600080fd5b5061032d610b3c565b60405161033a9190613b8b565b60405180910390f35b34801561034f57600080fd5b50610358610b42565b6040516103659190613b8b565b60405180910390f35b34801561037a57600080fd5b50610383610b59565b60405161039091906139f8565b60405180910390f35b3480156103a557600080fd5b506103ae610b6c565b005b3480156103bc57600080fd5b506103d760048036038101906103d2919061338c565b610c05565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613542565b610c15565b005b34801561040e57600080fd5b50610417610c9b565b005b34801561042557600080fd5b50610440600480360381019061043b919061338c565b610e44565b005b34801561044e57600080fd5b50610457610e64565b6040516104649190613b8b565b60405180910390f35b34801561047957600080fd5b50610482610e6a565b60405161048f91906139f8565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906135c9565b610e7d565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613612565b610f13565b6040516104f59190613991565b60405180910390f35b34801561050a57600080fd5b50610513610f29565b005b34801561052157600080fd5b5061052a610fc2565b6040516105379190613a2e565b60405180910390f35b34801561054c57600080fd5b506105676004803603810190610562919061331f565b611050565b6040516105749190613b8b565b60405180910390f35b34801561058957600080fd5b50610592611120565b005b3480156105a057600080fd5b506105a96111a8565b6040516105b69190613a2e565b60405180910390f35b3480156105cb57600080fd5b506105d4611236565b6040516105e19190613991565b60405180910390f35b3480156105f657600080fd5b506105ff611260565b60405161060c9190613b8b565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613612565b611266565b6040516106499190613b70565b60405180910390f35b34801561065e57600080fd5b5061066761127e565b6040516106749190613a2e565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613462565b611310565b005b6106c060048036038101906106bb9190613612565b611488565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906133df565b611743565b005b3480156106f757600080fd5b50610712600480360381019061070d91906135c9565b6117bf565b005b34801561072057600080fd5b5061073b60048036038101906107369190613612565b611855565b6040516107489190613a2e565b60405180910390f35b34801561075d57600080fd5b506107666119ab565b6040516107739190613b8b565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e919061331f565b6119b1565b6040516107b09190613b8b565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061334c565b6119c3565b6040516107ed91906139f8565b60405180910390f35b34801561080257600080fd5b5061081d6004803603810190610818919061331f565b611a57565b005b610839600480360381019061083491906134e2565b611b4f565b005b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091c575061091b82611e99565b5b9050919050565b60606002805461093290613e59565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613e59565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611f03565b6109f6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3c82610f13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac3611f51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af55750610af381610aee611f51565b6119c3565b155b15610b2c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b37838383611f59565b505050565b600a5481565b6000610b4c61200b565b6001546000540303905090565b601060009054906101000a900460ff1681565b610b74611f51565b73ffffffffffffffffffffffffffffffffffffffff16610b92611236565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613af0565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b610c10838383612010565b505050565b610c1d611f51565b73ffffffffffffffffffffffffffffffffffffffff16610c3b611236565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890613af0565b60405180910390fd5b80600f8190555050565b610ca3611f51565b73ffffffffffffffffffffffffffffffffffffffff16610cc1611236565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613af0565b60405180910390fd5b600047905060008111610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613ab0565b60405180910390fd5b6fb1f1c1dd5f685e8c9d891a341cae0cd873ffffffffffffffffffffffffffffffffffffffff166108fc6028606484610d989190613cc6565b610da29190613cf7565b9081150290604051600060405180830381858888f19350505050158015610dcd573d6000803e3d6000fd5b5073dd9b61a8be486164281491acd5d2e720482504ff73ffffffffffffffffffffffffffffffffffffffff166108fc603c606484610e0b9190613cc6565b610e159190613cf7565b9081150290604051600060405180830381858888f19350505050158015610e40573d6000803e3d6000fd5b5050565b610e5f83838360405180602001604052806000815250611743565b505050565b600c5481565b601060019054906101000a900460ff1681565b610e85611f51565b73ffffffffffffffffffffffffffffffffffffffff16610ea3611236565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613af0565b60405180910390fd5b80600d9080519060200190610f0f929190613085565b5050565b6000610f1e826124c6565b600001519050919050565b610f31611f51565b73ffffffffffffffffffffffffffffffffffffffff16610f4f611236565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613af0565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b600d8054610fcf90613e59565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb90613e59565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611128611f51565b73ffffffffffffffffffffffffffffffffffffffff16611146611236565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613af0565b60405180910390fd5b6111a66000612755565b565b600e80546111b590613e59565b80601f01602080910402602001604051908101604052809291908181526020018280546111e190613e59565b801561122e5780601f106112035761010080835404028352916020019161122e565b820191906000526020600020905b81548152906001019060200180831161121157829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b61126e61310b565b611277826124c6565b9050919050565b60606003805461128d90613e59565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990613e59565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b5050505050905090565b611318611f51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138a611f51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611437611f51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147c91906139f8565b60405180910390a35050565b6000611492610b42565b9050600061149f336119b1565b9050601060009054906101000a900460ff166114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790613ad0565b60405180910390fd5b60008311611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613a90565b60405180910390fd5b600c54831115611544600c5461281b565b604051602001611554919061396f565b604051602081830303815290604052906115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b9190613a2e565b60405180910390fd5b50600c5483826115b49190613c70565b11156115c1600c5461281b565b6040516020016115d1919061396f565b60405160208183030381529060405290611621576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116189190613a2e565b60405180910390fd5b50600c54811115611633600c5461281b565b604051602001611643919061396f565b60405160208183030381529060405290611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a9190613a2e565b60405180910390fd5b50600b5483836116a39190613c70565b11156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613a70565b60405180910390fd5b82600a546116f29190613cf7565b341015611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613b30565b60405180910390fd5b61173e338461297c565b505050565b61174e848484612010565b61176d8373ffffffffffffffffffffffffffffffffffffffff16611e76565b801561178257506117808484848461299a565b155b156117b9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117c7611f51565b73ffffffffffffffffffffffffffffffffffffffff166117e5611236565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613af0565b60405180910390fd5b80600e9080519060200190611851929190613085565b5050565b6060601060019054906101000a900460ff166118fd57600e805461187890613e59565b80601f01602080910402602001604051908101604052809291908181526020018280546118a490613e59565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b505050505090506119a6565b61190682611f03565b611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90613b10565b60405180910390fd5b6000600d805461195490613e59565b9050141561197157604051806020016040528060008152506119a3565b611979612afa565b6119828361281b565b604051602001611993929190613940565b6040516020818303038152906040525b90505b919050565b600b5481565b60006119bc82612b8c565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a5f611f51565b73ffffffffffffffffffffffffffffffffffffffff16611a7d611236565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613af0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90613a50565b60405180910390fd5b611b4c81612755565b50565b6000611b59610b42565b90506000611b66336119b1565b905060008311611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613a90565b60405180910390fd5b600c54831115611bbc600c5461281b565b604051602001611bcc919061396f565b60405160208183030381529060405290611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c139190613a2e565b60405180910390fd5b50600c548382611c2c9190613c70565b1115611c39600c5461281b565b604051602001611c49919061396f565b60405160208183030381529060405290611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c909190613a2e565b60405180910390fd5b50600c54811115611cab600c5461281b565b604051602001611cbb919061396f565b60405160208183030381529060405290611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d029190613a2e565b60405180910390fd5b50600b548383611d1b9190613c70565b1115611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5390613a70565b60405180910390fd5b82600954611d6a9190613cf7565b341015611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613b30565b60405180910390fd5b600033604051602001611dbf9190613925565b604051602081830303815290604052805190602001209050611e25868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612bf6565b611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90613b50565b60405180910390fd5b611e6e338561297c565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f0e61200b565b11158015611f1d575060005482105b8015611f4a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061201b826124c6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612086576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120a7611f51565b73ffffffffffffffffffffffffffffffffffffffff1614806120d657506120d5856120d0611f51565b6119c3565b5b8061211b57506120e4611f51565b73ffffffffffffffffffffffffffffffffffffffff16612103846109b5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612154576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121c88585856001612c0d565b6121d460008487611f59565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561245457600054821461245357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124bf8585856001612c13565b5050505050565b6124ce61310b565b6000829050806124dc61200b565b111580156124eb575060005481105b1561271e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612600578092505050612750565b5b60011561271b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612716578092505050612750565b612601565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415612863576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612977565b600082905060005b6000821461289557808061287e90613ebc565b915050600a8261288e9190613cc6565b915061286b565b60008167ffffffffffffffff8111156128b1576128b0614016565b5b6040519080825280601f01601f1916602001820160405280156128e35781602001600182028036833780820191505090505b5090505b60008514612970576001826128fc9190613d51565b9150600a8561290b9190613f29565b60306129179190613c70565b60f81b81838151811061292d5761292c613fe7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129699190613cc6565b94506128e7565b8093505050505b919050565b612996828260405180602001604052806000815250612c19565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129c0611f51565b8786866040518563ffffffff1660e01b81526004016129e294939291906139ac565b602060405180830381600087803b1580156129fc57600080fd5b505af1925050508015612a2d57506040513d601f19601f82011682018060405250810190612a2a919061359c565b60015b612aa7573d8060008114612a5d576040519150601f19603f3d011682016040523d82523d6000602084013e612a62565b606091505b50600081511415612a9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054612b0990613e59565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3590613e59565b8015612b825780601f10612b5757610100808354040283529160200191612b82565b820191906000526020600020905b815481529060010190602001808311612b6557829003601f168201915b5050505050905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600082612c038584612c2b565b1490509392505050565b50505050565b50505050565b612c268383836001612ca0565b505050565b60008082905060005b8451811015612c95576000858281518110612c5257612c51613fe7565b5b60200260200101519050808311612c7457612c6d838261306e565b9250612c81565b612c7e818461306e565b92505b508080612c8d90613ebc565b915050612c34565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d0d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d48576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d556000868387612c0d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f1f5750612f1e8773ffffffffffffffffffffffffffffffffffffffff16611e76565b5b15612fe5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f94600088848060010195508861299a565b612fca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612f25578260005414612fe057600080fd5b613051565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612fe6575b8160008190555050506130676000868387612c13565b5050505050565b600082600052816020526040600020905092915050565b82805461309190613e59565b90600052602060002090601f0160209004810192826130b357600085556130fa565b82601f106130cc57805160ff19168380011785556130fa565b828001600101855582156130fa579182015b828111156130f95782518255916020019190600101906130de565b5b509050613107919061314e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561316757600081600090555060010161314f565b5090565b600061317e61317984613bcb565b613ba6565b90508281526020810184848401111561319a57613199614054565b5b6131a5848285613e17565b509392505050565b60006131c06131bb84613bfc565b613ba6565b9050828152602081018484840111156131dc576131db614054565b5b6131e7848285613e17565b509392505050565b6000813590506131fe816142b6565b92915050565b60008083601f84011261321a5761321961404a565b5b8235905067ffffffffffffffff81111561323757613236614045565b5b6020830191508360208202830111156132535761325261404f565b5b9250929050565b600081359050613269816142cd565b92915050565b60008135905061327e816142e4565b92915050565b600081359050613293816142fb565b92915050565b6000815190506132a8816142fb565b92915050565b600082601f8301126132c3576132c261404a565b5b81356132d384826020860161316b565b91505092915050565b600082601f8301126132f1576132f061404a565b5b81356133018482602086016131ad565b91505092915050565b60008135905061331981614312565b92915050565b6000602082840312156133355761333461405e565b5b6000613343848285016131ef565b91505092915050565b600080604083850312156133635761336261405e565b5b6000613371858286016131ef565b9250506020613382858286016131ef565b9150509250929050565b6000806000606084860312156133a5576133a461405e565b5b60006133b3868287016131ef565b93505060206133c4868287016131ef565b92505060406133d58682870161330a565b9150509250925092565b600080600080608085870312156133f9576133f861405e565b5b6000613407878288016131ef565b9450506020613418878288016131ef565b93505060406134298782880161330a565b925050606085013567ffffffffffffffff81111561344a57613449614059565b5b613456878288016132ae565b91505092959194509250565b600080604083850312156134795761347861405e565b5b6000613487858286016131ef565b92505060206134988582860161325a565b9150509250929050565b600080604083850312156134b9576134b861405e565b5b60006134c7858286016131ef565b92505060206134d88582860161330a565b9150509250929050565b6000806000604084860312156134fb576134fa61405e565b5b600084013567ffffffffffffffff81111561351957613518614059565b5b61352586828701613204565b935093505060206135388682870161330a565b9150509250925092565b6000602082840312156135585761355761405e565b5b60006135668482850161326f565b91505092915050565b6000602082840312156135855761358461405e565b5b600061359384828501613284565b91505092915050565b6000602082840312156135b2576135b161405e565b5b60006135c084828501613299565b91505092915050565b6000602082840312156135df576135de61405e565b5b600082013567ffffffffffffffff8111156135fd576135fc614059565b5b613609848285016132dc565b91505092915050565b6000602082840312156136285761362761405e565b5b60006136368482850161330a565b91505092915050565b61364881613d85565b82525050565b61365781613d85565b82525050565b61366e61366982613d85565b613f05565b82525050565b61367d81613d97565b82525050565b61368c81613d97565b82525050565b61369b81613da3565b82525050565b60006136ac82613c2d565b6136b68185613c43565b93506136c6818560208601613e26565b6136cf81614063565b840191505092915050565b60006136e582613c38565b6136ef8185613c54565b93506136ff818560208601613e26565b61370881614063565b840191505092915050565b600061371e82613c38565b6137288185613c65565b9350613738818560208601613e26565b80840191505092915050565b6000613751602683613c54565b915061375c82614081565b604082019050919050565b6000613774602983613c54565b915061377f826140d0565b604082019050919050565b6000613797601283613c54565b91506137a28261411f565b602082019050919050565b60006137ba601483613c54565b91506137c582614148565b602082019050919050565b60006137dd601983613c54565b91506137e882614171565b602082019050919050565b6000613800600583613c65565b915061380b8261419a565b600582019050919050565b6000613823602083613c54565b915061382e826141c3565b602082019050919050565b6000613846602f83613c54565b9150613851826141ec565b604082019050919050565b6000613869601683613c54565b91506138748261423b565b602082019050919050565b600061388c601083613c54565b915061389782614264565b602082019050919050565b60006138af601283613c65565b91506138ba8261428d565b601282019050919050565b6060820160008201516138db600085018261363f565b5060208201516138ee6020850182613916565b5060408201516139016040850182613674565b50505050565b61391081613df9565b82525050565b61391f81613e03565b82525050565b6000613931828461365d565b60148201915081905092915050565b600061394c8285613713565b91506139588284613713565b9150613963826137f3565b91508190509392505050565b600061397a826138a2565b91506139868284613713565b915081905092915050565b60006020820190506139a6600083018461364e565b92915050565b60006080820190506139c1600083018761364e565b6139ce602083018661364e565b6139db6040830185613907565b81810360608301526139ed81846136a1565b905095945050505050565b6000602082019050613a0d6000830184613683565b92915050565b6000602082019050613a286000830184613692565b92915050565b60006020820190508181036000830152613a4881846136da565b905092915050565b60006020820190508181036000830152613a6981613744565b9050919050565b60006020820190508181036000830152613a8981613767565b9050919050565b60006020820190508181036000830152613aa98161378a565b9050919050565b60006020820190508181036000830152613ac9816137ad565b9050919050565b60006020820190508181036000830152613ae9816137d0565b9050919050565b60006020820190508181036000830152613b0981613816565b9050919050565b60006020820190508181036000830152613b2981613839565b9050919050565b60006020820190508181036000830152613b498161385c565b9050919050565b60006020820190508181036000830152613b698161387f565b9050919050565b6000606082019050613b8560008301846138c5565b92915050565b6000602082019050613ba06000830184613907565b92915050565b6000613bb0613bc1565b9050613bbc8282613e8b565b919050565b6000604051905090565b600067ffffffffffffffff821115613be657613be5614016565b5b613bef82614063565b9050602081019050919050565b600067ffffffffffffffff821115613c1757613c16614016565b5b613c2082614063565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7b82613df9565b9150613c8683613df9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cbb57613cba613f5a565b5b828201905092915050565b6000613cd182613df9565b9150613cdc83613df9565b925082613cec57613ceb613f89565b5b828204905092915050565b6000613d0282613df9565b9150613d0d83613df9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4657613d45613f5a565b5b828202905092915050565b6000613d5c82613df9565b9150613d6783613df9565b925082821015613d7a57613d79613f5a565b5b828203905092915050565b6000613d9082613dd9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613e44578082015181840152602081019050613e29565b83811115613e53576000848401525b50505050565b60006002820490506001821680613e7157607f821691505b60208210811415613e8557613e84613fb8565b5b50919050565b613e9482614063565b810181811067ffffffffffffffff82111715613eb357613eb2614016565b5b80604052505050565b6000613ec782613df9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613efa57613ef9613f5a565b5b600182019050919050565b6000613f1082613f17565b9050919050565b6000613f2282614074565b9050919050565b6000613f3482613df9565b9150613f3f83613df9565b925082613f4f57613f4e613f89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54686973207472616e73616374696f6e20776f756c6420657863656564206d6160008201527f7820737570706c792e0000000000000000000000000000000000000000000000602082015250565b7f436f756e742063616e206e6f7420626520300000000000000000000000000000600082015250565b7f4e6f20657468657220746f207769746864726177000000000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45746865722076616c756520697320746f6f206c6f7700000000000000000000600082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b7f596f752063616e206f6e6c79206d696e74200000000000000000000000000000600082015250565b6142bf81613d85565b81146142ca57600080fd5b50565b6142d681613d97565b81146142e157600080fd5b50565b6142ed81613da3565b81146142f857600080fd5b50565b61430481613dad565b811461430f57600080fd5b50565b61431b81613df9565b811461432657600080fd5b5056fea26469706673582212202404125b69efdd287b163e0323118cfa149b64f087627de73fcf0a596703e22f64736f6c63430008070033

Deployed Bytecode Sourcemap

47141:3961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47454:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24411:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27524:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29027:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28590:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47273:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23660:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47493:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50052:75;;;;;;;;;;;;;:::i;:::-;;29892:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50299:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50728:332;;;;;;;;;;;;;:::i;:::-;;30133:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47358:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47538:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50135:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27332:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50407:57;;;;;;;;;;;;;:::i;:::-;;47396:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24780:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43890:103;;;;;;;;;;;;;:::i;:::-;;47424:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43239:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47225:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50579:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27693:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29303:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48673:910;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30389:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50215:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49700:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47320:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50472:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29661:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44148:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47660:1005;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47454:32;;;;:::o;24411:305::-;24513:4;24565:25;24550:40;;;:11;:40;;;;:105;;;;24622:33;24607:48;;;:11;:48;;;;24550:105;:158;;;;24672:36;24696:11;24672:23;:36::i;:::-;24550:158;24530:178;;24411:305;;;:::o;27524:100::-;27578:13;27611:5;27604:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27524:100;:::o;29027:204::-;29095:7;29120:16;29128:7;29120;:16::i;:::-;29115:64;;29145:34;;;;;;;;;;;;;;29115:64;29199:15;:24;29215:7;29199:24;;;;;;;;;;;;;;;;;;;;;29192:31;;29027:204;;;:::o;28590:371::-;28663:13;28679:24;28695:7;28679:15;:24::i;:::-;28663:40;;28724:5;28718:11;;:2;:11;;;28714:48;;;28738:24;;;;;;;;;;;;;;28714:48;28795:5;28779:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28805:37;28822:5;28829:12;:10;:12::i;:::-;28805:16;:37::i;:::-;28804:38;28779:63;28775:138;;;28866:35;;;;;;;;;;;;;;28775:138;28925:28;28934:2;28938:7;28947:5;28925:8;:28::i;:::-;28652:309;28590:371;;:::o;47273:40::-;;;;:::o;23660:303::-;23704:7;23929:15;:13;:15::i;:::-;23914:12;;23898:13;;:28;:46;23891:53;;23660:303;:::o;47493:38::-;;;;;;;;;;;;;:::o;50052:75::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50120:4:::1;50099:18;;:25;;;;;;;;;;;;;;;;;;50052:75::o:0;29892:170::-;30026:28;30036:4;30042:2;30046:7;30026:9;:28::i;:::-;29892:170;;;:::o;50299:102::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50388:10:::1;50368:17;:30;;;;50299:102:::0;:::o;50728:332::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50778:15:::1;50796:21;50778:39;;50848:1;50838:7;:11;50830:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50897:42;50889:60;;:76;50962:2;50958:3;50950:7;:11;;;;:::i;:::-;:14;;;;:::i;:::-;50889:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50984:42;50976:60;;:76;51049:2;51045:3;51037:7;:11;;;;:::i;:::-;:14;;;;:::i;:::-;50976:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50767:293;50728:332::o:0;30133:185::-;30271:39;30288:4;30294:2;30298:7;30271:39;;;;;;;;;;;;:16;:39::i;:::-;30133:185;;;:::o;47358:31::-;;;;:::o;47538:30::-;;;;;;;;;;;;;:::o;50135:74::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50203:3:::1;50193:7;:13;;;;;;;;;;;;:::i;:::-;;50135:74:::0;:::o;27332:125::-;27396:7;27423:21;27436:7;27423:12;:21::i;:::-;:26;;;27416:33;;27332:125;;;:::o;50407:57::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50457:4:::1;50444:10;;:17;;;;;;;;;;;;;;;;;;50407:57::o:0;47396:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24780:206::-;24844:7;24885:1;24868:19;;:5;:19;;;24864:60;;;24896:28;;;;;;;;;;;;;;24864:60;24950:12;:19;24963:5;24950:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24942:36;;24935:43;;24780:206;;;:::o;43890:103::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43955:30:::1;43982:1;43955:18;:30::i;:::-;43890:103::o:0;47424:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43239:87::-;43285:7;43312:6;;;;;;;;;;;43305:13;;43239:87;:::o;47225:41::-;;;;:::o;50579:141::-;50645:21;;:::i;:::-;50691;50704:7;50691:12;:21::i;:::-;50684:28;;50579:141;;;:::o;27693:104::-;27749:13;27782:7;27775:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27693:104;:::o;29303:287::-;29414:12;:10;:12::i;:::-;29402:24;;:8;:24;;;29398:54;;;29435:17;;;;;;;;;;;;;;29398:54;29510:8;29465:18;:32;29484:12;:10;:12::i;:::-;29465:32;;;;;;;;;;;;;;;:42;29498:8;29465:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29563:8;29534:48;;29549:12;:10;:12::i;:::-;29534:48;;;29573:8;29534:48;;;;;;:::i;:::-;;;;;;;;29303:287;;:::o;48673:910::-;48738:14;48755:13;:11;:13::i;:::-;48738:30;;48779:18;48800:24;48813:10;48800:12;:24::i;:::-;48779:45;;48845:18;;;;;;;;;;;48837:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48936:1;48926:7;:11;48918:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49011:12;;49000:7;:23;;49075;:12;;:21;:23::i;:::-;49036:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;48992:109;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;49144:12;;49133:7;49120:10;:20;;;;:::i;:::-;:36;;49205:23;:12;;:21;:23::i;:::-;49166:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;49112:119;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;49264:12;;49250:10;:26;;49325:23;:12;;:21;:23::i;:::-;49286:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;49242:109;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;49390:9;;49379:7;49370:6;:16;;;;:::i;:::-;:29;;49362:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;49494:7;49480:11;;:21;;;;:::i;:::-;49467:9;:34;;49459:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49545:30;49555:10;49567:7;49545:9;:30::i;:::-;48727:856;;48673:910;:::o;30389:369::-;30556:28;30566:4;30572:2;30576:7;30556:9;:28::i;:::-;30599:15;:2;:13;;;:15::i;:::-;:76;;;;;30619:56;30650:4;30656:2;30660:7;30669:5;30619:30;:56::i;:::-;30618:57;30599:76;30595:156;;;30699:40;;;;;;;;;;;;;;30595:156;30389:369;;;;:::o;50215:78::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50287:3:::1;50275:9;:15;;;;;;;;;;;;:::i;:::-;;50215:78:::0;:::o;49700:344::-;49765:13;49796:10;;;;;;;;;;;49791:38;;49817:9;49810:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49791:38;49849:16;49857:7;49849;:16::i;:::-;49841:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49962:1;49943:7;49937:21;;;;;:::i;:::-;;;:26;;:99;;;;;;;;;;;;;;;;;49990:10;:8;:10::i;:::-;50002:18;:7;:16;:18::i;:::-;49973:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49937:99;49930:106;;49700:344;;;;:::o;47320:31::-;;;;:::o;50472:99::-;50530:7;50548:20;50562:5;50548:13;:20::i;:::-;50541:27;;50472:99;;;:::o;29661:164::-;29758:4;29782:18;:25;29801:5;29782:25;;;;;;;;;;;;;;;:35;29808:8;29782:35;;;;;;;;;;;;;;;;;;;;;;;;;29775:42;;29661:164;;;;:::o;44148:201::-;43470:12;:10;:12::i;:::-;43459:23;;:7;:5;:7::i;:::-;:23;;;43451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44257:1:::1;44237:22;;:8;:22;;;;44229:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44313:28;44332:8;44313:18;:28::i;:::-;44148:201:::0;:::o;47660:1005::-;47750:14;47767:13;:11;:13::i;:::-;47750:30;;47791:18;47812:24;47825:10;47812:12;:24::i;:::-;47791:45;;47867:1;47857:7;:11;47849:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47939:12;;47928:7;:23;;48003;:12;;:21;:23::i;:::-;47964:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;47920:109;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;48072:12;;48061:7;48048:10;:20;;;;:::i;:::-;:36;;48133:23;:12;;:21;:23::i;:::-;48094:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;48040:119;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;48192:12;;48178:10;:26;;48253:23;:12;;:21;:23::i;:::-;48214:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;48170:109;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;48318:9;;48307:7;48298:6;:16;;;;:::i;:::-;:29;;48290:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;48420:7;48405:12;;:22;;;;:::i;:::-;48392:9;:35;;48384:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48468:12;48510:10;48493:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48483:39;;;;;;48468:54;;48541:52;48560:7;;48541:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48569:17;;48588:4;48541:18;:52::i;:::-;48533:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48627:30;48637:10;48649:7;48627:9;:30::i;:::-;47739:926;;;47660:1005;;;:::o;8789:326::-;8849:4;9106:1;9084:7;:19;;;:23;9077:30;;8789:326;;;:::o;19969:157::-;20054:4;20093:25;20078:40;;;:11;:40;;;;20071:47;;19969:157;;;:::o;31013:187::-;31070:4;31113:7;31094:15;:13;:15::i;:::-;:26;;:53;;;;;31134:13;;31124:7;:23;31094:53;:98;;;;;31165:11;:20;31177:7;31165:20;;;;;;;;;;;:27;;;;;;;;;;;;31164:28;31094:98;31087:105;;31013:187;;;:::o;16748:98::-;16801:7;16828:10;16821:17;;16748:98;:::o;39183:196::-;39325:2;39298:15;:24;39314:7;39298:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39363:7;39359:2;39343:28;;39352:5;39343:28;;;;;;;;;;;;39183:196;;;:::o;23434:92::-;23490:7;23434:92;:::o;34126:2130::-;34241:35;34279:21;34292:7;34279:12;:21::i;:::-;34241:59;;34339:4;34317:26;;:13;:18;;;:26;;;34313:67;;34352:28;;;;;;;;;;;;;;34313:67;34393:22;34435:4;34419:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34456:36;34473:4;34479:12;:10;:12::i;:::-;34456:16;:36::i;:::-;34419:73;:126;;;;34533:12;:10;:12::i;:::-;34509:36;;:20;34521:7;34509:11;:20::i;:::-;:36;;;34419:126;34393:153;;34564:17;34559:66;;34590:35;;;;;;;;;;;;;;34559:66;34654:1;34640:16;;:2;:16;;;34636:52;;;34665:23;;;;;;;;;;;;;;34636:52;34701:43;34723:4;34729:2;34733:7;34742:1;34701:21;:43::i;:::-;34809:35;34826:1;34830:7;34839:4;34809:8;:35::i;:::-;35170:1;35140:12;:18;35153:4;35140:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35214:1;35186:12;:16;35199:2;35186:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35232:31;35266:11;:20;35278:7;35266:20;;;;;;;;;;;35232:54;;35317:2;35301:8;:13;;;:18;;;;;;;;;;;;;;;;;;35367:15;35334:8;:23;;;:49;;;;;;;;;;;;;;;;;;35635:19;35667:1;35657:7;:11;35635:33;;35683:31;35717:11;:24;35729:11;35717:24;;;;;;;;;;;35683:58;;35785:1;35760:27;;:8;:13;;;;;;;;;;;;:27;;;35756:384;;;35970:13;;35955:11;:28;35951:174;;36024:4;36008:8;:13;;;:20;;;;;;;;;;;;;;;;;;36077:13;:28;;;36051:8;:23;;;:54;;;;;;;;;;;;;;;;;;35951:174;35756:384;35115:1036;;;36187:7;36183:2;36168:27;;36177:4;36168:27;;;;;;;;;;;;36206:42;36227:4;36233:2;36237:7;36246:1;36206:20;:42::i;:::-;34230:2026;;34126:2130;;;:::o;26161:1109::-;26223:21;;:::i;:::-;26257:12;26272:7;26257:22;;26340:4;26321:15;:13;:15::i;:::-;:23;;:47;;;;;26355:13;;26348:4;:20;26321:47;26317:886;;;26389:31;26423:11;:17;26435:4;26423:17;;;;;;;;;;;26389:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26464:9;:16;;;26459:729;;26535:1;26509:28;;:9;:14;;;:28;;;26505:101;;26573:9;26566:16;;;;;;26505:101;26908:261;26915:4;26908:261;;;26948:6;;;;;;;;26993:11;:17;27005:4;26993:17;;;;;;;;;;;26981:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27067:1;27041:28;;:9;:14;;;:28;;;27037:109;;27109:9;27102:16;;;;;;27037:109;26908:261;;;26459:729;26370:833;26317:886;27231:31;;;;;;;;;;;;;;26161:1109;;;;:::o;44509:191::-;44583:16;44602:6;;;;;;;;;;;44583:25;;44628:8;44619:6;;:17;;;;;;;;;;;;;;;;;;44683:8;44652:40;;44673:8;44652:40;;;;;;;;;;;;44572:128;44509:191;:::o;17337:723::-;17393:13;17623:1;17614:5;:10;17610:53;;;17641:10;;;;;;;;;;;;;;;;;;;;;17610:53;17673:12;17688:5;17673:20;;17704:14;17729:78;17744:1;17736:4;:9;17729:78;;17762:8;;;;;:::i;:::-;;;;17793:2;17785:10;;;;;:::i;:::-;;;17729:78;;;17817:19;17849:6;17839:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17817:39;;17867:154;17883:1;17874:5;:10;17867:154;;17911:1;17901:11;;;;;:::i;:::-;;;17978:2;17970:5;:10;;;;:::i;:::-;17957:2;:24;;;;:::i;:::-;17944:39;;17927:6;17934;17927:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18007:2;17998:11;;;;;:::i;:::-;;;17867:154;;;18045:6;18031:21;;;;;17337:723;;;;:::o;31208:104::-;31277:27;31287:2;31291:8;31277:27;;;;;;;;;;;;:9;:27::i;:::-;31208:104;;:::o;39871:667::-;40034:4;40071:2;40055:36;;;40092:12;:10;:12::i;:::-;40106:4;40112:7;40121:5;40055:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40051:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40306:1;40289:6;:13;:18;40285:235;;;40335:40;;;;;;;;;;;;;;40285:235;40478:6;40472:13;40463:6;40459:2;40455:15;40448:38;40051:480;40184:45;;;40174:55;;;:6;:55;;;;40167:62;;;39871:667;;;;;;:::o;49593:94::-;49653:13;49677:7;49670:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49593:94;:::o;25068:137::-;25129:7;25164:12;:19;25177:5;25164:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;25156:41;;25149:48;;25068:137;;;:::o;45640:190::-;45765:4;45818;45789:25;45802:5;45809:4;45789:12;:25::i;:::-;:33;45782:40;;45640:190;;;;;:::o;41186:159::-;;;;;:::o;42004:158::-;;;;;:::o;31675:163::-;31798:32;31804:2;31808:8;31818:5;31825:4;31798:5;:32::i;:::-;31675:163;;;:::o;46192:675::-;46275:7;46295:20;46318:4;46295:27;;46338:9;46333:497;46357:5;:12;46353:1;:16;46333:497;;;46391:20;46414:5;46420:1;46414:8;;;;;;;;:::i;:::-;;;;;;;;46391:31;;46457:12;46441;:28;46437:382;;46584:42;46599:12;46613;46584:14;:42::i;:::-;46569:57;;46437:382;;;46761:42;46776:12;46790;46761:14;:42::i;:::-;46746:57;;46437:382;46376:454;46371:3;;;;;:::i;:::-;;;;46333:497;;;;46847:12;46840:19;;;46192:675;;;;:::o;32097:1775::-;32236:20;32259:13;;32236:36;;32301:1;32287:16;;:2;:16;;;32283:48;;;32312:19;;;;;;;;;;;;;;32283:48;32358:1;32346:8;:13;32342:44;;;32368:18;;;;;;;;;;;;;;32342:44;32399:61;32429:1;32433:2;32437:12;32451:8;32399:21;:61::i;:::-;32772:8;32737:12;:16;32750:2;32737:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32836:8;32796:12;:16;32809:2;32796:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32895:2;32862:11;:25;32874:12;32862:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32962:15;32912:11;:25;32924:12;32912:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32995:20;33018:12;32995:35;;33045:11;33074:8;33059:12;:23;33045:37;;33103:4;:23;;;;;33111:15;:2;:13;;;:15::i;:::-;33103:23;33099:641;;;33147:314;33203:12;33199:2;33178:38;;33195:1;33178:38;;;;;;;;;;;;33244:69;33283:1;33287:2;33291:14;;;;;;33307:5;33244:30;:69::i;:::-;33239:174;;33349:40;;;;;;;;;;;;;;33239:174;33456:3;33440:12;:19;;33147:314;;33542:12;33525:13;;:29;33521:43;;33556:8;;;33521:43;33099:641;;;33605:120;33661:14;;;;;;33657:2;33636:40;;33653:1;33636:40;;;;;;;;;;;;33720:3;33704:12;:19;;33605:120;;33099:641;33770:12;33754:13;:28;;;;32712:1082;;33804:60;33833:1;33837:2;33841:12;33855:8;33804:20;:60::i;:::-;32225:1647;32097:1775;;;;:::o;46875:224::-;46943:13;47006:1;47000:4;46993:15;47035:1;47029:4;47022:15;47076:4;47070;47060:21;47051:30;;46875:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:704::-;6451:6;6459;6467;6516:2;6504:9;6495:7;6491:23;6487:32;6484:119;;;6522:79;;:::i;:::-;6484:119;6670:1;6659:9;6655:17;6642:31;6700:18;6692:6;6689:30;6686:117;;;6722:79;;:::i;:::-;6686:117;6835:80;6907:7;6898:6;6887:9;6883:22;6835:80;:::i;:::-;6817:98;;;;6613:312;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6356:704;;;;;:::o;7066:329::-;7125:6;7174:2;7162:9;7153:7;7149:23;7145:32;7142:119;;;7180:79;;:::i;:::-;7142:119;7300:1;7325:53;7370:7;7361:6;7350:9;7346:22;7325:53;:::i;:::-;7315:63;;7271:117;7066:329;;;;:::o;7401:327::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7634:1;7659:52;7703:7;7694:6;7683:9;7679:22;7659:52;:::i;:::-;7649:62;;7605:116;7401:327;;;;:::o;7734:349::-;7803:6;7852:2;7840:9;7831:7;7827:23;7823:32;7820:119;;;7858:79;;:::i;:::-;7820:119;7978:1;8003:63;8058:7;8049:6;8038:9;8034:22;8003:63;:::i;:::-;7993:73;;7949:127;7734:349;;;;:::o;8089:509::-;8158:6;8207:2;8195:9;8186:7;8182:23;8178:32;8175:119;;;8213:79;;:::i;:::-;8175:119;8361:1;8350:9;8346:17;8333:31;8391:18;8383:6;8380:30;8377:117;;;8413:79;;:::i;:::-;8377:117;8518:63;8573:7;8564:6;8553:9;8549:22;8518:63;:::i;:::-;8508:73;;8304:287;8089:509;;;;:::o;8604:329::-;8663:6;8712:2;8700:9;8691:7;8687:23;8683:32;8680:119;;;8718:79;;:::i;:::-;8680:119;8838:1;8863:53;8908:7;8899:6;8888:9;8884:22;8863:53;:::i;:::-;8853:63;;8809:117;8604:329;;;;:::o;8939:108::-;9016:24;9034:5;9016:24;:::i;:::-;9011:3;9004:37;8939:108;;:::o;9053:118::-;9140:24;9158:5;9140:24;:::i;:::-;9135:3;9128:37;9053:118;;:::o;9177:157::-;9282:45;9302:24;9320:5;9302:24;:::i;:::-;9282:45;:::i;:::-;9277:3;9270:58;9177:157;;:::o;9340:99::-;9411:21;9426:5;9411:21;:::i;:::-;9406:3;9399:34;9340:99;;:::o;9445:109::-;9526:21;9541:5;9526:21;:::i;:::-;9521:3;9514:34;9445:109;;:::o;9560:118::-;9647:24;9665:5;9647:24;:::i;:::-;9642:3;9635:37;9560:118;;:::o;9684:360::-;9770:3;9798:38;9830:5;9798:38;:::i;:::-;9852:70;9915:6;9910:3;9852:70;:::i;:::-;9845:77;;9931:52;9976:6;9971:3;9964:4;9957:5;9953:16;9931:52;:::i;:::-;10008:29;10030:6;10008:29;:::i;:::-;10003:3;9999:39;9992:46;;9774:270;9684:360;;;;:::o;10050:364::-;10138:3;10166:39;10199:5;10166:39;:::i;:::-;10221:71;10285:6;10280:3;10221:71;:::i;:::-;10214:78;;10301:52;10346:6;10341:3;10334:4;10327:5;10323:16;10301:52;:::i;:::-;10378:29;10400:6;10378:29;:::i;:::-;10373:3;10369:39;10362:46;;10142:272;10050:364;;;;:::o;10420:377::-;10526:3;10554:39;10587:5;10554:39;:::i;:::-;10609:89;10691:6;10686:3;10609:89;:::i;:::-;10602:96;;10707:52;10752:6;10747:3;10740:4;10733:5;10729:16;10707:52;:::i;:::-;10784:6;10779:3;10775:16;10768:23;;10530:267;10420:377;;;;:::o;10803:366::-;10945:3;10966:67;11030:2;11025:3;10966:67;:::i;:::-;10959:74;;11042:93;11131:3;11042:93;:::i;:::-;11160:2;11155:3;11151:12;11144:19;;10803:366;;;:::o;11175:::-;11317:3;11338:67;11402:2;11397:3;11338:67;:::i;:::-;11331:74;;11414:93;11503:3;11414:93;:::i;:::-;11532:2;11527:3;11523:12;11516:19;;11175:366;;;:::o;11547:::-;11689:3;11710:67;11774:2;11769:3;11710:67;:::i;:::-;11703:74;;11786:93;11875:3;11786:93;:::i;:::-;11904:2;11899:3;11895:12;11888:19;;11547:366;;;:::o;11919:::-;12061:3;12082:67;12146:2;12141:3;12082:67;:::i;:::-;12075:74;;12158:93;12247:3;12158:93;:::i;:::-;12276:2;12271:3;12267:12;12260:19;;11919:366;;;:::o;12291:::-;12433:3;12454:67;12518:2;12513:3;12454:67;:::i;:::-;12447:74;;12530:93;12619:3;12530:93;:::i;:::-;12648:2;12643:3;12639:12;12632:19;;12291:366;;;:::o;12663:400::-;12823:3;12844:84;12926:1;12921:3;12844:84;:::i;:::-;12837:91;;12937:93;13026:3;12937:93;:::i;:::-;13055:1;13050:3;13046:11;13039:18;;12663:400;;;:::o;13069:366::-;13211:3;13232:67;13296:2;13291:3;13232:67;:::i;:::-;13225:74;;13308:93;13397:3;13308:93;:::i;:::-;13426:2;13421:3;13417:12;13410:19;;13069:366;;;:::o;13441:::-;13583:3;13604:67;13668:2;13663:3;13604:67;:::i;:::-;13597:74;;13680:93;13769:3;13680:93;:::i;:::-;13798:2;13793:3;13789:12;13782:19;;13441:366;;;:::o;13813:::-;13955:3;13976:67;14040:2;14035:3;13976:67;:::i;:::-;13969:74;;14052:93;14141:3;14052:93;:::i;:::-;14170:2;14165:3;14161:12;14154:19;;13813:366;;;:::o;14185:::-;14327:3;14348:67;14412:2;14407:3;14348:67;:::i;:::-;14341:74;;14424:93;14513:3;14424:93;:::i;:::-;14542:2;14537:3;14533:12;14526:19;;14185:366;;;:::o;14557:402::-;14717:3;14738:85;14820:2;14815:3;14738:85;:::i;:::-;14731:92;;14832:93;14921:3;14832:93;:::i;:::-;14950:2;14945:3;14941:12;14934:19;;14557:402;;;:::o;15035:697::-;15194:4;15189:3;15185:14;15281:4;15274:5;15270:16;15264:23;15300:63;15357:4;15352:3;15348:14;15334:12;15300:63;:::i;:::-;15209:164;15465:4;15458:5;15454:16;15448:23;15484:61;15539:4;15534:3;15530:14;15516:12;15484:61;:::i;:::-;15383:172;15639:4;15632:5;15628:16;15622:23;15658:57;15709:4;15704:3;15700:14;15686:12;15658:57;:::i;:::-;15565:160;15163:569;15035:697;;:::o;15738:118::-;15825:24;15843:5;15825:24;:::i;:::-;15820:3;15813:37;15738:118;;:::o;15862:105::-;15937:23;15954:5;15937:23;:::i;:::-;15932:3;15925:36;15862:105;;:::o;15973:256::-;16085:3;16100:75;16171:3;16162:6;16100:75;:::i;:::-;16200:2;16195:3;16191:12;16184:19;;16220:3;16213:10;;15973:256;;;;:::o;16235:701::-;16516:3;16538:95;16629:3;16620:6;16538:95;:::i;:::-;16531:102;;16650:95;16741:3;16732:6;16650:95;:::i;:::-;16643:102;;16762:148;16906:3;16762:148;:::i;:::-;16755:155;;16927:3;16920:10;;16235:701;;;;;:::o;16942:541::-;17175:3;17197:148;17341:3;17197:148;:::i;:::-;17190:155;;17362:95;17453:3;17444:6;17362:95;:::i;:::-;17355:102;;17474:3;17467:10;;16942:541;;;;:::o;17489:222::-;17582:4;17620:2;17609:9;17605:18;17597:26;;17633:71;17701:1;17690:9;17686:17;17677:6;17633:71;:::i;:::-;17489:222;;;;:::o;17717:640::-;17912:4;17950:3;17939:9;17935:19;17927:27;;17964:71;18032:1;18021:9;18017:17;18008:6;17964:71;:::i;:::-;18045:72;18113:2;18102:9;18098:18;18089:6;18045:72;:::i;:::-;18127;18195:2;18184:9;18180:18;18171:6;18127:72;:::i;:::-;18246:9;18240:4;18236:20;18231:2;18220:9;18216:18;18209:48;18274:76;18345:4;18336:6;18274:76;:::i;:::-;18266:84;;17717:640;;;;;;;:::o;18363:210::-;18450:4;18488:2;18477:9;18473:18;18465:26;;18501:65;18563:1;18552:9;18548:17;18539:6;18501:65;:::i;:::-;18363:210;;;;:::o;18579:222::-;18672:4;18710:2;18699:9;18695:18;18687:26;;18723:71;18791:1;18780:9;18776:17;18767:6;18723:71;:::i;:::-;18579:222;;;;:::o;18807:313::-;18920:4;18958:2;18947:9;18943:18;18935:26;;19007:9;19001:4;18997:20;18993:1;18982:9;18978:17;18971:47;19035:78;19108:4;19099:6;19035:78;:::i;:::-;19027:86;;18807:313;;;;:::o;19126:419::-;19292:4;19330:2;19319:9;19315:18;19307:26;;19379:9;19373:4;19369:20;19365:1;19354:9;19350:17;19343:47;19407:131;19533:4;19407:131;:::i;:::-;19399:139;;19126:419;;;:::o;19551:::-;19717:4;19755:2;19744:9;19740:18;19732:26;;19804:9;19798:4;19794:20;19790:1;19779:9;19775:17;19768:47;19832:131;19958:4;19832:131;:::i;:::-;19824:139;;19551:419;;;:::o;19976:::-;20142:4;20180:2;20169:9;20165:18;20157:26;;20229:9;20223:4;20219:20;20215:1;20204:9;20200:17;20193:47;20257:131;20383:4;20257:131;:::i;:::-;20249:139;;19976:419;;;:::o;20401:::-;20567:4;20605:2;20594:9;20590:18;20582:26;;20654:9;20648:4;20644:20;20640:1;20629:9;20625:17;20618:47;20682:131;20808:4;20682:131;:::i;:::-;20674:139;;20401:419;;;:::o;20826:::-;20992:4;21030:2;21019:9;21015:18;21007:26;;21079:9;21073:4;21069:20;21065:1;21054:9;21050:17;21043:47;21107:131;21233:4;21107:131;:::i;:::-;21099:139;;20826:419;;;:::o;21251:::-;21417:4;21455:2;21444:9;21440:18;21432:26;;21504:9;21498:4;21494:20;21490:1;21479:9;21475:17;21468:47;21532:131;21658:4;21532:131;:::i;:::-;21524:139;;21251:419;;;:::o;21676:::-;21842:4;21880:2;21869:9;21865:18;21857:26;;21929:9;21923:4;21919:20;21915:1;21904:9;21900:17;21893:47;21957:131;22083:4;21957:131;:::i;:::-;21949:139;;21676:419;;;:::o;22101:::-;22267:4;22305:2;22294:9;22290:18;22282:26;;22354:9;22348:4;22344:20;22340:1;22329:9;22325:17;22318:47;22382:131;22508:4;22382:131;:::i;:::-;22374:139;;22101:419;;;:::o;22526:::-;22692:4;22730:2;22719:9;22715:18;22707:26;;22779:9;22773:4;22769:20;22765:1;22754:9;22750:17;22743:47;22807:131;22933:4;22807:131;:::i;:::-;22799:139;;22526:419;;;:::o;22951:346::-;23106:4;23144:2;23133:9;23129:18;23121:26;;23157:133;23287:1;23276:9;23272:17;23263:6;23157:133;:::i;:::-;22951:346;;;;:::o;23303:222::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23447:71;23515:1;23504:9;23500:17;23491:6;23447:71;:::i;:::-;23303:222;;;;:::o;23531:129::-;23565:6;23592:20;;:::i;:::-;23582:30;;23621:33;23649:4;23641:6;23621:33;:::i;:::-;23531:129;;;:::o;23666:75::-;23699:6;23732:2;23726:9;23716:19;;23666:75;:::o;23747:307::-;23808:4;23898:18;23890:6;23887:30;23884:56;;;23920:18;;:::i;:::-;23884:56;23958:29;23980:6;23958:29;:::i;:::-;23950:37;;24042:4;24036;24032:15;24024:23;;23747:307;;;:::o;24060:308::-;24122:4;24212:18;24204:6;24201:30;24198:56;;;24234:18;;:::i;:::-;24198:56;24272:29;24294:6;24272:29;:::i;:::-;24264:37;;24356:4;24350;24346:15;24338:23;;24060:308;;;:::o;24374:98::-;24425:6;24459:5;24453:12;24443:22;;24374:98;;;:::o;24478:99::-;24530:6;24564:5;24558:12;24548:22;;24478:99;;;:::o;24583:168::-;24666:11;24700:6;24695:3;24688:19;24740:4;24735:3;24731:14;24716:29;;24583:168;;;;:::o;24757:169::-;24841:11;24875:6;24870:3;24863:19;24915:4;24910:3;24906:14;24891:29;;24757:169;;;;:::o;24932:148::-;25034:11;25071:3;25056:18;;24932:148;;;;:::o;25086:305::-;25126:3;25145:20;25163:1;25145:20;:::i;:::-;25140:25;;25179:20;25197:1;25179:20;:::i;:::-;25174:25;;25333:1;25265:66;25261:74;25258:1;25255:81;25252:107;;;25339:18;;:::i;:::-;25252:107;25383:1;25380;25376:9;25369:16;;25086:305;;;;:::o;25397:185::-;25437:1;25454:20;25472:1;25454:20;:::i;:::-;25449:25;;25488:20;25506:1;25488:20;:::i;:::-;25483:25;;25527:1;25517:35;;25532:18;;:::i;:::-;25517:35;25574:1;25571;25567:9;25562:14;;25397:185;;;;:::o;25588:348::-;25628:7;25651:20;25669:1;25651:20;:::i;:::-;25646:25;;25685:20;25703:1;25685:20;:::i;:::-;25680:25;;25873:1;25805:66;25801:74;25798:1;25795:81;25790:1;25783:9;25776:17;25772:105;25769:131;;;25880:18;;:::i;:::-;25769:131;25928:1;25925;25921:9;25910:20;;25588:348;;;;:::o;25942:191::-;25982:4;26002:20;26020:1;26002:20;:::i;:::-;25997:25;;26036:20;26054:1;26036:20;:::i;:::-;26031:25;;26075:1;26072;26069:8;26066:34;;;26080:18;;:::i;:::-;26066:34;26125:1;26122;26118:9;26110:17;;25942:191;;;;:::o;26139:96::-;26176:7;26205:24;26223:5;26205:24;:::i;:::-;26194:35;;26139:96;;;:::o;26241:90::-;26275:7;26318:5;26311:13;26304:21;26293:32;;26241:90;;;:::o;26337:77::-;26374:7;26403:5;26392:16;;26337:77;;;:::o;26420:149::-;26456:7;26496:66;26489:5;26485:78;26474:89;;26420:149;;;:::o;26575:126::-;26612:7;26652:42;26645:5;26641:54;26630:65;;26575:126;;;:::o;26707:77::-;26744:7;26773:5;26762:16;;26707:77;;;:::o;26790:101::-;26826:7;26866:18;26859:5;26855:30;26844:41;;26790:101;;;:::o;26897:154::-;26981:6;26976:3;26971;26958:30;27043:1;27034:6;27029:3;27025:16;27018:27;26897:154;;;:::o;27057:307::-;27125:1;27135:113;27149:6;27146:1;27143:13;27135:113;;;27234:1;27229:3;27225:11;27219:18;27215:1;27210:3;27206:11;27199:39;27171:2;27168:1;27164:10;27159:15;;27135:113;;;27266:6;27263:1;27260:13;27257:101;;;27346:1;27337:6;27332:3;27328:16;27321:27;27257:101;27106:258;27057:307;;;:::o;27370:320::-;27414:6;27451:1;27445:4;27441:12;27431:22;;27498:1;27492:4;27488:12;27519:18;27509:81;;27575:4;27567:6;27563:17;27553:27;;27509:81;27637:2;27629:6;27626:14;27606:18;27603:38;27600:84;;;27656:18;;:::i;:::-;27600:84;27421:269;27370:320;;;:::o;27696:281::-;27779:27;27801:4;27779:27;:::i;:::-;27771:6;27767:40;27909:6;27897:10;27894:22;27873:18;27861:10;27858:34;27855:62;27852:88;;;27920:18;;:::i;:::-;27852:88;27960:10;27956:2;27949:22;27739:238;27696:281;;:::o;27983:233::-;28022:3;28045:24;28063:5;28045:24;:::i;:::-;28036:33;;28091:66;28084:5;28081:77;28078:103;;;28161:18;;:::i;:::-;28078:103;28208:1;28201:5;28197:13;28190:20;;27983:233;;;:::o;28222:100::-;28261:7;28290:26;28310:5;28290:26;:::i;:::-;28279:37;;28222:100;;;:::o;28328:94::-;28367:7;28396:20;28410:5;28396:20;:::i;:::-;28385:31;;28328:94;;;:::o;28428:176::-;28460:1;28477:20;28495:1;28477:20;:::i;:::-;28472:25;;28511:20;28529:1;28511:20;:::i;:::-;28506:25;;28550:1;28540:35;;28555:18;;:::i;:::-;28540:35;28596:1;28593;28589:9;28584:14;;28428:176;;;;:::o;28610:180::-;28658:77;28655:1;28648:88;28755:4;28752:1;28745:15;28779:4;28776:1;28769:15;28796:180;28844:77;28841:1;28834:88;28941:4;28938:1;28931:15;28965:4;28962:1;28955:15;28982:180;29030:77;29027:1;29020:88;29127:4;29124:1;29117:15;29151:4;29148:1;29141:15;29168:180;29216:77;29213:1;29206:88;29313:4;29310:1;29303:15;29337:4;29334:1;29327:15;29354:180;29402:77;29399:1;29392:88;29499:4;29496:1;29489:15;29523:4;29520:1;29513:15;29540:117;29649:1;29646;29639:12;29663:117;29772:1;29769;29762:12;29786:117;29895:1;29892;29885:12;29909:117;30018:1;30015;30008:12;30032:117;30141:1;30138;30131:12;30155:117;30264:1;30261;30254:12;30278:102;30319:6;30370:2;30366:7;30361:2;30354:5;30350:14;30346:28;30336:38;;30278:102;;;:::o;30386:94::-;30419:8;30467:5;30463:2;30459:14;30438:35;;30386:94;;;:::o;30486:225::-;30626:34;30622:1;30614:6;30610:14;30603:58;30695:8;30690:2;30682:6;30678:15;30671:33;30486:225;:::o;30717:228::-;30857:34;30853:1;30845:6;30841:14;30834:58;30926:11;30921:2;30913:6;30909:15;30902:36;30717:228;:::o;30951:168::-;31091:20;31087:1;31079:6;31075:14;31068:44;30951:168;:::o;31125:170::-;31265:22;31261:1;31253:6;31249:14;31242:46;31125:170;:::o;31301:175::-;31441:27;31437:1;31429:6;31425:14;31418:51;31301:175;:::o;31482:155::-;31622:7;31618:1;31610:6;31606:14;31599:31;31482:155;:::o;31643:182::-;31783:34;31779:1;31771:6;31767:14;31760:58;31643:182;:::o;31831:234::-;31971:34;31967:1;31959:6;31955:14;31948:58;32040:17;32035:2;32027:6;32023:15;32016:42;31831:234;:::o;32071:172::-;32211:24;32207:1;32199:6;32195:14;32188:48;32071:172;:::o;32249:166::-;32389:18;32385:1;32377:6;32373:14;32366:42;32249:166;:::o;32421:168::-;32561:20;32557:1;32549:6;32545:14;32538:44;32421:168;:::o;32595:122::-;32668:24;32686:5;32668:24;:::i;:::-;32661:5;32658:35;32648:63;;32707:1;32704;32697:12;32648:63;32595:122;:::o;32723:116::-;32793:21;32808:5;32793:21;:::i;:::-;32786:5;32783:32;32773:60;;32829:1;32826;32819:12;32773:60;32723:116;:::o;32845:122::-;32918:24;32936:5;32918:24;:::i;:::-;32911:5;32908:35;32898:63;;32957:1;32954;32947:12;32898:63;32845:122;:::o;32973:120::-;33045:23;33062:5;33045:23;:::i;:::-;33038:5;33035:34;33025:62;;33083:1;33080;33073:12;33025:62;32973:120;:::o;33099:122::-;33172:24;33190:5;33172:24;:::i;:::-;33165:5;33162:35;33152:63;;33211:1;33208;33201:12;33152:63;33099:122;:::o

Swarm Source

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