ETH Price: $3,082.49 (+1.10%)
Gas: 3 Gwei

Token

Bulies (BUL)
 

Overview

Max Total Supply

9,380 BUL

Holders

564

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bennywan.eth
Balance
20 BUL
0xc1fc8c404f73432078614256a9cf5829792cc017
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:
Bulies

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity 0.8.10;

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

/**
 * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}


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

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


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

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

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

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

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

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

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

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

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

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

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


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 override 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) if (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) if(!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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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 {}
}

// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


contract Bulies is ERC721A, ERC2981, Ownable, ReentrancyGuard {

    string public baseURI = "https://nftservices.s3.amazonaws.com/bulies/";

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 20;

    uint public defaultTokensPerTx = 3;

    uint256 public MAX_TOKENS = 8888;

    bool public saleIsActive = true;

    bool public whitelistMintIsActive = false;

    uint256 public whitelistMintRemains = 0;

    uint public maxFreePerUser = 1;

    uint public maxWhitelistPerUser = 20;

    uint public maxTokensWithFeePerTx = 1;

    uint public maxTokensFreePerTx = 1;

    uint public percentRequiredFee = 50;

    mapping (address => uint256) addressToUserFreeMinted;
    mapping (address => uint256) addressToUserWhitelistMinted;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    enum SaleMode{
        X_FREE,//1
        X_FEE,//2
        X_LOTTERY//3
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    SaleMode public saleMode = SaleMode.X_LOTTERY;

    constructor(        
    ) ERC721A("Bulies", "BUL") {
        _setDefaultRoyalty(msg.sender, 200);
        _safeMint(msg.sender, 100);
    }


    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint  maxFreePerUser;
        uint  maxTokensWithFeePerTx;
        uint  maxTokensFreePerTx;
        uint  percentRequiredFee ;
        uint256 userMinted;
        uint256 userFreeMinted;
        uint lottery;
        uint saleMode;
        uint defaultTokensPerTx;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return HelperState({
            tokenPrice: tokenPrice,
            maxTokensPerTx: maxTokensPerTx,
            MAX_TOKENS: MAX_TOKENS,
            saleIsActive: saleIsActive,
            totalSupply: uint256(totalSupply()),
            maxFreePerUser : maxFreePerUser,
            maxTokensWithFeePerTx : maxTokensWithFeePerTx,
            maxTokensFreePerTx : maxTokensFreePerTx,
            percentRequiredFee :percentRequiredFee,
            userMinted: uint256(_numberMinted(minter)),
            userFreeMinted : addressToUserFreeMinted[minter],
            lottery : randomLottery(minter),
            saleMode : saleMode == SaleMode.X_FREE ? 1 : (saleMode == SaleMode.X_FEE  ? 2 : saleMode == SaleMode.X_LOTTERY ? 3 : 0),
            defaultTokensPerTx : defaultTokensPerTx
        });
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Request would exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveTokens(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Request would exceed max supply of tokens");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function openWhitelistMint(uint256 _whitelistMintRemains, uint _maxWhitelistPerUser) public onlyOwner{
        whitelistMintIsActive = true;
        whitelistMintRemains = _whitelistMintRemains;
        maxWhitelistPerUser = _maxWhitelistPerUser;
        saleIsActive = true;
    }

    function closeWhitelistMint()public onlyOwner{
        whitelistMintIsActive = false;
        whitelistMintRemains = 0;
    }

    function whitelistMint(uint numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Sale must be active");
        require(numberOfTokens <= maxTokensPerTx, "Purchase would exceed max tokens per tx");
        require(numberOfTokens > 0, "You must mint at least one");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply");
        require(whitelistMintIsActive, "Whitelist mint must be active");
        require(whitelistMintRemains > 0, "No more whitelist tokens");
        require(addressToUserWhitelistMinted[msg.sender] + numberOfTokens <= maxWhitelistPerUser, "Purchase would exceed max free tokens per wallet");
        if(whitelistMintRemains - numberOfTokens <= 0){
            numberOfTokens = whitelistMintRemains;
        }
        _safeMint(msg.sender, numberOfTokens);
        addressToUserWhitelistMinted[msg.sender] = addressToUserWhitelistMinted[msg.sender] + numberOfTokens;
        whitelistMintRemains = whitelistMintRemains - numberOfTokens;
        if(whitelistMintRemains <= 0){
            whitelistMintIsActive = false;
        }
    }

    function mintToken(uint numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Sale must be active");
        require(numberOfTokens <= maxTokensPerTx, "Purchase would exceed max tokens per tx");
        require(numberOfTokens > 0, "You must mint at least one");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply");

        uint256 price = 0;
        uint numberFreeTokens = 0;
        if ( maxFreePerUser <= addressToUserFreeMinted[msg.sender]  ) {
            price = numberOfTokens * tokenPrice;
        }
        else{
            if(saleMode == SaleMode.X_FREE){
                if(numberOfTokens > maxTokensFreePerTx){
                    price = (numberOfTokens - maxTokensFreePerTx) * tokenPrice;
                    numberFreeTokens = maxTokensFreePerTx;
                } else{
                    numberFreeTokens = numberOfTokens;
                }
            } else if(saleMode == SaleMode.X_FEE){
                if(numberOfTokens >= maxTokensWithFeePerTx){
                    price = maxTokensWithFeePerTx * tokenPrice;
                    numberFreeTokens = numberOfTokens - maxTokensWithFeePerTx;
                } else{
                    price = numberOfTokens * tokenPrice;
                    numberFreeTokens = 0;
                }
            } else if(saleMode == SaleMode.X_LOTTERY){
                uint lottery = randomLottery(msg.sender);
                if(lottery <= percentRequiredFee){
                    if(numberOfTokens >= maxTokensWithFeePerTx){
                        price = maxTokensWithFeePerTx * tokenPrice;
                        numberFreeTokens = numberOfTokens - maxTokensWithFeePerTx;
                    } else{
                        price = numberOfTokens * tokenPrice;
                        numberFreeTokens = 0;
                    }
                } else{
                    numberFreeTokens = numberOfTokens;
                }
            }
        }

        require(msg.value >= price, "Ether value sent is not correct");
        _safeMint(msg.sender, numberOfTokens);

        if(numberFreeTokens > 0){
            addressToUserFreeMinted[msg.sender] = addressToUserFreeMinted[msg.sender] + numberFreeTokens;
        }
        
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner{
        tokenPrice = newTokenPrice;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
    {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId)
            )
          ) : "";
        } else {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
          ) : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

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

    function numberFreeMinted(address owner) public view returns (uint256) {
        return addressToUserFreeMinted[owner];
    } 

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
      MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint _maxTokensPerTx) public onlyOwner{
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxFreePerUser(uint _maxFreePerUser) public onlyOwner{
        maxFreePerUser = _maxFreePerUser;
    }

    function setMaxTokensWithFeePerTx(uint _maxTokensWithFeePerTx) public onlyOwner{
        maxTokensWithFeePerTx = _maxTokensWithFeePerTx;
    }

    function setMaxTokensFreePerTx(uint _maxTokensFreePerTx) public onlyOwner{
        maxTokensFreePerTx = _maxTokensFreePerTx;
    }

    function setSaleMode(uint _saleMode, uint _maxFreePerUser, uint  _maxTokensWithFeePerTx, uint _maxTokensFreePerTx) public onlyOwner{
        if(_saleMode == 1){
            saleMode = SaleMode.X_FREE;
        } else if(_saleMode == 2){
            saleMode = SaleMode.X_FEE;
        }else if(_saleMode == 3){
            saleMode = SaleMode.X_LOTTERY;
        }
        maxTokensWithFeePerTx = _maxTokensWithFeePerTx;
        maxTokensFreePerTx = _maxTokensFreePerTx;
        maxFreePerUser = _maxFreePerUser;
        saleIsActive = true;
    }

    function setPercentRequiredFee (uint _percentRequiredFee) public onlyOwner{
        percentRequiredFee = _percentRequiredFee;
    }

    function setDefaultTokensPerTx(uint _defaultTokensPerTx) public onlyOwner{
        defaultTokensPerTx = _defaultTokensPerTx;
    }

    function userWhitelistMinted(address minter) public view returns (uint256){
        return addressToUserWhitelistMinted[minter];
    }

    /**
    @notice Sets the contract-wide royalty info.
     */
    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
    function randomLottery(address adr) public view returns (uint){
        return uint( keccak256(abi.encodePacked(adr, name())) ) % 100;
    }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxFreePerUser","type":"uint256"},{"internalType":"uint256","name":"maxTokensWithFeePerTx","type":"uint256"},{"internalType":"uint256","name":"maxTokensFreePerTx","type":"uint256"},{"internalType":"uint256","name":"percentRequiredFee","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"userFreeMinted","type":"uint256"},{"internalType":"uint256","name":"lottery","type":"uint256"},{"internalType":"uint256","name":"saleMode","type":"uint256"},{"internalType":"uint256","name":"defaultTokensPerTx","type":"uint256"}],"internalType":"struct Bulies.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensWithFeePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintRemains","type":"uint256"},{"internalType":"uint256","name":"_maxWhitelistPerUser","type":"uint256"}],"name":"openWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentRequiredFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"randomLottery","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleMode","outputs":[{"internalType":"enum Bulies.SaleMode","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_defaultTokensPerTx","type":"uint256"}],"name":"setDefaultTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerUser","type":"uint256"}],"name":"setMaxFreePerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensFreePerTx","type":"uint256"}],"name":"setMaxTokensFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensWithFeePerTx","type":"uint256"}],"name":"setMaxTokensWithFeePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentRequiredFee","type":"uint256"}],"name":"setPercentRequiredFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleMode","type":"uint256"},{"internalType":"uint256","name":"_maxFreePerUser","type":"uint256"},{"internalType":"uint256","name":"_maxTokensWithFeePerTx","type":"uint256"},{"internalType":"uint256","name":"_maxTokensFreePerTx","type":"uint256"}],"name":"setSaleMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"userWhitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintRemains","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602c815260200162006b20602c9139600c90805190602001906200003592919062000a3f565b506611c37937e08000600d556014600e556003600f556122b86010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555060006012556001601355601480556001601555600160165560326017556000601a60006101000a81548160ff02191690836001811115620000cd57620000cc62000aef565b5b02179055506002601a60016101000a81548160ff02191690836002811115620000fb57620000fa62000aef565b5b02179055503480156200010d57600080fd5b506040518060400160405280600681526020017f42756c69657300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42554c000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200019292919062000a3f565b508060039080519060200190620001ab92919062000a3f565b50620001bc6200021860201b60201c565b6000819055505050620001e4620001d86200021d60201b60201c565b6200022560201b60201c565b6001600b81905550620001ff3360c8620002eb60201b60201c565b620002123360646200048f60201b60201c565b62000e8a565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002fb620004b560201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200035c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003539062000ba5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c69062000c17565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b620004b1828260405180602001604052806000815250620004bf60201b60201c565b5050565b6000612710905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200052d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000569576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200057e6000858386620008ae60201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506200074c8673ffffffffffffffffffffffffffffffffffffffff16620008b460201b620030841760201c565b156200081e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007ca6000878480600101955087620008d760201b60201c565b62000801576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620007535782600054146200081857600080fd5b6200088a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200081f575b816000819055505050620008a8600085838662000a3960201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009056200021d60201b60201c565b8786866040518563ffffffff1660e01b815260040162000929949392919062000d3d565b6020604051808303816000875af19250505080156200096857506040513d601f19601f8201168201806040525081019062000965919062000df3565b60015b620009e6573d80600081146200099b576040519150601f19603f3d011682016040523d82523d6000602084013e620009a0565b606091505b50600081511415620009de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000a4d9062000e54565b90600052602060002090601f01602090048101928262000a71576000855562000abd565b82601f1062000a8c57805160ff191683800117855562000abd565b8280016001018555821562000abd579182015b8281111562000abc57825182559160200191906001019062000a9f565b5b50905062000acc919062000ad0565b5090565b5b8082111562000aeb57600081600090555060010162000ad1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000b8d602a8362000b1e565b915062000b9a8262000b2f565b604082019050919050565b6000602082019050818103600083015262000bc08162000b7e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000bff60198362000b1e565b915062000c0c8262000bc7565b602082019050919050565b6000602082019050818103600083015262000c328162000bf0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c668262000c39565b9050919050565b62000c788162000c59565b82525050565b6000819050919050565b62000c938162000c7e565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000cd557808201518184015260208101905062000cb8565b8381111562000ce5576000848401525b50505050565b6000601f19601f8301169050919050565b600062000d098262000c99565b62000d15818562000ca4565b935062000d2781856020860162000cb5565b62000d328162000ceb565b840191505092915050565b600060808201905062000d54600083018762000c6d565b62000d63602083018662000c6d565b62000d72604083018562000c88565b818103606083015262000d86818462000cfc565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000dcd8162000d96565b811462000dd957600080fd5b50565b60008151905062000ded8162000dc2565b92915050565b60006020828403121562000e0c5762000e0b62000d91565b5b600062000e1c8482850162000ddc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e6d57607f821691505b6020821081141562000e845762000e8362000e25565b5b50919050565b615c868062000e9a6000396000f3fe6080604052600436106103765760003560e01c8063715018a6116101d1578063b88d4fde11610102578063da6e0b52116100a0578063eb8d24441161006f578063eb8d244414610ca7578063f2fde38b14610cd2578063f370cdb114610cfb578063f47c84c514610d2457610376565b8063da6e0b5214610bc5578063dc33e68114610bf0578063e5a5195214610c2d578063e985e9c514610c6a57610376565b8063c4d7e2f8116100dc578063c4d7e2f814610b2a578063c634d03214610b41578063c87b56dd14610b5d578063d0a04eac14610b9a57610376565b8063b88d4fde14610aad578063b9bed05e14610ad6578063bb9315f814610aff57610376565b80638da5cb5b1161016f57806395d89b411161014957806395d89b41146109f3578063982024f814610a1e578063a22cb46514610a5b578063b13e385514610a8457610376565b80638da5cb5b146109745780638f69ae6f1461099f578063900c71f5146109ca57610376565b8063791d04db116101ab578063791d04db146108d95780637ff9b5961461090457806385c8cc741461092f578063868ff4a21461095857610376565b8063715018a61461087057806378cf19e914610887578063790750ce146108b057610376565b806342842e0e116102ab578063611fff2d116102495780636a61e5fc116102235780636a61e5fc146107b65780636c0360eb146107df5780636f8b44b01461080a57806370a082311461083357610376565b8063611fff2d146107255780636352211e1461074e578063681c8bac1461078b57610376565b806355f804b31161028557806355f804b31461066b57806356310d5a14610694578063584d1838146106d15780635e307a48146106fa57610376565b806342842e0e146105dc578063495e1eba146106055780634df8bb451461062e57610376565b806318160ddd1161031857806323b872dd116102f257806323b872dd146105475780632a55205a1461057057806334918dfd146105ae5780633ccfd60b146105c557610376565b806318160ddd146104c8578063205a2e9d146104f3578063205c28781461051e57610376565b8063081812fc11610354578063081812fc1461040c578063095ea7b3146104495780630deed6a6146104725780630f2663511461049d57610376565b806301ffc9a71461037b57806302fa7c47146103b857806306fdde03146103e1575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d91906145ec565b610d4f565b6040516103af9190614634565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906146f1565b610d61565b005b3480156103ed57600080fd5b506103f6610deb565b60405161040391906147ca565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190614822565b610e7d565b604051610440919061485e565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190614879565b610ef9565b005b34801561047e57600080fd5b50610487610ffe565b6040516104949190614930565b60405180910390f35b3480156104a957600080fd5b506104b2611011565b6040516104bf919061495a565b60405180910390f35b3480156104d457600080fd5b506104dd611017565b6040516104ea919061495a565b60405180910390f35b3480156104ff57600080fd5b5061050861102e565b604051610515919061495a565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190614879565b611034565b005b34801561055357600080fd5b5061056e60048036038101906105699190614975565b61113e565b005b34801561057c57600080fd5b50610597600480360381019061059291906149c8565b61114e565b6040516105a5929190614a08565b60405180910390f35b3480156105ba57600080fd5b506105c3611339565b005b3480156105d157600080fd5b506105da6113e1565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614975565b6114ac565b005b34801561061157600080fd5b5061062c60048036038101906106279190614822565b6114cc565b005b34801561063a57600080fd5b5061065560048036038101906106509190614a31565b611552565b6040516106629190614b9c565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190614ced565b611702565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190614a31565b611798565b6040516106c8919061495a565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906149c8565b6117e1565b005b34801561070657600080fd5b5061070f6118a5565b60405161071c919061495a565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190614822565b6118ab565b005b34801561075a57600080fd5b5061077560048036038101906107709190614822565b611931565b604051610782919061485e565b60405180910390f35b34801561079757600080fd5b506107a0611947565b6040516107ad919061495a565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190614822565b61194d565b005b3480156107eb57600080fd5b506107f46119d3565b60405161080191906147ca565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190614822565b611a61565b005b34801561083f57600080fd5b5061085a60048036038101906108559190614a31565b611ae7565b604051610867919061495a565b60405180910390f35b34801561087c57600080fd5b50610885611bb7565b005b34801561089357600080fd5b506108ae60048036038101906108a99190614879565b611c3f565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190614822565b611d20565b005b3480156108e557600080fd5b506108ee611da6565b6040516108fb9190614634565b60405180910390f35b34801561091057600080fd5b50610919611db9565b604051610926919061495a565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190614822565b611dbf565b005b610972600480360381019061096d9190614822565b611e45565b005b34801561098057600080fd5b506109896121dc565b604051610996919061485e565b60405180910390f35b3480156109ab57600080fd5b506109b4612206565b6040516109c1919061495a565b60405180910390f35b3480156109d657600080fd5b506109f160048036038101906109ec9190614822565b61220c565b005b3480156109ff57600080fd5b50610a086122f0565b604051610a1591906147ca565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190614a31565b612382565b604051610a52919061495a565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190614d62565b6123ca565b005b348015610a9057600080fd5b50610aab6004803603810190610aa69190614822565b612542565b005b348015610ab957600080fd5b50610ad46004803603810190610acf9190614e43565b6125c8565b005b348015610ae257600080fd5b50610afd6004803603810190610af89190614822565b612640565b005b348015610b0b57600080fd5b50610b146126c6565b604051610b21919061495a565b60405180910390f35b348015610b3657600080fd5b50610b3f6126cc565b005b610b5b6004803603810190610b569190614822565b61276d565b005b348015610b6957600080fd5b50610b846004803603810190610b7f9190614822565b612bdb565b604051610b9191906147ca565b60405180910390f35b348015610ba657600080fd5b50610baf612d1d565b604051610bbc919061495a565b60405180910390f35b348015610bd157600080fd5b50610bda612d23565b604051610be7919061495a565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190614a31565b612d29565b604051610c24919061495a565b60405180910390f35b348015610c3957600080fd5b50610c546004803603810190610c4f9190614a31565b612d3b565b604051610c61919061495a565b60405180910390f35b348015610c7657600080fd5b50610c916004803603810190610c8c9190614ec6565b612d84565b604051610c9e9190614634565b60405180910390f35b348015610cb357600080fd5b50610cbc612e18565b604051610cc99190614634565b60405180910390f35b348015610cde57600080fd5b50610cf96004803603810190610cf49190614a31565b612e2b565b005b348015610d0757600080fd5b50610d226004803603810190610d1d9190614f06565b612f23565b005b348015610d3057600080fd5b50610d3961307e565b604051610d46919061495a565b60405180910390f35b6000610d5a826130a7565b9050919050565b610d69613121565b73ffffffffffffffffffffffffffffffffffffffff16610d876121dc565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490614fb9565b60405180910390fd5b610de78282613129565b5050565b606060028054610dfa90615008565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2690615008565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b6000610e88826132bf565b610ebe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f0482611931565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f8b613121565b73ffffffffffffffffffffffffffffffffffffffff1614610fee57610fb781610fb2613121565b612d84565b610fed576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ff983838361330d565b505050565b601a60019054906101000a900460ff1681565b60135481565b60006110216133bf565b6001546000540303905090565b60165481565b61103c613121565b73ffffffffffffffffffffffffffffffffffffffff1661105a6121dc565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790614fb9565b60405180910390fd5b478111156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906150ac565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611139573d6000803e3d6000fd5b505050565b6111498383836133c4565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156112e45760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006112ee61387a565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661131a91906150fb565b6113249190615184565b90508160000151819350935050509250929050565b611341613121565b73ffffffffffffffffffffffffffffffffffffffff1661135f6121dc565b73ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90614fb9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6113e9613121565b73ffffffffffffffffffffffffffffffffffffffff166114076121dc565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490614fb9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114a8573d6000803e3d6000fd5b5050565b6114c7838383604051806020016040528060008152506125c8565b505050565b6114d4613121565b73ffffffffffffffffffffffffffffffffffffffff166114f26121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90614fb9565b60405180910390fd5b80600f8190555050565b61155a614429565b604051806101c00160405280600d548152602001600e5481526020016010548152602001601160009054906101000a900460ff161515815260200161159d611017565b815260200160135481526020016015548152602001601654815260200160175481526020016115cb84613884565b8152602001601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200161161e84612382565b815260200160006002811115611637576116366148b9565b5b601a60019054906101000a900460ff166002811115611659576116586148b9565b5b146116ea5760016002811115611672576116716148b9565b5b601a60019054906101000a900460ff166002811115611694576116936148b9565b5b146116e2576002808111156116ac576116ab6148b9565b5b601a60019054906101000a900460ff1660028111156116ce576116cd6148b9565b5b146116da5760006116dd565b60035b6116e5565b60025b6116ed565b60015b60ff168152602001600f548152509050919050565b61170a613121565b73ffffffffffffffffffffffffffffffffffffffff166117286121dc565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590614fb9565b60405180910390fd5b80600c908051906020019061179492919061449a565b5050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117e9613121565b73ffffffffffffffffffffffffffffffffffffffff166118076121dc565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614fb9565b60405180910390fd5b6001601160016101000a81548160ff02191690831515021790555081601281905550806014819055506001601160006101000a81548160ff0219169083151502179055505050565b600e5481565b6118b3613121565b73ffffffffffffffffffffffffffffffffffffffff166118d16121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614fb9565b60405180910390fd5b8060178190555050565b600061193c826138ee565b600001519050919050565b600f5481565b611955613121565b73ffffffffffffffffffffffffffffffffffffffff166119736121dc565b73ffffffffffffffffffffffffffffffffffffffff16146119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614fb9565b60405180910390fd5b80600d8190555050565b600c80546119e090615008565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0c90615008565b8015611a595780601f10611a2e57610100808354040283529160200191611a59565b820191906000526020600020905b815481529060010190602001808311611a3c57829003601f168201915b505050505081565b611a69613121565b73ffffffffffffffffffffffffffffffffffffffff16611a876121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490614fb9565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611bbf613121565b73ffffffffffffffffffffffffffffffffffffffff16611bdd6121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614fb9565b60405180910390fd5b611c3d6000613b79565b565b611c47613121565b73ffffffffffffffffffffffffffffffffffffffff16611c656121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290614fb9565b60405180910390fd5b60105481611cc7611017565b611cd191906151b5565b1115611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d099061527d565b60405180910390fd5b611d1c8282613c3f565b5050565b611d28613121565b73ffffffffffffffffffffffffffffffffffffffff16611d466121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390614fb9565b60405180910390fd5b8060138190555050565b601160019054906101000a900460ff1681565b600d5481565b611dc7613121565b73ffffffffffffffffffffffffffffffffffffffff16611de56121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3290614fb9565b60405180910390fd5b8060158190555050565b6002600b541415611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906152e9565b60405180910390fd5b6002600b81905550601160009054906101000a900460ff16611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990615355565b60405180910390fd5b600e54811115611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e906153e7565b60405180910390fd5b60008111611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6190615453565b60405180910390fd5b60105481611f76611017565b611f8091906151b5565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906154bf565b60405180910390fd5b601160019054906101000a900460ff16612010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120079061552b565b60405180910390fd5b600060125411612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c90615597565b60405180910390fd5b60145481601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a391906151b5565b11156120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90615629565b60405180910390fd5b6000816012546120f49190615649565b116120ff5760125490505b6121093382613c3f565b80601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461215491906151b5565b601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806012546121a59190615649565b6012819055506000601254116121d1576000601160016101000a81548160ff0219169083151502179055505b6001600b8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b612214613121565b73ffffffffffffffffffffffffffffffffffffffff166122326121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f90614fb9565b60405180910390fd5b60028114156122c1576001601a60006101000a81548160ff021916908360018111156122b7576122b66148b9565b5b02179055506122ed565b6000601a60006101000a81548160ff021916908360018111156122e7576122e66148b9565b5b02179055505b50565b6060600380546122ff90615008565b80601f016020809104026020016040519081016040528092919081815260200182805461232b90615008565b80156123785780601f1061234d57610100808354040283529160200191612378565b820191906000526020600020905b81548152906001019060200180831161235b57829003601f168201915b5050505050905090565b600060648261238f610deb565b6040516020016123a0929190615701565b6040516020818303038152906040528051906020012060001c6123c39190615729565b9050919050565b6123d2613121565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612437576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612444613121565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124f1613121565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125369190614634565b60405180910390a35050565b61254a613121565b73ffffffffffffffffffffffffffffffffffffffff166125686121dc565b73ffffffffffffffffffffffffffffffffffffffff16146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590614fb9565b60405180910390fd5b8060168190555050565b6125d38484846133c4565b6125f28373ffffffffffffffffffffffffffffffffffffffff16613084565b1561263a5761260384848484613c5d565b612639576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612648613121565b73ffffffffffffffffffffffffffffffffffffffff166126666121dc565b73ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614fb9565b60405180910390fd5b80600e8190555050565b60175481565b6126d4613121565b73ffffffffffffffffffffffffffffffffffffffff166126f26121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614fb9565b60405180910390fd5b6000601160016101000a81548160ff0219169083151502179055506000601281905550565b6002600b5414156127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa906152e9565b60405180910390fd5b6002600b81905550601160009054906101000a900460ff1661280a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280190615355565b60405180910390fd5b600e5481111561284f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612846906153e7565b60405180910390fd5b60008111612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990615453565b60405180910390fd5b6010548161289e611017565b6128a891906151b5565b11156128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e0906154bf565b60405180910390fd5b600080601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546013541161294957600d548361294291906150fb565b9150612ae9565b6000600281111561295d5761295c6148b9565b5b601a60019054906101000a900460ff16600281111561297f5761297e6148b9565b5b14156129bf576016548311156129b657600d54601654846129a09190615649565b6129aa91906150fb565b915060165490506129ba565b8290505b612ae8565b600160028111156129d3576129d26148b9565b5b601a60019054906101000a900460ff1660028111156129f5576129f46148b9565b5b1415612a45576015548310612a2b57600d54601554612a1491906150fb565b915060155483612a249190615649565b9050612a40565b600d5483612a3991906150fb565b9150600090505b612ae7565b600280811115612a5857612a576148b9565b5b601a60019054906101000a900460ff166002811115612a7a57612a796148b9565b5b1415612ae6576000612a8b33612382565b90506017548111612ae0576015548410612ac657600d54601554612aaf91906150fb565b925060155484612abf9190615649565b9150612adb565b600d5484612ad491906150fb565b9250600091505b612ae4565b8391505b505b5b5b5b81341015612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b23906157a6565b60405180910390fd5b612b363384613c3f565b6000811115612bce5780601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b8a91906151b5565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060612be6826132bf565b612c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1c90615812565b60405180910390fd5b600180811115612c3857612c376148b9565b5b601a60009054906101000a900460ff166001811115612c5a57612c596148b9565b5b1415612cbe576000600c8054612c6f90615008565b905011612c8b5760405180602001604052806000815250612cb7565b600c612c9683613dae565b604051602001612ca79291906158c6565b6040516020818303038152906040525b9050612d18565b6000600c8054612ccd90615008565b905011612ce95760405180602001604052806000815250612d15565b600c612cf483613dae565b604051602001612d05929190615936565b6040516020818303038152906040525b90505b919050565b60155481565b60145481565b6000612d3482613884565b9050919050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b612e33613121565b73ffffffffffffffffffffffffffffffffffffffff16612e516121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9e90614fb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e906159d7565b60405180910390fd5b612f2081613b79565b50565b612f2b613121565b73ffffffffffffffffffffffffffffffffffffffff16612f496121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9690614fb9565b60405180910390fd5b6001841415612fd8576000601a60016101000a81548160ff02191690836002811115612fce57612fcd6148b9565b5b0217905550613048565b6002841415613011576001601a60016101000a81548160ff02191690836002811115613007576130066148b9565b5b0217905550613047565b6003841415613046576002601a60016101000a81548160ff021916908360028111156130405761303f6148b9565b5b02179055505b5b5b8160158190555080601681905550826013819055506001601160006101000a81548160ff02191690831515021790555050505050565b60105481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061311a575061311982613f0f565b5b9050919050565b600033905090565b61313161387a565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561318f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318690615a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f690615ad5565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816132ca6133bf565b111580156132d9575060005482105b8015613306575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006133cf826138ee565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461343a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661345b613121565b73ffffffffffffffffffffffffffffffffffffffff16148061348a575061348985613484613121565b612d84565b5b806134cf5750613498613121565b73ffffffffffffffffffffffffffffffffffffffff166134b784610e7d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613508576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561356f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61357c8585856001613ff1565b6135886000848761330d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561380857600054821461380757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138738585856001613ff7565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6138f6614520565b6000829050806139046133bf565b11613b4257600054811015613b41576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613b3f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613a23578092505050613b74565b5b600115613b3e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613b39578092505050613b74565b613a24565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613c59828260405180602001604052806000815250613ffd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c83613121565b8786866040518563ffffffff1660e01b8152600401613ca59493929190615b4a565b6020604051808303816000875af1925050508015613ce157506040513d601f19601f82011682018060405250810190613cde9190615bab565b60015b613d5b573d8060008114613d11576040519150601f19603f3d011682016040523d82523d6000602084013e613d16565b606091505b50600081511415613d53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613df6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613f0a565b600082905060005b60008214613e28578080613e1190615bd8565b915050600a82613e219190615184565b9150613dfe565b60008167ffffffffffffffff811115613e4457613e43614bc2565b5b6040519080825280601f01601f191660200182016040528015613e765781602001600182028036833780820191505090505b5090505b60008514613f0357600182613e8f9190615649565b9150600a85613e9e9190615729565b6030613eaa91906151b5565b60f81b818381518110613ec057613ebf615c21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613efc9190615184565b9450613e7a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613fda57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613fea5750613fe9826143bf565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561406a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156140a5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6140b26000858386613ff1565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506142738673ffffffffffffffffffffffffffffffffffffffff16613084565b15614338575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46142e86000878480600101955087613c5d565b61431e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061427957826000541461433357600080fd5b6143a3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210614339575b8160008190555050506143b96000858386613ff7565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b604051806101c00160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b8280546144a690615008565b90600052602060002090601f0160209004810192826144c8576000855561450f565b82601f106144e157805160ff191683800117855561450f565b8280016001018555821561450f579182015b8281111561450e5782518255916020019190600101906144f3565b5b50905061451c9190614563565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561457c576000816000905550600101614564565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6145c981614594565b81146145d457600080fd5b50565b6000813590506145e6816145c0565b92915050565b6000602082840312156146025761460161458a565b5b6000614610848285016145d7565b91505092915050565b60008115159050919050565b61462e81614619565b82525050565b60006020820190506146496000830184614625565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061467a8261464f565b9050919050565b61468a8161466f565b811461469557600080fd5b50565b6000813590506146a781614681565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6146ce816146ad565b81146146d957600080fd5b50565b6000813590506146eb816146c5565b92915050565b600080604083850312156147085761470761458a565b5b600061471685828601614698565b9250506020614727858286016146dc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561476b578082015181840152602081019050614750565b8381111561477a576000848401525b50505050565b6000601f19601f8301169050919050565b600061479c82614731565b6147a6818561473c565b93506147b681856020860161474d565b6147bf81614780565b840191505092915050565b600060208201905081810360008301526147e48184614791565b905092915050565b6000819050919050565b6147ff816147ec565b811461480a57600080fd5b50565b60008135905061481c816147f6565b92915050565b6000602082840312156148385761483761458a565b5b60006148468482850161480d565b91505092915050565b6148588161466f565b82525050565b6000602082019050614873600083018461484f565b92915050565b600080604083850312156148905761488f61458a565b5b600061489e85828601614698565b92505060206148af8582860161480d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106148f9576148f86148b9565b5b50565b600081905061490a826148e8565b919050565b600061491a826148fc565b9050919050565b61492a8161490f565b82525050565b60006020820190506149456000830184614921565b92915050565b614954816147ec565b82525050565b600060208201905061496f600083018461494b565b92915050565b60008060006060848603121561498e5761498d61458a565b5b600061499c86828701614698565b93505060206149ad86828701614698565b92505060406149be8682870161480d565b9150509250925092565b600080604083850312156149df576149de61458a565b5b60006149ed8582860161480d565b92505060206149fe8582860161480d565b9150509250929050565b6000604082019050614a1d600083018561484f565b614a2a602083018461494b565b9392505050565b600060208284031215614a4757614a4661458a565b5b6000614a5584828501614698565b91505092915050565b614a67816147ec565b82525050565b614a7681614619565b82525050565b6101c082016000820151614a936000850182614a5e565b506020820151614aa66020850182614a5e565b506040820151614ab96040850182614a5e565b506060820151614acc6060850182614a6d565b506080820151614adf6080850182614a5e565b5060a0820151614af260a0850182614a5e565b5060c0820151614b0560c0850182614a5e565b5060e0820151614b1860e0850182614a5e565b50610100820151614b2d610100850182614a5e565b50610120820151614b42610120850182614a5e565b50610140820151614b57610140850182614a5e565b50610160820151614b6c610160850182614a5e565b50610180820151614b81610180850182614a5e565b506101a0820151614b966101a0850182614a5e565b50505050565b60006101c082019050614bb26000830184614a7c565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614bfa82614780565b810181811067ffffffffffffffff82111715614c1957614c18614bc2565b5b80604052505050565b6000614c2c614580565b9050614c388282614bf1565b919050565b600067ffffffffffffffff821115614c5857614c57614bc2565b5b614c6182614780565b9050602081019050919050565b82818337600083830152505050565b6000614c90614c8b84614c3d565b614c22565b905082815260208101848484011115614cac57614cab614bbd565b5b614cb7848285614c6e565b509392505050565b600082601f830112614cd457614cd3614bb8565b5b8135614ce4848260208601614c7d565b91505092915050565b600060208284031215614d0357614d0261458a565b5b600082013567ffffffffffffffff811115614d2157614d2061458f565b5b614d2d84828501614cbf565b91505092915050565b614d3f81614619565b8114614d4a57600080fd5b50565b600081359050614d5c81614d36565b92915050565b60008060408385031215614d7957614d7861458a565b5b6000614d8785828601614698565b9250506020614d9885828601614d4d565b9150509250929050565b600067ffffffffffffffff821115614dbd57614dbc614bc2565b5b614dc682614780565b9050602081019050919050565b6000614de6614de184614da2565b614c22565b905082815260208101848484011115614e0257614e01614bbd565b5b614e0d848285614c6e565b509392505050565b600082601f830112614e2a57614e29614bb8565b5b8135614e3a848260208601614dd3565b91505092915050565b60008060008060808587031215614e5d57614e5c61458a565b5b6000614e6b87828801614698565b9450506020614e7c87828801614698565b9350506040614e8d8782880161480d565b925050606085013567ffffffffffffffff811115614eae57614ead61458f565b5b614eba87828801614e15565b91505092959194509250565b60008060408385031215614edd57614edc61458a565b5b6000614eeb85828601614698565b9250506020614efc85828601614698565b9150509250929050565b60008060008060808587031215614f2057614f1f61458a565b5b6000614f2e8782880161480d565b9450506020614f3f8782880161480d565b9350506040614f508782880161480d565b9250506060614f618782880161480d565b91505092959194509250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614fa360208361473c565b9150614fae82614f6d565b602082019050919050565b60006020820190508181036000830152614fd281614f96565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061502057607f821691505b6020821081141561503457615033614fd9565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000615096602d8361473c565b91506150a18261503a565b604082019050919050565b600060208201905081810360008301526150c581615089565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615106826147ec565b9150615111836147ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561514a576151496150cc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061518f826147ec565b915061519a836147ec565b9250826151aa576151a9615155565b5b828204905092915050565b60006151c0826147ec565b91506151cb836147ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615200576151ff6150cc565b5b828201905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b600061526760298361473c565b91506152728261520b565b604082019050919050565b600060208201905081810360008301526152968161525a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006152d3601f8361473c565b91506152de8261529d565b602082019050919050565b60006020820190508181036000830152615302816152c6565b9050919050565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b600061533f60138361473c565b915061534a82615309565b602082019050919050565b6000602082019050818103600083015261536e81615332565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e7360008201527f2070657220747800000000000000000000000000000000000000000000000000602082015250565b60006153d160278361473c565b91506153dc82615375565b604082019050919050565b60006020820190508181036000830152615400816153c4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b600061543d601a8361473c565b915061544882615407565b602082019050919050565b6000602082019050818103600083015261546c81615430565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006154a960208361473c565b91506154b482615473565b602082019050919050565b600060208201905081810360008301526154d88161549c565b9050919050565b7f57686974656c697374206d696e74206d75737420626520616374697665000000600082015250565b6000615515601d8361473c565b9150615520826154df565b602082019050919050565b6000602082019050818103600083015261554481615508565b9050919050565b7f4e6f206d6f72652077686974656c69737420746f6b656e730000000000000000600082015250565b600061558160188361473c565b915061558c8261554b565b602082019050919050565b600060208201905081810360008301526155b081615574565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782066726565207460008201527f6f6b656e73207065722077616c6c657400000000000000000000000000000000602082015250565b600061561360308361473c565b915061561e826155b7565b604082019050919050565b6000602082019050818103600083015261564281615606565b9050919050565b6000615654826147ec565b915061565f836147ec565b925082821015615672576156716150cc565b5b828203905092915050565b60008160601b9050919050565b60006156958261567d565b9050919050565b60006156a78261568a565b9050919050565b6156bf6156ba8261466f565b61569c565b82525050565b600081905092915050565b60006156db82614731565b6156e581856156c5565b93506156f581856020860161474d565b80840191505092915050565b600061570d82856156ae565b60148201915061571d82846156d0565b91508190509392505050565b6000615734826147ec565b915061573f836147ec565b92508261574f5761574e615155565b5b828206905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000615790601f8361473c565b915061579b8261575a565b602082019050919050565b600060208201905081810360008301526157bf81615783565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006157fc60158361473c565b9150615807826157c6565b602082019050919050565b6000602082019050818103600083015261582b816157ef565b9050919050565b60008190508160005260206000209050919050565b6000815461585481615008565b61585e81866156c5565b94506001821660008114615879576001811461588a576158bd565b60ff198316865281860193506158bd565b61589385615832565b60005b838110156158b557815481890152600182019150602081019050615896565b838801955050505b50505092915050565b60006158d28285615847565b91506158de82846156d0565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006159206005836156c5565b915061592b826158ea565b600582019050919050565b60006159428285615847565b915061594e82846156d0565b915061595982615913565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006159c160268361473c565b91506159cc82615965565b604082019050919050565b600060208201905081810360008301526159f0816159b4565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000615a53602a8361473c565b9150615a5e826159f7565b604082019050919050565b60006020820190508181036000830152615a8281615a46565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000615abf60198361473c565b9150615aca82615a89565b602082019050919050565b60006020820190508181036000830152615aee81615ab2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b1c82615af5565b615b268185615b00565b9350615b3681856020860161474d565b615b3f81614780565b840191505092915050565b6000608082019050615b5f600083018761484f565b615b6c602083018661484f565b615b79604083018561494b565b8181036060830152615b8b8184615b11565b905095945050505050565b600081519050615ba5816145c0565b92915050565b600060208284031215615bc157615bc061458a565b5b6000615bcf84828501615b96565b91505092915050565b6000615be3826147ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c1657615c156150cc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a970f9469459802cd607c90dba67bcd032617933453bb3410c6505a8860c8ca364736f6c634300080a003368747470733a2f2f6e667473657276696365732e73332e616d617a6f6e6177732e636f6d2f62756c6965732f

Deployed Bytecode

0x6080604052600436106103765760003560e01c8063715018a6116101d1578063b88d4fde11610102578063da6e0b52116100a0578063eb8d24441161006f578063eb8d244414610ca7578063f2fde38b14610cd2578063f370cdb114610cfb578063f47c84c514610d2457610376565b8063da6e0b5214610bc5578063dc33e68114610bf0578063e5a5195214610c2d578063e985e9c514610c6a57610376565b8063c4d7e2f8116100dc578063c4d7e2f814610b2a578063c634d03214610b41578063c87b56dd14610b5d578063d0a04eac14610b9a57610376565b8063b88d4fde14610aad578063b9bed05e14610ad6578063bb9315f814610aff57610376565b80638da5cb5b1161016f57806395d89b411161014957806395d89b41146109f3578063982024f814610a1e578063a22cb46514610a5b578063b13e385514610a8457610376565b80638da5cb5b146109745780638f69ae6f1461099f578063900c71f5146109ca57610376565b8063791d04db116101ab578063791d04db146108d95780637ff9b5961461090457806385c8cc741461092f578063868ff4a21461095857610376565b8063715018a61461087057806378cf19e914610887578063790750ce146108b057610376565b806342842e0e116102ab578063611fff2d116102495780636a61e5fc116102235780636a61e5fc146107b65780636c0360eb146107df5780636f8b44b01461080a57806370a082311461083357610376565b8063611fff2d146107255780636352211e1461074e578063681c8bac1461078b57610376565b806355f804b31161028557806355f804b31461066b57806356310d5a14610694578063584d1838146106d15780635e307a48146106fa57610376565b806342842e0e146105dc578063495e1eba146106055780634df8bb451461062e57610376565b806318160ddd1161031857806323b872dd116102f257806323b872dd146105475780632a55205a1461057057806334918dfd146105ae5780633ccfd60b146105c557610376565b806318160ddd146104c8578063205a2e9d146104f3578063205c28781461051e57610376565b8063081812fc11610354578063081812fc1461040c578063095ea7b3146104495780630deed6a6146104725780630f2663511461049d57610376565b806301ffc9a71461037b57806302fa7c47146103b857806306fdde03146103e1575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d91906145ec565b610d4f565b6040516103af9190614634565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906146f1565b610d61565b005b3480156103ed57600080fd5b506103f6610deb565b60405161040391906147ca565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190614822565b610e7d565b604051610440919061485e565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190614879565b610ef9565b005b34801561047e57600080fd5b50610487610ffe565b6040516104949190614930565b60405180910390f35b3480156104a957600080fd5b506104b2611011565b6040516104bf919061495a565b60405180910390f35b3480156104d457600080fd5b506104dd611017565b6040516104ea919061495a565b60405180910390f35b3480156104ff57600080fd5b5061050861102e565b604051610515919061495a565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190614879565b611034565b005b34801561055357600080fd5b5061056e60048036038101906105699190614975565b61113e565b005b34801561057c57600080fd5b50610597600480360381019061059291906149c8565b61114e565b6040516105a5929190614a08565b60405180910390f35b3480156105ba57600080fd5b506105c3611339565b005b3480156105d157600080fd5b506105da6113e1565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614975565b6114ac565b005b34801561061157600080fd5b5061062c60048036038101906106279190614822565b6114cc565b005b34801561063a57600080fd5b5061065560048036038101906106509190614a31565b611552565b6040516106629190614b9c565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190614ced565b611702565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190614a31565b611798565b6040516106c8919061495a565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906149c8565b6117e1565b005b34801561070657600080fd5b5061070f6118a5565b60405161071c919061495a565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190614822565b6118ab565b005b34801561075a57600080fd5b5061077560048036038101906107709190614822565b611931565b604051610782919061485e565b60405180910390f35b34801561079757600080fd5b506107a0611947565b6040516107ad919061495a565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190614822565b61194d565b005b3480156107eb57600080fd5b506107f46119d3565b60405161080191906147ca565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190614822565b611a61565b005b34801561083f57600080fd5b5061085a60048036038101906108559190614a31565b611ae7565b604051610867919061495a565b60405180910390f35b34801561087c57600080fd5b50610885611bb7565b005b34801561089357600080fd5b506108ae60048036038101906108a99190614879565b611c3f565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190614822565b611d20565b005b3480156108e557600080fd5b506108ee611da6565b6040516108fb9190614634565b60405180910390f35b34801561091057600080fd5b50610919611db9565b604051610926919061495a565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190614822565b611dbf565b005b610972600480360381019061096d9190614822565b611e45565b005b34801561098057600080fd5b506109896121dc565b604051610996919061485e565b60405180910390f35b3480156109ab57600080fd5b506109b4612206565b6040516109c1919061495a565b60405180910390f35b3480156109d657600080fd5b506109f160048036038101906109ec9190614822565b61220c565b005b3480156109ff57600080fd5b50610a086122f0565b604051610a1591906147ca565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190614a31565b612382565b604051610a52919061495a565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190614d62565b6123ca565b005b348015610a9057600080fd5b50610aab6004803603810190610aa69190614822565b612542565b005b348015610ab957600080fd5b50610ad46004803603810190610acf9190614e43565b6125c8565b005b348015610ae257600080fd5b50610afd6004803603810190610af89190614822565b612640565b005b348015610b0b57600080fd5b50610b146126c6565b604051610b21919061495a565b60405180910390f35b348015610b3657600080fd5b50610b3f6126cc565b005b610b5b6004803603810190610b569190614822565b61276d565b005b348015610b6957600080fd5b50610b846004803603810190610b7f9190614822565b612bdb565b604051610b9191906147ca565b60405180910390f35b348015610ba657600080fd5b50610baf612d1d565b604051610bbc919061495a565b60405180910390f35b348015610bd157600080fd5b50610bda612d23565b604051610be7919061495a565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190614a31565b612d29565b604051610c24919061495a565b60405180910390f35b348015610c3957600080fd5b50610c546004803603810190610c4f9190614a31565b612d3b565b604051610c61919061495a565b60405180910390f35b348015610c7657600080fd5b50610c916004803603810190610c8c9190614ec6565b612d84565b604051610c9e9190614634565b60405180910390f35b348015610cb357600080fd5b50610cbc612e18565b604051610cc99190614634565b60405180910390f35b348015610cde57600080fd5b50610cf96004803603810190610cf49190614a31565b612e2b565b005b348015610d0757600080fd5b50610d226004803603810190610d1d9190614f06565b612f23565b005b348015610d3057600080fd5b50610d3961307e565b604051610d46919061495a565b60405180910390f35b6000610d5a826130a7565b9050919050565b610d69613121565b73ffffffffffffffffffffffffffffffffffffffff16610d876121dc565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490614fb9565b60405180910390fd5b610de78282613129565b5050565b606060028054610dfa90615008565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2690615008565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b6000610e88826132bf565b610ebe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f0482611931565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f8b613121565b73ffffffffffffffffffffffffffffffffffffffff1614610fee57610fb781610fb2613121565b612d84565b610fed576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ff983838361330d565b505050565b601a60019054906101000a900460ff1681565b60135481565b60006110216133bf565b6001546000540303905090565b60165481565b61103c613121565b73ffffffffffffffffffffffffffffffffffffffff1661105a6121dc565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790614fb9565b60405180910390fd5b478111156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906150ac565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611139573d6000803e3d6000fd5b505050565b6111498383836133c4565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156112e45760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006112ee61387a565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661131a91906150fb565b6113249190615184565b90508160000151819350935050509250929050565b611341613121565b73ffffffffffffffffffffffffffffffffffffffff1661135f6121dc565b73ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90614fb9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6113e9613121565b73ffffffffffffffffffffffffffffffffffffffff166114076121dc565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490614fb9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114a8573d6000803e3d6000fd5b5050565b6114c7838383604051806020016040528060008152506125c8565b505050565b6114d4613121565b73ffffffffffffffffffffffffffffffffffffffff166114f26121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90614fb9565b60405180910390fd5b80600f8190555050565b61155a614429565b604051806101c00160405280600d548152602001600e5481526020016010548152602001601160009054906101000a900460ff161515815260200161159d611017565b815260200160135481526020016015548152602001601654815260200160175481526020016115cb84613884565b8152602001601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200161161e84612382565b815260200160006002811115611637576116366148b9565b5b601a60019054906101000a900460ff166002811115611659576116586148b9565b5b146116ea5760016002811115611672576116716148b9565b5b601a60019054906101000a900460ff166002811115611694576116936148b9565b5b146116e2576002808111156116ac576116ab6148b9565b5b601a60019054906101000a900460ff1660028111156116ce576116cd6148b9565b5b146116da5760006116dd565b60035b6116e5565b60025b6116ed565b60015b60ff168152602001600f548152509050919050565b61170a613121565b73ffffffffffffffffffffffffffffffffffffffff166117286121dc565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590614fb9565b60405180910390fd5b80600c908051906020019061179492919061449a565b5050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117e9613121565b73ffffffffffffffffffffffffffffffffffffffff166118076121dc565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614fb9565b60405180910390fd5b6001601160016101000a81548160ff02191690831515021790555081601281905550806014819055506001601160006101000a81548160ff0219169083151502179055505050565b600e5481565b6118b3613121565b73ffffffffffffffffffffffffffffffffffffffff166118d16121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614fb9565b60405180910390fd5b8060178190555050565b600061193c826138ee565b600001519050919050565b600f5481565b611955613121565b73ffffffffffffffffffffffffffffffffffffffff166119736121dc565b73ffffffffffffffffffffffffffffffffffffffff16146119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614fb9565b60405180910390fd5b80600d8190555050565b600c80546119e090615008565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0c90615008565b8015611a595780601f10611a2e57610100808354040283529160200191611a59565b820191906000526020600020905b815481529060010190602001808311611a3c57829003601f168201915b505050505081565b611a69613121565b73ffffffffffffffffffffffffffffffffffffffff16611a876121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490614fb9565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611bbf613121565b73ffffffffffffffffffffffffffffffffffffffff16611bdd6121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614fb9565b60405180910390fd5b611c3d6000613b79565b565b611c47613121565b73ffffffffffffffffffffffffffffffffffffffff16611c656121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290614fb9565b60405180910390fd5b60105481611cc7611017565b611cd191906151b5565b1115611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d099061527d565b60405180910390fd5b611d1c8282613c3f565b5050565b611d28613121565b73ffffffffffffffffffffffffffffffffffffffff16611d466121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9390614fb9565b60405180910390fd5b8060138190555050565b601160019054906101000a900460ff1681565b600d5481565b611dc7613121565b73ffffffffffffffffffffffffffffffffffffffff16611de56121dc565b73ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3290614fb9565b60405180910390fd5b8060158190555050565b6002600b541415611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906152e9565b60405180910390fd5b6002600b81905550601160009054906101000a900460ff16611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990615355565b60405180910390fd5b600e54811115611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e906153e7565b60405180910390fd5b60008111611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6190615453565b60405180910390fd5b60105481611f76611017565b611f8091906151b5565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906154bf565b60405180910390fd5b601160019054906101000a900460ff16612010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120079061552b565b60405180910390fd5b600060125411612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c90615597565b60405180910390fd5b60145481601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a391906151b5565b11156120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90615629565b60405180910390fd5b6000816012546120f49190615649565b116120ff5760125490505b6121093382613c3f565b80601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461215491906151b5565b601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806012546121a59190615649565b6012819055506000601254116121d1576000601160016101000a81548160ff0219169083151502179055505b6001600b8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b612214613121565b73ffffffffffffffffffffffffffffffffffffffff166122326121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f90614fb9565b60405180910390fd5b60028114156122c1576001601a60006101000a81548160ff021916908360018111156122b7576122b66148b9565b5b02179055506122ed565b6000601a60006101000a81548160ff021916908360018111156122e7576122e66148b9565b5b02179055505b50565b6060600380546122ff90615008565b80601f016020809104026020016040519081016040528092919081815260200182805461232b90615008565b80156123785780601f1061234d57610100808354040283529160200191612378565b820191906000526020600020905b81548152906001019060200180831161235b57829003601f168201915b5050505050905090565b600060648261238f610deb565b6040516020016123a0929190615701565b6040516020818303038152906040528051906020012060001c6123c39190615729565b9050919050565b6123d2613121565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612437576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612444613121565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124f1613121565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125369190614634565b60405180910390a35050565b61254a613121565b73ffffffffffffffffffffffffffffffffffffffff166125686121dc565b73ffffffffffffffffffffffffffffffffffffffff16146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590614fb9565b60405180910390fd5b8060168190555050565b6125d38484846133c4565b6125f28373ffffffffffffffffffffffffffffffffffffffff16613084565b1561263a5761260384848484613c5d565b612639576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612648613121565b73ffffffffffffffffffffffffffffffffffffffff166126666121dc565b73ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614fb9565b60405180910390fd5b80600e8190555050565b60175481565b6126d4613121565b73ffffffffffffffffffffffffffffffffffffffff166126f26121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614fb9565b60405180910390fd5b6000601160016101000a81548160ff0219169083151502179055506000601281905550565b6002600b5414156127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa906152e9565b60405180910390fd5b6002600b81905550601160009054906101000a900460ff1661280a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280190615355565b60405180910390fd5b600e5481111561284f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612846906153e7565b60405180910390fd5b60008111612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990615453565b60405180910390fd5b6010548161289e611017565b6128a891906151b5565b11156128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e0906154bf565b60405180910390fd5b600080601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546013541161294957600d548361294291906150fb565b9150612ae9565b6000600281111561295d5761295c6148b9565b5b601a60019054906101000a900460ff16600281111561297f5761297e6148b9565b5b14156129bf576016548311156129b657600d54601654846129a09190615649565b6129aa91906150fb565b915060165490506129ba565b8290505b612ae8565b600160028111156129d3576129d26148b9565b5b601a60019054906101000a900460ff1660028111156129f5576129f46148b9565b5b1415612a45576015548310612a2b57600d54601554612a1491906150fb565b915060155483612a249190615649565b9050612a40565b600d5483612a3991906150fb565b9150600090505b612ae7565b600280811115612a5857612a576148b9565b5b601a60019054906101000a900460ff166002811115612a7a57612a796148b9565b5b1415612ae6576000612a8b33612382565b90506017548111612ae0576015548410612ac657600d54601554612aaf91906150fb565b925060155484612abf9190615649565b9150612adb565b600d5484612ad491906150fb565b9250600091505b612ae4565b8391505b505b5b5b5b81341015612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b23906157a6565b60405180910390fd5b612b363384613c3f565b6000811115612bce5780601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b8a91906151b5565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060612be6826132bf565b612c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1c90615812565b60405180910390fd5b600180811115612c3857612c376148b9565b5b601a60009054906101000a900460ff166001811115612c5a57612c596148b9565b5b1415612cbe576000600c8054612c6f90615008565b905011612c8b5760405180602001604052806000815250612cb7565b600c612c9683613dae565b604051602001612ca79291906158c6565b6040516020818303038152906040525b9050612d18565b6000600c8054612ccd90615008565b905011612ce95760405180602001604052806000815250612d15565b600c612cf483613dae565b604051602001612d05929190615936565b6040516020818303038152906040525b90505b919050565b60155481565b60145481565b6000612d3482613884565b9050919050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b612e33613121565b73ffffffffffffffffffffffffffffffffffffffff16612e516121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9e90614fb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e906159d7565b60405180910390fd5b612f2081613b79565b50565b612f2b613121565b73ffffffffffffffffffffffffffffffffffffffff16612f496121dc565b73ffffffffffffffffffffffffffffffffffffffff1614612f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9690614fb9565b60405180910390fd5b6001841415612fd8576000601a60016101000a81548160ff02191690836002811115612fce57612fcd6148b9565b5b0217905550613048565b6002841415613011576001601a60016101000a81548160ff02191690836002811115613007576130066148b9565b5b0217905550613047565b6003841415613046576002601a60016101000a81548160ff021916908360028111156130405761303f6148b9565b5b02179055505b5b5b8160158190555080601681905550826013819055506001601160006101000a81548160ff02191690831515021790555050505050565b60105481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061311a575061311982613f0f565b5b9050919050565b600033905090565b61313161387a565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561318f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318690615a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f690615ad5565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816132ca6133bf565b111580156132d9575060005482105b8015613306575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006133cf826138ee565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461343a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661345b613121565b73ffffffffffffffffffffffffffffffffffffffff16148061348a575061348985613484613121565b612d84565b5b806134cf5750613498613121565b73ffffffffffffffffffffffffffffffffffffffff166134b784610e7d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613508576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561356f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61357c8585856001613ff1565b6135886000848761330d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561380857600054821461380757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138738585856001613ff7565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6138f6614520565b6000829050806139046133bf565b11613b4257600054811015613b41576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613b3f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613a23578092505050613b74565b5b600115613b3e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613b39578092505050613b74565b613a24565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613c59828260405180602001604052806000815250613ffd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c83613121565b8786866040518563ffffffff1660e01b8152600401613ca59493929190615b4a565b6020604051808303816000875af1925050508015613ce157506040513d601f19601f82011682018060405250810190613cde9190615bab565b60015b613d5b573d8060008114613d11576040519150601f19603f3d011682016040523d82523d6000602084013e613d16565b606091505b50600081511415613d53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613df6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613f0a565b600082905060005b60008214613e28578080613e1190615bd8565b915050600a82613e219190615184565b9150613dfe565b60008167ffffffffffffffff811115613e4457613e43614bc2565b5b6040519080825280601f01601f191660200182016040528015613e765781602001600182028036833780820191505090505b5090505b60008514613f0357600182613e8f9190615649565b9150600a85613e9e9190615729565b6030613eaa91906151b5565b60f81b818381518110613ec057613ebf615c21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613efc9190615184565b9450613e7a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613fda57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613fea5750613fe9826143bf565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561406a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156140a5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6140b26000858386613ff1565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506142738673ffffffffffffffffffffffffffffffffffffffff16613084565b15614338575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46142e86000878480600101955087613c5d565b61431e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061427957826000541461433357600080fd5b6143a3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210614339575b8160008190555050506143b96000858386613ff7565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b604051806101c00160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b8280546144a690615008565b90600052602060002090601f0160209004810192826144c8576000855561450f565b82601f106144e157805160ff191683800117855561450f565b8280016001018555821561450f579182015b8281111561450e5782518255916020019190600101906144f3565b5b50905061451c9190614563565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561457c576000816000905550600101614564565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6145c981614594565b81146145d457600080fd5b50565b6000813590506145e6816145c0565b92915050565b6000602082840312156146025761460161458a565b5b6000614610848285016145d7565b91505092915050565b60008115159050919050565b61462e81614619565b82525050565b60006020820190506146496000830184614625565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061467a8261464f565b9050919050565b61468a8161466f565b811461469557600080fd5b50565b6000813590506146a781614681565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6146ce816146ad565b81146146d957600080fd5b50565b6000813590506146eb816146c5565b92915050565b600080604083850312156147085761470761458a565b5b600061471685828601614698565b9250506020614727858286016146dc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561476b578082015181840152602081019050614750565b8381111561477a576000848401525b50505050565b6000601f19601f8301169050919050565b600061479c82614731565b6147a6818561473c565b93506147b681856020860161474d565b6147bf81614780565b840191505092915050565b600060208201905081810360008301526147e48184614791565b905092915050565b6000819050919050565b6147ff816147ec565b811461480a57600080fd5b50565b60008135905061481c816147f6565b92915050565b6000602082840312156148385761483761458a565b5b60006148468482850161480d565b91505092915050565b6148588161466f565b82525050565b6000602082019050614873600083018461484f565b92915050565b600080604083850312156148905761488f61458a565b5b600061489e85828601614698565b92505060206148af8582860161480d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106148f9576148f86148b9565b5b50565b600081905061490a826148e8565b919050565b600061491a826148fc565b9050919050565b61492a8161490f565b82525050565b60006020820190506149456000830184614921565b92915050565b614954816147ec565b82525050565b600060208201905061496f600083018461494b565b92915050565b60008060006060848603121561498e5761498d61458a565b5b600061499c86828701614698565b93505060206149ad86828701614698565b92505060406149be8682870161480d565b9150509250925092565b600080604083850312156149df576149de61458a565b5b60006149ed8582860161480d565b92505060206149fe8582860161480d565b9150509250929050565b6000604082019050614a1d600083018561484f565b614a2a602083018461494b565b9392505050565b600060208284031215614a4757614a4661458a565b5b6000614a5584828501614698565b91505092915050565b614a67816147ec565b82525050565b614a7681614619565b82525050565b6101c082016000820151614a936000850182614a5e565b506020820151614aa66020850182614a5e565b506040820151614ab96040850182614a5e565b506060820151614acc6060850182614a6d565b506080820151614adf6080850182614a5e565b5060a0820151614af260a0850182614a5e565b5060c0820151614b0560c0850182614a5e565b5060e0820151614b1860e0850182614a5e565b50610100820151614b2d610100850182614a5e565b50610120820151614b42610120850182614a5e565b50610140820151614b57610140850182614a5e565b50610160820151614b6c610160850182614a5e565b50610180820151614b81610180850182614a5e565b506101a0820151614b966101a0850182614a5e565b50505050565b60006101c082019050614bb26000830184614a7c565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614bfa82614780565b810181811067ffffffffffffffff82111715614c1957614c18614bc2565b5b80604052505050565b6000614c2c614580565b9050614c388282614bf1565b919050565b600067ffffffffffffffff821115614c5857614c57614bc2565b5b614c6182614780565b9050602081019050919050565b82818337600083830152505050565b6000614c90614c8b84614c3d565b614c22565b905082815260208101848484011115614cac57614cab614bbd565b5b614cb7848285614c6e565b509392505050565b600082601f830112614cd457614cd3614bb8565b5b8135614ce4848260208601614c7d565b91505092915050565b600060208284031215614d0357614d0261458a565b5b600082013567ffffffffffffffff811115614d2157614d2061458f565b5b614d2d84828501614cbf565b91505092915050565b614d3f81614619565b8114614d4a57600080fd5b50565b600081359050614d5c81614d36565b92915050565b60008060408385031215614d7957614d7861458a565b5b6000614d8785828601614698565b9250506020614d9885828601614d4d565b9150509250929050565b600067ffffffffffffffff821115614dbd57614dbc614bc2565b5b614dc682614780565b9050602081019050919050565b6000614de6614de184614da2565b614c22565b905082815260208101848484011115614e0257614e01614bbd565b5b614e0d848285614c6e565b509392505050565b600082601f830112614e2a57614e29614bb8565b5b8135614e3a848260208601614dd3565b91505092915050565b60008060008060808587031215614e5d57614e5c61458a565b5b6000614e6b87828801614698565b9450506020614e7c87828801614698565b9350506040614e8d8782880161480d565b925050606085013567ffffffffffffffff811115614eae57614ead61458f565b5b614eba87828801614e15565b91505092959194509250565b60008060408385031215614edd57614edc61458a565b5b6000614eeb85828601614698565b9250506020614efc85828601614698565b9150509250929050565b60008060008060808587031215614f2057614f1f61458a565b5b6000614f2e8782880161480d565b9450506020614f3f8782880161480d565b9350506040614f508782880161480d565b9250506060614f618782880161480d565b91505092959194509250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614fa360208361473c565b9150614fae82614f6d565b602082019050919050565b60006020820190508181036000830152614fd281614f96565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061502057607f821691505b6020821081141561503457615033614fd9565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000615096602d8361473c565b91506150a18261503a565b604082019050919050565b600060208201905081810360008301526150c581615089565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615106826147ec565b9150615111836147ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561514a576151496150cc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061518f826147ec565b915061519a836147ec565b9250826151aa576151a9615155565b5b828204905092915050565b60006151c0826147ec565b91506151cb836147ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615200576151ff6150cc565b5b828201905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b600061526760298361473c565b91506152728261520b565b604082019050919050565b600060208201905081810360008301526152968161525a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006152d3601f8361473c565b91506152de8261529d565b602082019050919050565b60006020820190508181036000830152615302816152c6565b9050919050565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b600061533f60138361473c565b915061534a82615309565b602082019050919050565b6000602082019050818103600083015261536e81615332565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e7360008201527f2070657220747800000000000000000000000000000000000000000000000000602082015250565b60006153d160278361473c565b91506153dc82615375565b604082019050919050565b60006020820190508181036000830152615400816153c4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b600061543d601a8361473c565b915061544882615407565b602082019050919050565b6000602082019050818103600083015261546c81615430565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006154a960208361473c565b91506154b482615473565b602082019050919050565b600060208201905081810360008301526154d88161549c565b9050919050565b7f57686974656c697374206d696e74206d75737420626520616374697665000000600082015250565b6000615515601d8361473c565b9150615520826154df565b602082019050919050565b6000602082019050818103600083015261554481615508565b9050919050565b7f4e6f206d6f72652077686974656c69737420746f6b656e730000000000000000600082015250565b600061558160188361473c565b915061558c8261554b565b602082019050919050565b600060208201905081810360008301526155b081615574565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782066726565207460008201527f6f6b656e73207065722077616c6c657400000000000000000000000000000000602082015250565b600061561360308361473c565b915061561e826155b7565b604082019050919050565b6000602082019050818103600083015261564281615606565b9050919050565b6000615654826147ec565b915061565f836147ec565b925082821015615672576156716150cc565b5b828203905092915050565b60008160601b9050919050565b60006156958261567d565b9050919050565b60006156a78261568a565b9050919050565b6156bf6156ba8261466f565b61569c565b82525050565b600081905092915050565b60006156db82614731565b6156e581856156c5565b93506156f581856020860161474d565b80840191505092915050565b600061570d82856156ae565b60148201915061571d82846156d0565b91508190509392505050565b6000615734826147ec565b915061573f836147ec565b92508261574f5761574e615155565b5b828206905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000615790601f8361473c565b915061579b8261575a565b602082019050919050565b600060208201905081810360008301526157bf81615783565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006157fc60158361473c565b9150615807826157c6565b602082019050919050565b6000602082019050818103600083015261582b816157ef565b9050919050565b60008190508160005260206000209050919050565b6000815461585481615008565b61585e81866156c5565b94506001821660008114615879576001811461588a576158bd565b60ff198316865281860193506158bd565b61589385615832565b60005b838110156158b557815481890152600182019150602081019050615896565b838801955050505b50505092915050565b60006158d28285615847565b91506158de82846156d0565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006159206005836156c5565b915061592b826158ea565b600582019050919050565b60006159428285615847565b915061594e82846156d0565b915061595982615913565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006159c160268361473c565b91506159cc82615965565b604082019050919050565b600060208201905081810360008301526159f0816159b4565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000615a53602a8361473c565b9150615a5e826159f7565b604082019050919050565b60006020820190508181036000830152615a8281615a46565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000615abf60198361473c565b9150615aca82615a89565b602082019050919050565b60006020820190508181036000830152615aee81615ab2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b1c82615af5565b615b268185615b00565b9350615b3681856020860161474d565b615b3f81614780565b840191505092915050565b6000608082019050615b5f600083018761484f565b615b6c602083018661484f565b615b79604083018561494b565b8181036060830152615b8b8184615b11565b905095945050505050565b600081519050615ba5816145c0565b92915050565b600060208284031215615bc157615bc061458a565b5b6000615bcf84828501615b96565b91505092915050565b6000615be3826147ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c1657615c156150cc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a970f9469459802cd607c90dba67bcd032617933453bb3410c6505a8860c8ca364736f6c634300080a0033

Deployed Bytecode Sourcemap

68485:10977:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79101:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78923:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46660:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46222:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69531:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68962:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41281:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69092:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71265:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47525:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63225:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;71851:89;;;;;;;;;;;;;:::i;:::-;;71116:140;;;;;;;;;;;;;:::i;:::-;;47766:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78571:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70206:902;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71745:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78711:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71948:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68700:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78430:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68740:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75854:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68556:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77219:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42410:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12614:103;;;;;;;;;;;;;:::i;:::-;;71486:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77450:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68864:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68635:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77574:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72378:1141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11963:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68914:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76611:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79317:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46936:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77726:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48022:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77326:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69135:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72242:128;;;;;;;;;;;;;:::i;:::-;;73527:2319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75969:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69046:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69001:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76961:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77083:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68824:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12872:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77866:556;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68783:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79101:204;79232:4;79261:36;79285:11;79261:23;:36::i;:::-;79254:43;;79101:204;;;:::o;78923:170::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79041:44:::1;79060:8;79070:14;79041:18;:44::i;:::-;78923:170:::0;;:::o;45156:100::-;45210:13;45243:5;45236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:100;:::o;46660:204::-;46728:7;46753:16;46761:7;46753;:16::i;:::-;46748:64;;46778:34;;;;;;;;;;;;;;46748:64;46832:15;:24;46848:7;46832:24;;;;;;;;;;;;;;;;;;;;;46825:31;;46660:204;;;:::o;46222:372::-;46295:13;46311:24;46327:7;46311:15;:24::i;:::-;46295:40;;46356:5;46350:11;;:2;:11;;;46346:48;;;46370:24;;;;;;;;;;;;;;46346:48;46427:5;46411:21;;:12;:10;:12::i;:::-;:21;;;46407:139;;46438:37;46455:5;46462:12;:10;:12::i;:::-;46438:16;:37::i;:::-;46434:112;;46499:35;;;;;;;;;;;;;;46434:112;46407:139;46558:28;46567:2;46571:7;46580:5;46558:8;:28::i;:::-;46284:310;46222:372;;:::o;69531:45::-;;;;;;;;;;;;;:::o;68962:30::-;;;;:::o;41281:312::-;41334:7;41559:15;:13;:15::i;:::-;41544:12;;41528:13;;:28;:46;41521:53;;41281:312;:::o;69092:34::-;;;;:::o;71265:212::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71359:21:::1;71349:6;:31;;71341:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;71449:2;71441:20;;:28;71462:6;71441:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71265:212:::0;;:::o;47525:170::-;47659:28;47669:4;47675:2;47679:7;47659:9;:28::i;:::-;47525:170;;;:::o;63225:494::-;63369:7;63378;63403:26;63432:17;:27;63450:8;63432:27;;;;;;;;;;;63403:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63504:1;63476:30;;:7;:16;;;:30;;;63472:92;;;63533:19;63523:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63472:92;63576:21;63641:17;:15;:17::i;:::-;63600:58;;63614:7;:23;;;63601:36;;:10;:36;;;;:::i;:::-;63600:58;;;;:::i;:::-;63576:82;;63679:7;:16;;;63697:13;63671:40;;;;;;63225:494;;;;;:::o;71851:89::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71920:12:::1;;;;;;;;;;;71919:13;71904:12;;:28;;;;;;;;;;;;;;;;;;71851:89::o:0;71116:140::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71164:12:::1;71179:21;71164:36;;71219:10;71211:28;;:37;71240:7;71211:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71153:103;71116:140::o:0;47766:185::-;47904:39;47921:4;47927:2;47931:7;47904:39;;;;;;;;;;;;:16;:39::i;:::-;47766:185;;;:::o;78571:132::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78676:19:::1;78655:18;:40;;;;78571:132:::0;:::o;70206:902::-;70261:18;;:::i;:::-;70299:801;;;;;;;;70338:10;;70299:801;;;;70379:14;;70299:801;;;;70420:10;;70299:801;;;;70459:12;;;;;;;;;;;70299:801;;;;;;70507:13;:11;:13::i;:::-;70299:801;;;;70553:14;;70299:801;;;;70606:21;;70299:801;;;;70663:18;;70299:801;;;;70716:18;;70299:801;;;;70769:21;70783:6;70769:13;:21::i;:::-;70299:801;;;;70823:23;:31;70847:6;70823:31;;;;;;;;;;;;;;;;70299:801;;;;70879:21;70893:6;70879:13;:21::i;:::-;70299:801;;;;70938:15;70926:27;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;:108;;70973:14;70961:26;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;:72;;71007:18;70995:30;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;:38;;71032:1;70995:38;;;71028:1;70995:38;70961:72;;;70991:1;70961:72;70926:108;;;70956:1;70926:108;70299:801;;;;;;71070:18;;70299:801;;;70292:808;;70206:902;;;:::o;71745:94::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71825:6:::1;71815:7;:16;;;;;;;;;;;;:::i;:::-;;71745:94:::0;:::o;78711:136::-;78777:7;78803:28;:36;78832:6;78803:36;;;;;;;;;;;;;;;;78796:43;;78711:136;;;:::o;71948:286::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72084:4:::1;72060:21;;:28;;;;;;;;;;;;;;;;;;72122:21;72099:20;:44;;;;72176:20;72154:19;:42;;;;72222:4;72207:12;;:19;;;;;;;;;;;;;;;;;;71948:286:::0;;:::o;68700:31::-;;;;:::o;78430:133::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78536:19:::1;78515:18;:40;;;;78430:133:::0;:::o;44964:125::-;45028:7;45055:21;45068:7;45055:12;:21::i;:::-;:26;;;45048:33;;44964:125;;;:::o;68740:34::-;;;;:::o;75854:107::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75940:13:::1;75927:10;:26;;;;75854:107:::0;:::o;68556:70::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77219:99::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77300:10:::1;77287;:23;;;;77219:99:::0;:::o;42410:206::-;42474:7;42515:1;42498:19;;:5;:19;;;42494:60;;;42526:28;;;;;;;;;;;;;;42494:60;42580:12;:19;42593:5;42580:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42572:36;;42565:43;;42410:206;;;:::o;12614:103::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:30:::1;12706:1;12679:18;:30::i;:::-;12614:103::o:0;71486:238::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71620:10:::1;;71602:14;71586:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;71578:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;71687:29;71697:2;71701:14;71687:9;:29::i;:::-;71486:238:::0;;:::o;77450:116::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77543:15:::1;77526:14;:32;;;;77450:116:::0;:::o;68864:41::-;;;;;;;;;;;;;:::o;68635:44::-;;;;:::o;77574:144::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77688:22:::1;77664:21;:46;;;;77574:144:::0;:::o;72378:1141::-;67536:1;68134:7;;:19;;68126:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;67536:1;68267:7;:18;;;;72469:12:::1;;;;;;;;;;;72461:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;72542:14;;72524;:32;;72516:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;72636:1;72619:14;:18;72611:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;72721:10;;72703:14;72687:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;72679:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;72787:21;;;;;;;;;;;72779:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;72884:1;72861:20;;:24;72853:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;72994:19;;72976:14;72933:28;:40;72962:10;72933:40;;;;;;;;;;;;;;;;:57;;;;:::i;:::-;:80;;72925:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;73121:1;73103:14;73080:20;;:37;;;;:::i;:::-;:42;73077:110;;73155:20;;73138:37;;73077:110;73197:37;73207:10;73219:14;73197:9;:37::i;:::-;73331:14;73288:28;:40;73317:10;73288:40;;;;;;;;;;;;;;;;:57;;;;:::i;:::-;73245:28;:40;73274:10;73245:40;;;;;;;;;;;;;;;:100;;;;73402:14;73379:20;;:37;;;;:::i;:::-;73356:20;:60;;;;73454:1;73430:20;;:25;73427:85;;73495:5;73471:21;;:29;;;;;;;;;;;;;;;;;;73427:85;67492:1:::0;68446:7;:22;;;;72378:1141;:::o;11963:87::-;12009:7;12036:6;;;;;;;;;;;12029:13;;11963:87;:::o;68914:39::-;;;;:::o;76611:223::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76692:1:::1;76684:4;:9;76680:147;;;76725:21;76710:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;76680:147;;;76794:21;76779:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;76680:147;76611:223:::0;:::o;45325:104::-;45381:13;45414:7;45407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45325:104;:::o;79317:142::-;79374:4;79448:3;79430;79435:6;:4;:6::i;:::-;79413:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79403:40;;;;;;79397:48;;:54;;;;:::i;:::-;79390:61;;79317:142;;;:::o;46936:287::-;47047:12;:10;:12::i;:::-;47035:24;;:8;:24;;;47031:54;;;47068:17;;;;;;;;;;;;;;47031:54;47143:8;47098:18;:32;47117:12;:10;:12::i;:::-;47098:32;;;;;;;;;;;;;;;:42;47131:8;47098:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47196:8;47167:48;;47182:12;:10;:12::i;:::-;47167:48;;;47206:8;47167:48;;;;;;:::i;:::-;;;;;;;;46936:287;;:::o;77726:132::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77831:19:::1;77810:18;:40;;;;77726:132:::0;:::o;48022:370::-;48189:28;48199:4;48205:2;48209:7;48189:9;:28::i;:::-;48232:15;:2;:13;;;:15::i;:::-;48228:157;;;48253:56;48284:4;48290:2;48294:7;48303:5;48253:30;:56::i;:::-;48249:136;;48333:40;;;;;;;;;;;;;;48249:136;48228:157;48022:370;;;;:::o;77326:116::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77419:15:::1;77402:14;:32;;;;77326:116:::0;:::o;69135:35::-;;;;:::o;72242:128::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72322:5:::1;72298:21;;:29;;;;;;;;;;;;;;;;;;72361:1;72338:20;:24;;;;72242:128::o:0;73527:2319::-;67536:1;68134:7;;:19;;68126:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;67536:1;68267:7;:18;;;;73614:12:::1;;;;;;;;;;;73606:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;73687:14;;73669;:32;;73661:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;73781:1;73764:14;:18;73756:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;73866:10;;73848:14;73832:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;73824:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;73926:13;73954:21:::0;74013:23:::1;:35;74037:10;74013:35;;;;;;;;;;;;;;;;73995:14;;:53;73990:1561;;74092:10;;74075:14;:27;;;;:::i;:::-;74067:35;;73990:1561;;;74158:15;74146:27;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;74143:1397;;;74213:18;;74196:14;:35;74193:281;;;74303:10;;74281:18;;74264:14;:35;;;;:::i;:::-;74263:50;;;;:::i;:::-;74255:58;;74355:18;;74336:37;;74193:281;;;74440:14;74421:33;;74193:281;74143:1397;;;74510:14;74498:26;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;74495:1045;;;74565:21;;74547:14;:39;74544:334;;74642:10;;74618:21;;:34;;;;:::i;:::-;74610:42;;74711:21;;74694:14;:38;;;;:::i;:::-;74675:57;;74544:334;;;74805:10;;74788:14;:27;;;;:::i;:::-;74780:35;;74857:1;74838:20;;74544:334;74495:1045;;;74914:18;74902:30:::0;::::1;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;74899:641;;;74952:12;74967:25;74981:10;74967:13;:25::i;:::-;74952:40;;75025:18;;75014:7;:29;75011:514;;75088:21;;75070:14;:39;75067:358;;75169:10;;75145:21;;:34;;;;:::i;:::-;75137:42;;75242:21;;75225:14;:38;;;;:::i;:::-;75206:57;;75067:358;;;75344:10;;75327:14;:27;;;;:::i;:::-;75319:35;;75400:1;75381:20;;75067:358;75011:514;;;75491:14;75472:33;;75011:514;74933:607;74899:641;74495:1045;74143:1397;73990:1561;75584:5;75571:9;:18;;75563:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;75636:37;75646:10;75658:14;75636:9;:37::i;:::-;75708:1;75689:16;:20;75686:143;;;75801:16;75763:23;:35;75787:10;75763:35;;;;;;;;;;;;;;;;:54;;;;:::i;:::-;75725:23;:35;75749:10;75725:35;;;;;;;;;;;;;;;:92;;;;75686:143;73595:2251;;67492:1:::0;68446:7;:22;;;;73527:2319;:::o;75969:634::-;76035:13;76075:17;76083:8;76075:7;:17::i;:::-;76067:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;76149:21;76133:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;76129:467;;;76216:1;76198:7;76192:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;76274:7;76298:26;76315:8;76298:16;:26::i;:::-;76241:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76192:165;76185:172;;;;76129:467;76419:1;76401:7;76395:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;76477:7;76501:26;76518:8;76501:16;:26::i;:::-;76444:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76395:189;76388:196;;75969:634;;;;:::o;69046:37::-;;;;:::o;69001:36::-;;;;:::o;76961:113::-;77019:7;77046:20;77060:5;77046:13;:20::i;:::-;77039:27;;76961:113;;;:::o;77083:127::-;77145:7;77172:23;:30;77196:5;77172:30;;;;;;;;;;;;;;;;77165:37;;77083:127;;;:::o;47294:164::-;47391:4;47415:18;:25;47434:5;47415:25;;;;;;;;;;;;;;;:35;47441:8;47415:35;;;;;;;;;;;;;;;;;;;;;;;;;47408:42;;47294:164;;;;:::o;68824:31::-;;;;;;;;;;;;;:::o;12872:201::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12981:1:::1;12961:22;;:8;:22;;;;12953:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13037:28;13056:8;13037:18;:28::i;:::-;12872:201:::0;:::o;77866:556::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78024:1:::1;78011:9;:14;78008:226;;;78052:15;78041:8;;:26;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;78008:226;;;78101:1;78088:9;:14;78085:149;;;78129:14;78118:8;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;78085:149;;;78176:1;78163:9;:14;78160:74;;;78204:18;78193:8;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;78160:74;78085:149;78008:226;78268:22;78244:21;:46;;;;78322:19;78301:18;:40;;;;78369:15;78352:14;:32;;;;78410:4;78395:12;;:19;;;;;;;;;;;;;;;;;;77866:556:::0;;;;:::o;68783:32::-;;;;:::o;14581:326::-;14641:4;14898:1;14876:7;:19;;;:23;14869:30;;14581:326;;;:::o;62955:215::-;63057:4;63096:26;63081:41;;;:11;:41;;;;:81;;;;63126:36;63150:11;63126:23;:36::i;:::-;63081:81;63074:88;;62955:215;;;:::o;797:98::-;850:7;877:10;870:17;;797:98;:::o;64369:332::-;64488:17;:15;:17::i;:::-;64472:33;;:12;:33;;;;64464:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64591:1;64571:22;;:8;:22;;;;64563:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;64658:35;;;;;;;;64670:8;64658:35;;;;;;64680:12;64658:35;;;;;64636:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64369:332;;:::o;48647:174::-;48704:4;48747:7;48728:15;:13;:15::i;:::-;:26;;:53;;;;;48768:13;;48758:7;:23;48728:53;:85;;;;;48786:11;:20;48798:7;48786:20;;;;;;;;;;;:27;;;;;;;;;;;;48785:28;48728:85;48721:92;;48647:174;;;:::o;57869:196::-;58011:2;57984:15;:24;58000:7;57984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58049:7;58045:2;58029:28;;58038:5;58029:28;;;;;;;;;;;;57869:196;;;:::o;41055:92::-;41111:7;41055:92;:::o;52817:2130::-;52932:35;52970:21;52983:7;52970:12;:21::i;:::-;52932:59;;53030:4;53008:26;;:13;:18;;;:26;;;53004:67;;53043:28;;;;;;;;;;;;;;53004:67;53084:22;53126:4;53110:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53147:36;53164:4;53170:12;:10;:12::i;:::-;53147:16;:36::i;:::-;53110:73;:126;;;;53224:12;:10;:12::i;:::-;53200:36;;:20;53212:7;53200:11;:20::i;:::-;:36;;;53110:126;53084:153;;53255:17;53250:66;;53281:35;;;;;;;;;;;;;;53250:66;53345:1;53331:16;;:2;:16;;;53327:52;;;53356:23;;;;;;;;;;;;;;53327:52;53392:43;53414:4;53420:2;53424:7;53433:1;53392:21;:43::i;:::-;53500:35;53517:1;53521:7;53530:4;53500:8;:35::i;:::-;53861:1;53831:12;:18;53844:4;53831:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53905:1;53877:12;:16;53890:2;53877:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53923:31;53957:11;:20;53969:7;53957:20;;;;;;;;;;;53923:54;;54008:2;53992:8;:13;;;:18;;;;;;;;;;;;;;;;;;54058:15;54025:8;:23;;;:49;;;;;;;;;;;;;;;;;;54326:19;54358:1;54348:7;:11;54326:33;;54374:31;54408:11;:24;54420:11;54408:24;;;;;;;;;;;54374:58;;54476:1;54451:27;;:8;:13;;;;;;;;;;;;:27;;;54447:384;;;54661:13;;54646:11;:28;54642:174;;54715:4;54699:8;:13;;;:20;;;;;;;;;;;;;;;;;;54768:13;:28;;;54742:8;:23;;;:54;;;;;;;;;;;;;;;;;;54642:174;54447:384;53806:1036;;;54878:7;54874:2;54859:27;;54868:4;54859:27;;;;;;;;;;;;54897:42;54918:4;54924:2;54928:7;54937:1;54897:20;:42::i;:::-;52921:2026;;52817:2130;;;:::o;64001:97::-;64059:6;64085:5;64078:12;;64001:97;:::o;42698:137::-;42759:7;42794:12;:19;42807:5;42794:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;42786:41;;42779:48;;42698:137;;;:::o;43791:1111::-;43853:21;;:::i;:::-;43887:12;43902:7;43887:22;;43970:4;43951:15;:13;:15::i;:::-;:23;43947:888;;43987:13;;43980:4;:20;43976:859;;;44021:31;44055:11;:17;44067:4;44055:17;;;;;;;;;;;44021:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44096:9;:16;;;44091:729;;44167:1;44141:28;;:9;:14;;;:28;;;44137:101;;44205:9;44198:16;;;;;;44137:101;44540:261;44547:4;44540:261;;;44580:6;;;;;;;;44625:11;:17;44637:4;44625:17;;;;;;;;;;;44613:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:1;44673:28;;:9;:14;;;:28;;;44669:109;;44741:9;44734:16;;;;;;44669:109;44540:261;;;44091:729;44002:833;43976:859;43947:888;44863:31;;;;;;;;;;;;;;43791:1111;;;;:::o;13233:191::-;13307:16;13326:6;;;;;;;;;;;13307:25;;13352:8;13343:6;;:17;;;;;;;;;;;;;;;;;;13407:8;13376:40;;13397:8;13376:40;;;;;;;;;;;;13296:128;13233:191;:::o;48905:104::-;48974:27;48984:2;48988:8;48974:27;;;;;;;;;;;;:9;:27::i;:::-;48905:104;;:::o;58557:667::-;58720:4;58757:2;58741:36;;;58778:12;:10;:12::i;:::-;58792:4;58798:7;58807:5;58741:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58737:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58992:1;58975:6;:13;:18;58971:235;;;59021:40;;;;;;;;;;;;;;58971:235;59164:6;59158:13;59149:6;59145:2;59141:15;59134:38;58737:480;58870:45;;;58860:55;;;:6;:55;;;;58853:62;;;58557:667;;;;;;:::o;22135:723::-;22191:13;22421:1;22412:5;:10;22408:53;;;22439:10;;;;;;;;;;;;;;;;;;;;;22408:53;22471:12;22486:5;22471:20;;22502:14;22527:78;22542:1;22534:4;:9;22527:78;;22560:8;;;;;:::i;:::-;;;;22591:2;22583:10;;;;;:::i;:::-;;;22527:78;;;22615:19;22647:6;22637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22615:39;;22665:154;22681:1;22672:5;:10;22665:154;;22709:1;22699:11;;;;;:::i;:::-;;;22776:2;22768:5;:10;;;;:::i;:::-;22755:2;:24;;;;:::i;:::-;22742:39;;22725:6;22732;22725:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;22805:2;22796:11;;;;;:::i;:::-;;;22665:154;;;22843:6;22829:21;;;;;22135:723;;;;:::o;42041:305::-;42143:4;42195:25;42180:40;;;:11;:40;;;;:105;;;;42252:33;42237:48;;;:11;:48;;;;42180:105;:158;;;;42302:36;42326:11;42302:23;:36::i;:::-;42180:158;42160:178;;42041:305;;;:::o;59872:159::-;;;;;:::o;60690:158::-;;;;;:::o;49382:1749::-;49505:20;49528:13;;49505:36;;49570:1;49556:16;;:2;:16;;;49552:48;;;49581:19;;;;;;;;;;;;;;49552:48;49627:1;49615:8;:13;49611:44;;;49637:18;;;;;;;;;;;;;;49611:44;49668:61;49698:1;49702:2;49706:12;49720:8;49668:21;:61::i;:::-;50041:8;50006:12;:16;50019:2;50006:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50105:8;50065:12;:16;50078:2;50065:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50164:2;50131:11;:25;50143:12;50131:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50231:15;50181:11;:25;50193:12;50181:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50264:20;50287:12;50264:35;;50314:11;50343:8;50328:12;:23;50314:37;;50372:15;:2;:13;;;:15::i;:::-;50368:631;;;50408:313;50464:12;50460:2;50439:38;;50456:1;50439:38;;;;;;;;;;;;50505:69;50544:1;50548:2;50552:14;;;;;;50568:5;50505:30;:69::i;:::-;50500:174;;50610:40;;;;;;;;;;;;;;50500:174;50716:3;50701:12;:18;50408:313;;50802:12;50785:13;;:29;50781:43;;50816:8;;;50781:43;50368:631;;;50865:119;50921:14;;;;;;50917:2;50896:40;;50913:1;50896:40;;;;;;;;;;;;50979:3;50964:12;:18;50865:119;;50368:631;51029:12;51013:13;:28;;;;49981:1072;;51063:60;51092:1;51096:2;51100:12;51114:8;51063:20;:60::i;:::-;49494:1637;49382:1749;;;:::o;10821:157::-;10906:4;10945:25;10930:40;;;:11;:40;;;;10923:47;;10821:157;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:180::-;5848:77;5845:1;5838:88;5945:4;5942:1;5935:15;5969:4;5966:1;5959:15;5986:118;6072:1;6065:5;6062:12;6052:46;;6078:18;;:::i;:::-;6052:46;5986:118;:::o;6110:137::-;6160:7;6189:5;6178:16;;6195:46;6235:5;6195:46;:::i;:::-;6110:137;;;:::o;6253:::-;6314:9;6347:37;6378:5;6347:37;:::i;:::-;6334:50;;6253:137;;;:::o;6396:153::-;6494:48;6536:5;6494:48;:::i;:::-;6489:3;6482:61;6396:153;;:::o;6555:244::-;6659:4;6697:2;6686:9;6682:18;6674:26;;6710:82;6789:1;6778:9;6774:17;6765:6;6710:82;:::i;:::-;6555:244;;;;:::o;6805:118::-;6892:24;6910:5;6892:24;:::i;:::-;6887:3;6880:37;6805:118;;:::o;6929:222::-;7022:4;7060:2;7049:9;7045:18;7037:26;;7073:71;7141:1;7130:9;7126:17;7117:6;7073:71;:::i;:::-;6929:222;;;;:::o;7157:619::-;7234:6;7242;7250;7299:2;7287:9;7278:7;7274:23;7270:32;7267:119;;;7305:79;;:::i;:::-;7267:119;7425:1;7450:53;7495:7;7486:6;7475:9;7471:22;7450:53;:::i;:::-;7440:63;;7396:117;7552:2;7578:53;7623:7;7614:6;7603:9;7599:22;7578:53;:::i;:::-;7568:63;;7523:118;7680:2;7706:53;7751:7;7742:6;7731:9;7727:22;7706:53;:::i;:::-;7696:63;;7651:118;7157:619;;;;;:::o;7782:474::-;7850:6;7858;7907:2;7895:9;7886:7;7882:23;7878:32;7875:119;;;7913:79;;:::i;:::-;7875:119;8033:1;8058:53;8103:7;8094:6;8083:9;8079:22;8058:53;:::i;:::-;8048:63;;8004:117;8160:2;8186:53;8231:7;8222:6;8211:9;8207:22;8186:53;:::i;:::-;8176:63;;8131:118;7782:474;;;;;:::o;8262:332::-;8383:4;8421:2;8410:9;8406:18;8398:26;;8434:71;8502:1;8491:9;8487:17;8478:6;8434:71;:::i;:::-;8515:72;8583:2;8572:9;8568:18;8559:6;8515:72;:::i;:::-;8262:332;;;;;:::o;8600:329::-;8659:6;8708:2;8696:9;8687:7;8683:23;8679:32;8676:119;;;8714:79;;:::i;:::-;8676:119;8834:1;8859:53;8904:7;8895:6;8884:9;8880:22;8859:53;:::i;:::-;8849:63;;8805:117;8600:329;;;;:::o;8935:108::-;9012:24;9030:5;9012:24;:::i;:::-;9007:3;9000:37;8935:108;;:::o;9049:99::-;9120:21;9135:5;9120:21;:::i;:::-;9115:3;9108:34;9049:99;;:::o;9216:2752::-;9371:6;9366:3;9362:16;9466:4;9459:5;9455:16;9449:23;9485:63;9542:4;9537:3;9533:14;9519:12;9485:63;:::i;:::-;9388:170;9650:4;9643:5;9639:16;9633:23;9669:63;9726:4;9721:3;9717:14;9703:12;9669:63;:::i;:::-;9568:174;9830:4;9823:5;9819:16;9813:23;9849:63;9906:4;9901:3;9897:14;9883:12;9849:63;:::i;:::-;9752:170;10012:4;10005:5;10001:16;9995:23;10031:57;10082:4;10077:3;10073:14;10059:12;10031:57;:::i;:::-;9932:166;10187:4;10180:5;10176:16;10170:23;10206:63;10263:4;10258:3;10254:14;10240:12;10206:63;:::i;:::-;10108:171;10371:4;10364:5;10360:16;10354:23;10390:63;10447:4;10442:3;10438:14;10424:12;10390:63;:::i;:::-;10289:174;10562:4;10555:5;10551:16;10545:23;10581:63;10638:4;10633:3;10629:14;10615:12;10581:63;:::i;:::-;10473:181;10750:4;10743:5;10739:16;10733:23;10769:63;10826:4;10821:3;10817:14;10803:12;10769:63;:::i;:::-;10664:178;10938:6;10931:5;10927:18;10921:25;10959:65;11016:6;11011:3;11007:16;10993:12;10959:65;:::i;:::-;10852:182;11122:6;11115:5;11111:18;11105:25;11143:65;11200:6;11195:3;11191:16;11177:12;11143:65;:::i;:::-;11044:174;11310:6;11303:5;11299:18;11293:25;11331:65;11388:6;11383:3;11379:16;11365:12;11331:65;:::i;:::-;11228:178;11491:6;11484:5;11480:18;11474:25;11512:65;11569:6;11564:3;11560:16;11546:12;11512:65;:::i;:::-;11416:171;11673:6;11666:5;11662:18;11656:25;11694:65;11751:6;11746:3;11742:16;11728:12;11694:65;:::i;:::-;11597:172;11865:6;11858:5;11854:18;11848:25;11886:65;11943:6;11938:3;11934:16;11920:12;11886:65;:::i;:::-;11779:182;9340:2628;9216:2752;;:::o;11974:339::-;12125:4;12163:3;12152:9;12148:19;12140:27;;12177:129;12303:1;12292:9;12288:17;12279:6;12177:129;:::i;:::-;11974:339;;;;:::o;12319:117::-;12428:1;12425;12418:12;12442:117;12551:1;12548;12541:12;12565:180;12613:77;12610:1;12603:88;12710:4;12707:1;12700:15;12734:4;12731:1;12724:15;12751:281;12834:27;12856:4;12834:27;:::i;:::-;12826:6;12822:40;12964:6;12952:10;12949:22;12928:18;12916:10;12913:34;12910:62;12907:88;;;12975:18;;:::i;:::-;12907:88;13015:10;13011:2;13004:22;12794:238;12751:281;;:::o;13038:129::-;13072:6;13099:20;;:::i;:::-;13089:30;;13128:33;13156:4;13148:6;13128:33;:::i;:::-;13038:129;;;:::o;13173:308::-;13235:4;13325:18;13317:6;13314:30;13311:56;;;13347:18;;:::i;:::-;13311:56;13385:29;13407:6;13385:29;:::i;:::-;13377:37;;13469:4;13463;13459:15;13451:23;;13173:308;;;:::o;13487:154::-;13571:6;13566:3;13561;13548:30;13633:1;13624:6;13619:3;13615:16;13608:27;13487:154;;;:::o;13647:412::-;13725:5;13750:66;13766:49;13808:6;13766:49;:::i;:::-;13750:66;:::i;:::-;13741:75;;13839:6;13832:5;13825:21;13877:4;13870:5;13866:16;13915:3;13906:6;13901:3;13897:16;13894:25;13891:112;;;13922:79;;:::i;:::-;13891:112;14012:41;14046:6;14041:3;14036;14012:41;:::i;:::-;13731:328;13647:412;;;;;:::o;14079:340::-;14135:5;14184:3;14177:4;14169:6;14165:17;14161:27;14151:122;;14192:79;;:::i;:::-;14151:122;14309:6;14296:20;14334:79;14409:3;14401:6;14394:4;14386:6;14382:17;14334:79;:::i;:::-;14325:88;;14141:278;14079:340;;;;:::o;14425:509::-;14494:6;14543:2;14531:9;14522:7;14518:23;14514:32;14511:119;;;14549:79;;:::i;:::-;14511:119;14697:1;14686:9;14682:17;14669:31;14727:18;14719:6;14716:30;14713:117;;;14749:79;;:::i;:::-;14713:117;14854:63;14909:7;14900:6;14889:9;14885:22;14854:63;:::i;:::-;14844:73;;14640:287;14425:509;;;;:::o;14940:116::-;15010:21;15025:5;15010:21;:::i;:::-;15003:5;15000:32;14990:60;;15046:1;15043;15036:12;14990:60;14940:116;:::o;15062:133::-;15105:5;15143:6;15130:20;15121:29;;15159:30;15183:5;15159:30;:::i;:::-;15062:133;;;;:::o;15201:468::-;15266:6;15274;15323:2;15311:9;15302:7;15298:23;15294:32;15291:119;;;15329:79;;:::i;:::-;15291:119;15449:1;15474:53;15519:7;15510:6;15499:9;15495:22;15474:53;:::i;:::-;15464:63;;15420:117;15576:2;15602:50;15644:7;15635:6;15624:9;15620:22;15602:50;:::i;:::-;15592:60;;15547:115;15201:468;;;;;:::o;15675:307::-;15736:4;15826:18;15818:6;15815:30;15812:56;;;15848:18;;:::i;:::-;15812:56;15886:29;15908:6;15886:29;:::i;:::-;15878:37;;15970:4;15964;15960:15;15952:23;;15675:307;;;:::o;15988:410::-;16065:5;16090:65;16106:48;16147:6;16106:48;:::i;:::-;16090:65;:::i;:::-;16081:74;;16178:6;16171:5;16164:21;16216:4;16209:5;16205:16;16254:3;16245:6;16240:3;16236:16;16233:25;16230:112;;;16261:79;;:::i;:::-;16230:112;16351:41;16385:6;16380:3;16375;16351:41;:::i;:::-;16071:327;15988:410;;;;;:::o;16417:338::-;16472:5;16521:3;16514:4;16506:6;16502:17;16498:27;16488:122;;16529:79;;:::i;:::-;16488:122;16646:6;16633:20;16671:78;16745:3;16737:6;16730:4;16722:6;16718:17;16671:78;:::i;:::-;16662:87;;16478:277;16417:338;;;;:::o;16761:943::-;16856:6;16864;16872;16880;16929:3;16917:9;16908:7;16904:23;16900:33;16897:120;;;16936:79;;:::i;:::-;16897:120;17056:1;17081:53;17126:7;17117:6;17106:9;17102:22;17081:53;:::i;:::-;17071:63;;17027:117;17183:2;17209:53;17254:7;17245:6;17234:9;17230:22;17209:53;:::i;:::-;17199:63;;17154:118;17311:2;17337:53;17382:7;17373:6;17362:9;17358:22;17337:53;:::i;:::-;17327:63;;17282:118;17467:2;17456:9;17452:18;17439:32;17498:18;17490:6;17487:30;17484:117;;;17520:79;;:::i;:::-;17484:117;17625:62;17679:7;17670:6;17659:9;17655:22;17625:62;:::i;:::-;17615:72;;17410:287;16761:943;;;;;;;:::o;17710:474::-;17778:6;17786;17835:2;17823:9;17814:7;17810:23;17806:32;17803:119;;;17841:79;;:::i;:::-;17803:119;17961:1;17986:53;18031:7;18022:6;18011:9;18007:22;17986:53;:::i;:::-;17976:63;;17932:117;18088:2;18114:53;18159:7;18150:6;18139:9;18135:22;18114:53;:::i;:::-;18104:63;;18059:118;17710:474;;;;;:::o;18190:765::-;18276:6;18284;18292;18300;18349:3;18337:9;18328:7;18324:23;18320:33;18317:120;;;18356:79;;:::i;:::-;18317:120;18476:1;18501:53;18546:7;18537:6;18526:9;18522:22;18501:53;:::i;:::-;18491:63;;18447:117;18603:2;18629:53;18674:7;18665:6;18654:9;18650:22;18629:53;:::i;:::-;18619:63;;18574:118;18731:2;18757:53;18802:7;18793:6;18782:9;18778:22;18757:53;:::i;:::-;18747:63;;18702:118;18859:2;18885:53;18930:7;18921:6;18910:9;18906:22;18885:53;:::i;:::-;18875:63;;18830:118;18190:765;;;;;;;:::o;18961:182::-;19101:34;19097:1;19089:6;19085:14;19078:58;18961:182;:::o;19149:366::-;19291:3;19312:67;19376:2;19371:3;19312:67;:::i;:::-;19305:74;;19388:93;19477:3;19388:93;:::i;:::-;19506:2;19501:3;19497:12;19490:19;;19149:366;;;:::o;19521:419::-;19687:4;19725:2;19714:9;19710:18;19702:26;;19774:9;19768:4;19764:20;19760:1;19749:9;19745:17;19738:47;19802:131;19928:4;19802:131;:::i;:::-;19794:139;;19521:419;;;:::o;19946:180::-;19994:77;19991:1;19984:88;20091:4;20088:1;20081:15;20115:4;20112:1;20105:15;20132:320;20176:6;20213:1;20207:4;20203:12;20193:22;;20260:1;20254:4;20250:12;20281:18;20271:81;;20337:4;20329:6;20325:17;20315:27;;20271:81;20399:2;20391:6;20388:14;20368:18;20365:38;20362:84;;;20418:18;;:::i;:::-;20362:84;20183:269;20132:320;;;:::o;20458:232::-;20598:34;20594:1;20586:6;20582:14;20575:58;20667:15;20662:2;20654:6;20650:15;20643:40;20458:232;:::o;20696:366::-;20838:3;20859:67;20923:2;20918:3;20859:67;:::i;:::-;20852:74;;20935:93;21024:3;20935:93;:::i;:::-;21053:2;21048:3;21044:12;21037:19;;20696:366;;;:::o;21068:419::-;21234:4;21272:2;21261:9;21257:18;21249:26;;21321:9;21315:4;21311:20;21307:1;21296:9;21292:17;21285:47;21349:131;21475:4;21349:131;:::i;:::-;21341:139;;21068:419;;;:::o;21493:180::-;21541:77;21538:1;21531:88;21638:4;21635:1;21628:15;21662:4;21659:1;21652:15;21679:348;21719:7;21742:20;21760:1;21742:20;:::i;:::-;21737:25;;21776:20;21794:1;21776:20;:::i;:::-;21771:25;;21964:1;21896:66;21892:74;21889:1;21886:81;21881:1;21874:9;21867:17;21863:105;21860:131;;;21971:18;;:::i;:::-;21860:131;22019:1;22016;22012:9;22001:20;;21679:348;;;;:::o;22033:180::-;22081:77;22078:1;22071:88;22178:4;22175:1;22168:15;22202:4;22199:1;22192:15;22219:185;22259:1;22276:20;22294:1;22276:20;:::i;:::-;22271:25;;22310:20;22328:1;22310:20;:::i;:::-;22305:25;;22349:1;22339:35;;22354:18;;:::i;:::-;22339:35;22396:1;22393;22389:9;22384:14;;22219:185;;;;:::o;22410:305::-;22450:3;22469:20;22487:1;22469:20;:::i;:::-;22464:25;;22503:20;22521:1;22503:20;:::i;:::-;22498:25;;22657:1;22589:66;22585:74;22582:1;22579:81;22576:107;;;22663:18;;:::i;:::-;22576:107;22707:1;22704;22700:9;22693:16;;22410:305;;;;:::o;22721:228::-;22861:34;22857:1;22849:6;22845:14;22838:58;22930:11;22925:2;22917:6;22913:15;22906:36;22721:228;:::o;22955:366::-;23097:3;23118:67;23182:2;23177:3;23118:67;:::i;:::-;23111:74;;23194:93;23283:3;23194:93;:::i;:::-;23312:2;23307:3;23303:12;23296:19;;22955:366;;;:::o;23327:419::-;23493:4;23531:2;23520:9;23516:18;23508:26;;23580:9;23574:4;23570:20;23566:1;23555:9;23551:17;23544:47;23608:131;23734:4;23608:131;:::i;:::-;23600:139;;23327:419;;;:::o;23752:181::-;23892:33;23888:1;23880:6;23876:14;23869:57;23752:181;:::o;23939:366::-;24081:3;24102:67;24166:2;24161:3;24102:67;:::i;:::-;24095:74;;24178:93;24267:3;24178:93;:::i;:::-;24296:2;24291:3;24287:12;24280:19;;23939:366;;;:::o;24311:419::-;24477:4;24515:2;24504:9;24500:18;24492:26;;24564:9;24558:4;24554:20;24550:1;24539:9;24535:17;24528:47;24592:131;24718:4;24592:131;:::i;:::-;24584:139;;24311:419;;;:::o;24736:169::-;24876:21;24872:1;24864:6;24860:14;24853:45;24736:169;:::o;24911:366::-;25053:3;25074:67;25138:2;25133:3;25074:67;:::i;:::-;25067:74;;25150:93;25239:3;25150:93;:::i;:::-;25268:2;25263:3;25259:12;25252:19;;24911:366;;;:::o;25283:419::-;25449:4;25487:2;25476:9;25472:18;25464:26;;25536:9;25530:4;25526:20;25522:1;25511:9;25507:17;25500:47;25564:131;25690:4;25564:131;:::i;:::-;25556:139;;25283:419;;;:::o;25708:226::-;25848:34;25844:1;25836:6;25832:14;25825:58;25917:9;25912:2;25904:6;25900:15;25893:34;25708:226;:::o;25940:366::-;26082:3;26103:67;26167:2;26162:3;26103:67;:::i;:::-;26096:74;;26179:93;26268:3;26179:93;:::i;:::-;26297:2;26292:3;26288:12;26281:19;;25940:366;;;:::o;26312:419::-;26478:4;26516:2;26505:9;26501:18;26493:26;;26565:9;26559:4;26555:20;26551:1;26540:9;26536:17;26529:47;26593:131;26719:4;26593:131;:::i;:::-;26585:139;;26312:419;;;:::o;26737:176::-;26877:28;26873:1;26865:6;26861:14;26854:52;26737:176;:::o;26919:366::-;27061:3;27082:67;27146:2;27141:3;27082:67;:::i;:::-;27075:74;;27158:93;27247:3;27158:93;:::i;:::-;27276:2;27271:3;27267:12;27260:19;;26919:366;;;:::o;27291:419::-;27457:4;27495:2;27484:9;27480:18;27472:26;;27544:9;27538:4;27534:20;27530:1;27519:9;27515:17;27508:47;27572:131;27698:4;27572:131;:::i;:::-;27564:139;;27291:419;;;:::o;27716:182::-;27856:34;27852:1;27844:6;27840:14;27833:58;27716:182;:::o;27904:366::-;28046:3;28067:67;28131:2;28126:3;28067:67;:::i;:::-;28060:74;;28143:93;28232:3;28143:93;:::i;:::-;28261:2;28256:3;28252:12;28245:19;;27904:366;;;:::o;28276:419::-;28442:4;28480:2;28469:9;28465:18;28457:26;;28529:9;28523:4;28519:20;28515:1;28504:9;28500:17;28493:47;28557:131;28683:4;28557:131;:::i;:::-;28549:139;;28276:419;;;:::o;28701:179::-;28841:31;28837:1;28829:6;28825:14;28818:55;28701:179;:::o;28886:366::-;29028:3;29049:67;29113:2;29108:3;29049:67;:::i;:::-;29042:74;;29125:93;29214:3;29125:93;:::i;:::-;29243:2;29238:3;29234:12;29227:19;;28886:366;;;:::o;29258:419::-;29424:4;29462:2;29451:9;29447:18;29439:26;;29511:9;29505:4;29501:20;29497:1;29486:9;29482:17;29475:47;29539:131;29665:4;29539:131;:::i;:::-;29531:139;;29258:419;;;:::o;29683:174::-;29823:26;29819:1;29811:6;29807:14;29800:50;29683:174;:::o;29863:366::-;30005:3;30026:67;30090:2;30085:3;30026:67;:::i;:::-;30019:74;;30102:93;30191:3;30102:93;:::i;:::-;30220:2;30215:3;30211:12;30204:19;;29863:366;;;:::o;30235:419::-;30401:4;30439:2;30428:9;30424:18;30416:26;;30488:9;30482:4;30478:20;30474:1;30463:9;30459:17;30452:47;30516:131;30642:4;30516:131;:::i;:::-;30508:139;;30235:419;;;:::o;30660:235::-;30800:34;30796:1;30788:6;30784:14;30777:58;30869:18;30864:2;30856:6;30852:15;30845:43;30660:235;:::o;30901:366::-;31043:3;31064:67;31128:2;31123:3;31064:67;:::i;:::-;31057:74;;31140:93;31229:3;31140:93;:::i;:::-;31258:2;31253:3;31249:12;31242:19;;30901:366;;;:::o;31273:419::-;31439:4;31477:2;31466:9;31462:18;31454:26;;31526:9;31520:4;31516:20;31512:1;31501:9;31497:17;31490:47;31554:131;31680:4;31554:131;:::i;:::-;31546:139;;31273:419;;;:::o;31698:191::-;31738:4;31758:20;31776:1;31758:20;:::i;:::-;31753:25;;31792:20;31810:1;31792:20;:::i;:::-;31787:25;;31831:1;31828;31825:8;31822:34;;;31836:18;;:::i;:::-;31822:34;31881:1;31878;31874:9;31866:17;;31698:191;;;;:::o;31895:94::-;31928:8;31976:5;31972:2;31968:14;31947:35;;31895:94;;;:::o;31995:::-;32034:7;32063:20;32077:5;32063:20;:::i;:::-;32052:31;;31995:94;;;:::o;32095:100::-;32134:7;32163:26;32183:5;32163:26;:::i;:::-;32152:37;;32095:100;;;:::o;32201:157::-;32306:45;32326:24;32344:5;32326:24;:::i;:::-;32306:45;:::i;:::-;32301:3;32294:58;32201:157;;:::o;32364:148::-;32466:11;32503:3;32488:18;;32364:148;;;;:::o;32518:377::-;32624:3;32652:39;32685:5;32652:39;:::i;:::-;32707:89;32789:6;32784:3;32707:89;:::i;:::-;32700:96;;32805:52;32850:6;32845:3;32838:4;32831:5;32827:16;32805:52;:::i;:::-;32882:6;32877:3;32873:16;32866:23;;32628:267;32518:377;;;;:::o;32901:416::-;33061:3;33076:75;33147:3;33138:6;33076:75;:::i;:::-;33176:2;33171:3;33167:12;33160:19;;33196:95;33287:3;33278:6;33196:95;:::i;:::-;33189:102;;33308:3;33301:10;;32901:416;;;;;:::o;33323:176::-;33355:1;33372:20;33390:1;33372:20;:::i;:::-;33367:25;;33406:20;33424:1;33406:20;:::i;:::-;33401:25;;33445:1;33435:35;;33450:18;;:::i;:::-;33435:35;33491:1;33488;33484:9;33479:14;;33323:176;;;;:::o;33505:181::-;33645:33;33641:1;33633:6;33629:14;33622:57;33505:181;:::o;33692:366::-;33834:3;33855:67;33919:2;33914:3;33855:67;:::i;:::-;33848:74;;33931:93;34020:3;33931:93;:::i;:::-;34049:2;34044:3;34040:12;34033:19;;33692:366;;;:::o;34064:419::-;34230:4;34268:2;34257:9;34253:18;34245:26;;34317:9;34311:4;34307:20;34303:1;34292:9;34288:17;34281:47;34345:131;34471:4;34345:131;:::i;:::-;34337:139;;34064:419;;;:::o;34489:171::-;34629:23;34625:1;34617:6;34613:14;34606:47;34489:171;:::o;34666:366::-;34808:3;34829:67;34893:2;34888:3;34829:67;:::i;:::-;34822:74;;34905:93;34994:3;34905:93;:::i;:::-;35023:2;35018:3;35014:12;35007:19;;34666:366;;;:::o;35038:419::-;35204:4;35242:2;35231:9;35227:18;35219:26;;35291:9;35285:4;35281:20;35277:1;35266:9;35262:17;35255:47;35319:131;35445:4;35319:131;:::i;:::-;35311:139;;35038:419;;;:::o;35463:141::-;35512:4;35535:3;35527:11;;35558:3;35555:1;35548:14;35592:4;35589:1;35579:18;35571:26;;35463:141;;;:::o;35634:845::-;35737:3;35774:5;35768:12;35803:36;35829:9;35803:36;:::i;:::-;35855:89;35937:6;35932:3;35855:89;:::i;:::-;35848:96;;35975:1;35964:9;35960:17;35991:1;35986:137;;;;36137:1;36132:341;;;;35953:520;;35986:137;36070:4;36066:9;36055;36051:25;36046:3;36039:38;36106:6;36101:3;36097:16;36090:23;;35986:137;;36132:341;36199:38;36231:5;36199:38;:::i;:::-;36259:1;36273:154;36287:6;36284:1;36281:13;36273:154;;;36361:7;36355:14;36351:1;36346:3;36342:11;36335:35;36411:1;36402:7;36398:15;36387:26;;36309:4;36306:1;36302:12;36297:17;;36273:154;;;36456:6;36451:3;36447:16;36440:23;;36139:334;;35953:520;;35741:738;;35634:845;;;;:::o;36485:429::-;36662:3;36684:92;36772:3;36763:6;36684:92;:::i;:::-;36677:99;;36793:95;36884:3;36875:6;36793:95;:::i;:::-;36786:102;;36905:3;36898:10;;36485:429;;;;;:::o;36920:155::-;37060:7;37056:1;37048:6;37044:14;37037:31;36920:155;:::o;37081:400::-;37241:3;37262:84;37344:1;37339:3;37262:84;:::i;:::-;37255:91;;37355:93;37444:3;37355:93;:::i;:::-;37473:1;37468:3;37464:11;37457:18;;37081:400;;;:::o;37487:695::-;37765:3;37787:92;37875:3;37866:6;37787:92;:::i;:::-;37780:99;;37896:95;37987:3;37978:6;37896:95;:::i;:::-;37889:102;;38008:148;38152:3;38008:148;:::i;:::-;38001:155;;38173:3;38166:10;;37487:695;;;;;:::o;38188:225::-;38328:34;38324:1;38316:6;38312:14;38305:58;38397:8;38392:2;38384:6;38380:15;38373:33;38188:225;:::o;38419:366::-;38561:3;38582:67;38646:2;38641:3;38582:67;:::i;:::-;38575:74;;38658:93;38747:3;38658:93;:::i;:::-;38776:2;38771:3;38767:12;38760:19;;38419:366;;;:::o;38791:419::-;38957:4;38995:2;38984:9;38980:18;38972:26;;39044:9;39038:4;39034:20;39030:1;39019:9;39015:17;39008:47;39072:131;39198:4;39072:131;:::i;:::-;39064:139;;38791:419;;;:::o;39216:229::-;39356:34;39352:1;39344:6;39340:14;39333:58;39425:12;39420:2;39412:6;39408:15;39401:37;39216:229;:::o;39451:366::-;39593:3;39614:67;39678:2;39673:3;39614:67;:::i;:::-;39607:74;;39690:93;39779:3;39690:93;:::i;:::-;39808:2;39803:3;39799:12;39792:19;;39451:366;;;:::o;39823:419::-;39989:4;40027:2;40016:9;40012:18;40004:26;;40076:9;40070:4;40066:20;40062:1;40051:9;40047:17;40040:47;40104:131;40230:4;40104:131;:::i;:::-;40096:139;;39823:419;;;:::o;40248:175::-;40388:27;40384:1;40376:6;40372:14;40365:51;40248:175;:::o;40429:366::-;40571:3;40592:67;40656:2;40651:3;40592:67;:::i;:::-;40585:74;;40668:93;40757:3;40668:93;:::i;:::-;40786:2;40781:3;40777:12;40770:19;;40429:366;;;:::o;40801:419::-;40967:4;41005:2;40994:9;40990:18;40982:26;;41054:9;41048:4;41044:20;41040:1;41029:9;41025:17;41018:47;41082:131;41208:4;41082:131;:::i;:::-;41074:139;;40801:419;;;:::o;41226:98::-;41277:6;41311:5;41305:12;41295:22;;41226:98;;;:::o;41330:168::-;41413:11;41447:6;41442:3;41435:19;41487:4;41482:3;41478:14;41463:29;;41330:168;;;;:::o;41504:360::-;41590:3;41618:38;41650:5;41618:38;:::i;:::-;41672:70;41735:6;41730:3;41672:70;:::i;:::-;41665:77;;41751:52;41796:6;41791:3;41784:4;41777:5;41773:16;41751:52;:::i;:::-;41828:29;41850:6;41828:29;:::i;:::-;41823:3;41819:39;41812:46;;41594:270;41504:360;;;;:::o;41870:640::-;42065:4;42103:3;42092:9;42088:19;42080:27;;42117:71;42185:1;42174:9;42170:17;42161:6;42117:71;:::i;:::-;42198:72;42266:2;42255:9;42251:18;42242:6;42198:72;:::i;:::-;42280;42348:2;42337:9;42333:18;42324:6;42280:72;:::i;:::-;42399:9;42393:4;42389:20;42384:2;42373:9;42369:18;42362:48;42427:76;42498:4;42489:6;42427:76;:::i;:::-;42419:84;;41870:640;;;;;;;:::o;42516:141::-;42572:5;42603:6;42597:13;42588:22;;42619:32;42645:5;42619:32;:::i;:::-;42516:141;;;;:::o;42663:349::-;42732:6;42781:2;42769:9;42760:7;42756:23;42752:32;42749:119;;;42787:79;;:::i;:::-;42749:119;42907:1;42932:63;42987:7;42978:6;42967:9;42963:22;42932:63;:::i;:::-;42922:73;;42878:127;42663:349;;;;:::o;43018:233::-;43057:3;43080:24;43098:5;43080:24;:::i;:::-;43071:33;;43126:66;43119:5;43116:77;43113:103;;;43196:18;;:::i;:::-;43113:103;43243:1;43236:5;43232:13;43225:20;;43018:233;;;:::o;43257:180::-;43305:77;43302:1;43295:88;43402:4;43399:1;43392:15;43426:4;43423:1;43416:15

Swarm Source

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