ETH Price: $2,988.76 (-2.29%)
Gas: 1 Gwei

Token

Lil CryptoNinja Village (LCNV)
 

Overview

Max Total Supply

5,553 LCNV

Holders

1,031

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
00000lens.eth
Balance
5 LCNV
0x4B2f8046FA3326b2517D437a5c61520d0747955B
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:
LilCryptoNinjaVillage

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 14: LilCryptoNinjaVillage.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "./ERC721A.sol";
import "./Ownable.sol";

contract LilCryptoNinjaVillage is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public maxSupply = 5555;
    uint256 public maxFreeAmount = 1111;
    uint256 public price = 0.001 ether;
    uint256 public maxPerTx = 20;
    uint256 public maxPerWallet = 100;
    uint256 public maxFreePerWallet = 2;
    bool public mintEnabled = false;
    string public baseURI = "ipfs://QmZTUUFtp4QhATt8SK4faQk7P9E6etUFJ3w57n1q6yxiEH/";

    constructor() ERC721A("Lil CryptoNinja Village", "LCNV") {
        _safeMint(msg.sender, 10);
    }

    function publicMint(uint256 quantity) external payable {
        require(mintEnabled, "Minting is not live yet.");
        require(totalSupply() + quantity < maxSupply + 1, "No more available");
        uint256 cost = getPrice(quantity);
        uint256 _maxPerWallet = maxPerWallet;
        if (cost == 0) {
            _maxPerWallet = maxFreePerWallet;
        }
        require(
            _numberMinted(msg.sender) + quantity <= _maxPerWallet,
            "Max per wallet"
        );
        require(msg.value >= quantity * cost, "Please send the exact amount.");
        _safeMint(msg.sender, quantity);
    }

    function getPrice(uint256 quantity) public view returns (uint256) {
        uint256 minted = totalSupply();
        uint256 cost = 0;
        if (minted < maxFreeAmount && quantity == maxFreePerWallet) {
            cost = 0;
        } else {
            cost = price;
        }
        return cost;
    }

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

    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

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

    function setMaxFreeAmount(uint256 _amount) external onlyOwner {
        maxFreeAmount = _amount;
    }

    function setMaxFreePerWallet(uint256 _amount) external onlyOwner {
        maxFreePerWallet = _amount;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.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;
    }
}

File 4 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

File 5 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (
                    safe &&
                    !_checkOnERC721Received(address(0), to, updatedIndex, _data)
                ) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

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

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b3600955610457600a5566038d7ea4c68000600b556014600c556064600d556002600e556000600f60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162004a3760369139601090816200006f9190620009bc565b503480156200007d57600080fd5b506040518060400160405280601781526020017f4c696c2043727970746f4e696e6a612056696c6c6167650000000000000000008152506040518060400160405280600481526020017f4c434e56000000000000000000000000000000000000000000000000000000008152508160029081620000fb9190620009bc565b5080600390816200010d9190620009bc565b505050600062000122620001da60201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001d433600a620001e260201b60201c565b62000c7b565b600033905090565b620002048282604051806020016040528060008152506200020860201b60201c565b5050565b6200021d83838360016200022260201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200028f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403620002ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002df60008683876200057560201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200055057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156200050257506200050060008884886200057b60201b60201c565b155b156200053a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506200047d565b5080600081905550506200056e60008683876200071960201b60201c565b5050505050565b50505050565b6000620005a98473ffffffffffffffffffffffffffffffffffffffff166200071f60201b62001c0e1760201c565b156200070c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005db620001da60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005ff949392919062000b93565b6020604051808303816000875af19250505080156200063e57506040513d601f19601f820116820180604052508101906200063b919062000c49565b60015b620006bb573d806000811462000671576040519150601f19603f3d011682016040523d82523d6000602084013e62000676565b606091505b506000815103620006b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000711565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c457607f821691505b602082108103620007da57620007d96200077c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000805565b62000850868362000805565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200089d62000897620008918462000868565b62000872565b62000868565b9050919050565b6000819050919050565b620008b9836200087c565b620008d1620008c882620008a4565b84845462000812565b825550505050565b600090565b620008e8620008d9565b620008f5818484620008ae565b505050565b5b818110156200091d5762000911600082620008de565b600181019050620008fb565b5050565b601f8211156200096c576200093681620007e0565b6200094184620007f5565b8101602085101562000951578190505b620009696200096085620007f5565b830182620008fa565b50505b505050565b600082821c905092915050565b6000620009916000198460080262000971565b1980831691505092915050565b6000620009ac83836200097e565b9150826002028217905092915050565b620009c78262000742565b67ffffffffffffffff811115620009e357620009e26200074d565b5b620009ef8254620007ab565b620009fc82828562000921565b600060209050601f83116001811462000a34576000841562000a1f578287015190505b62000a2b85826200099e565b86555062000a9b565b601f19841662000a4486620007e0565b60005b8281101562000a6e5784890151825560018201915060208501945060208101905062000a47565b8683101562000a8e578489015162000a8a601f8916826200097e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ad08262000aa3565b9050919050565b62000ae28162000ac3565b82525050565b62000af38162000868565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b3557808201518184015260208101905062000b18565b60008484015250505050565b6000601f19601f8301169050919050565b600062000b5f8262000af9565b62000b6b818562000b04565b935062000b7d81856020860162000b15565b62000b888162000b41565b840191505092915050565b600060808201905062000baa600083018762000ad7565b62000bb9602083018662000ad7565b62000bc8604083018562000ae8565b818103606083015262000bdc818462000b52565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000c238162000bec565b811462000c2f57600080fd5b50565b60008151905062000c438162000c18565b92915050565b60006020828403121562000c625762000c6162000be7565b5b600062000c728482850162000c32565b91505092915050565b613dac8062000c8b6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e75722301161006f578063e757223014610700578063e985e9c51461073d578063f2fde38b1461077a578063f892c6e2146107a3578063f968adbe146107ce576101f9565b8063b88d4fde14610644578063c87b56dd1461066d578063d1239730146106aa578063d5abeb01146106d5576101f9565b806395d89b41116100dc57806395d89b411461059a578063a035b1fe146105c5578063a22cb465146105f0578063a702735714610619576101f9565b806370a0823114610504578063715018a6146105415780637ba5e621146105585780638da5cb5b1461056f576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461040d57806355f804b31461044a5780636352211e146104735780636c0360eb146104b05780636d7c4a4b146104db576101f9565b80632f745c59146103655780633ccfd60b146103a257806342842e0e146103b9578063453c2310146103e2576101f9565b80630c23bb3f116101cc5780630c23bb3f146102cc57806318160ddd146102f557806323b872dd146103205780632db1154414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612cc7565b6107f9565b6040516102329190612d0f565b60405180910390f35b34801561024757600080fd5b50610250610943565b60405161025d9190612dba565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612e12565b6109d5565b60405161029a9190612e80565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612ec7565b610a51565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612e12565b610b5b565b005b34801561030157600080fd5b5061030a610be1565b6040516103179190612f16565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f31565b610bef565b005b610363600480360381019061035e9190612e12565b610bff565b005b34801561037157600080fd5b5061038c60048036038101906103879190612ec7565b610d85565b6040516103999190612f16565b60405180910390f35b3480156103ae57600080fd5b506103b7610f5b565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612f31565b611086565b005b3480156103ee57600080fd5b506103f76110a6565b6040516104049190612f16565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190612e12565b6110ac565b6040516104419190612f16565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c91906130b9565b6111f0565b005b34801561047f57600080fd5b5061049a60048036038101906104959190612e12565b61127f565b6040516104a79190612e80565b60405180910390f35b3480156104bc57600080fd5b506104c5611295565b6040516104d29190612dba565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612e12565b611323565b005b34801561051057600080fd5b5061052b60048036038101906105269190613102565b6113a9565b6040516105389190612f16565b60405180910390f35b34801561054d57600080fd5b50610556611478565b005b34801561056457600080fd5b5061056d6115b5565b005b34801561057b57600080fd5b5061058461165d565b6040516105919190612e80565b60405180910390f35b3480156105a657600080fd5b506105af611687565b6040516105bc9190612dba565b60405180910390f35b3480156105d157600080fd5b506105da611719565b6040516105e79190612f16565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061315b565b61171f565b005b34801561062557600080fd5b5061062e611896565b60405161063b9190612f16565b60405180910390f35b34801561065057600080fd5b5061066b6004803603810190610666919061323c565b61189c565b005b34801561067957600080fd5b50610694600480360381019061068f9190612e12565b6118ef565b6040516106a19190612dba565b60405180910390f35b3480156106b657600080fd5b506106bf61196b565b6040516106cc9190612d0f565b60405180910390f35b3480156106e157600080fd5b506106ea61197e565b6040516106f79190612f16565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612e12565b611984565b6040516107349190612f16565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906132bf565b6119c3565b6040516107719190612d0f565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613102565b611a57565b005b3480156107af57600080fd5b506107b8611c02565b6040516107c59190612f16565b60405180910390f35b3480156107da57600080fd5b506107e3611c08565b6040516107f09190612f16565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093c575061093b82611c31565b5b9050919050565b6060600280546109529061332e565b80601f016020809104026020016040519081016040528092919081815260200182805461097e9061332e565b80156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b60006109e082611c9b565b610a16576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5c8261127f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae2611cd5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b145750610b1281610b0d611cd5565b6119c3565b155b15610b4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b56838383611cdd565b505050565b610b63611cd5565b73ffffffffffffffffffffffffffffffffffffffff16610b8161165d565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906133ab565b60405180910390fd5b80600a8190555050565b600060015460005403905090565b610bfa838383611d8f565b505050565b600f60009054906101000a900460ff16610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613417565b60405180910390fd5b6001600954610c5d9190613466565b81610c66610be1565b610c709190613466565b10610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906134e6565b60405180910390fd5b6000610cbb82611984565b90506000600d54905060008203610cd257600e5490505b8083610cdd3361227e565b610ce79190613466565b1115610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90613552565b60405180910390fd5b8183610d349190613572565b341015610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613600565b60405180910390fd5b610d80338461234d565b505050565b6000610d90836113a9565b8210610dc8576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610f50576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610eb15750610f43565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ef157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f4157868403610f38578195505050505050610f55565b83806001019450505b505b8080600101915050610dd4565b600080fd5b92915050565b610f63611cd5565b73ffffffffffffffffffffffffffffffffffffffff16610f8161165d565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce906133ab565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ffd90613651565b60006040518083038185875af1925050503d806000811461103a576040519150601f19603f3d011682016040523d82523d6000602084013e61103f565b606091505b5050905080611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906136b2565b60405180910390fd5b50565b6110a18383836040518060200160405280600081525061189c565b505050565b600d5481565b60008060005490506000805b828110156111b8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111aa578583036111a157819450505050506111eb565b82806001019350505b5080806001019150506110b8565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6111f8611cd5565b73ffffffffffffffffffffffffffffffffffffffff1661121661165d565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906133ab565b60405180910390fd5b806010908161127b919061387e565b5050565b600061128a8261236b565b600001519050919050565b601080546112a29061332e565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce9061332e565b801561131b5780601f106112f05761010080835404028352916020019161131b565b820191906000526020600020905b8154815290600101906020018083116112fe57829003601f168201915b505050505081565b61132b611cd5565b73ffffffffffffffffffffffffffffffffffffffff1661134961165d565b73ffffffffffffffffffffffffffffffffffffffff161461139f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611396906133ab565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611410576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611480611cd5565b73ffffffffffffffffffffffffffffffffffffffff1661149e61165d565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb906133ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115bd611cd5565b73ffffffffffffffffffffffffffffffffffffffff166115db61165d565b73ffffffffffffffffffffffffffffffffffffffff1614611631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611628906133ab565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116969061332e565b80601f01602080910402602001604051908101604052809291908181526020018280546116c29061332e565b801561170f5780601f106116e45761010080835404028352916020019161170f565b820191906000526020600020905b8154815290600101906020018083116116f257829003601f168201915b5050505050905090565b600b5481565b611727611cd5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611798611cd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611845611cd5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188a9190612d0f565b60405180910390a35050565b600e5481565b6118a7848484611d8f565b6118b3848484846125e7565b6118e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118fa82611c9b565b611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906139c2565b60405180910390fd5b601061194483612765565b604051602001611955929190613aa1565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b60095481565b60008061198f610be1565b90506000600a54821080156119a55750600e5484145b156119b357600090506119b9565b600b5490505b8092505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a5f611cd5565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61165d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca906133ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613b37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611cce575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d9a8261236b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc1611cd5565b73ffffffffffffffffffffffffffffffffffffffff161480611df45750611df38260000151611dee611cd5565b6119c3565b5b80611e395750611e02611cd5565b73ffffffffffffffffffffffffffffffffffffffff16611e21846109d5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e72576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611edb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f4e85858560016128c5565b611f5e6000848460000151611cdd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361220e5760005481101561220d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461227785858560016128cb565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122e5576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6123678282604051806020016040528060008152506128d1565b5050565b612373612c18565b60008290506000548110156125b0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516125ae57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124925780925050506125e2565b5b6001156125ad57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125a85780925050506125e2565b612493565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006126088473ffffffffffffffffffffffffffffffffffffffff16611c0e565b15612758578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612631611cd5565b8786866040518563ffffffff1660e01b81526004016126539493929190613bac565b6020604051808303816000875af192505050801561268f57506040513d601f19601f8201168201806040525081019061268c9190613c0d565b60015b612708573d80600081146126bf576040519150601f19603f3d011682016040523d82523d6000602084013e6126c4565b606091505b506000815103612700576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061275d565b600190505b949350505050565b6060600082036127ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c0565b600082905060005b600082146127de5780806127c790613c3a565b915050600a826127d79190613cb1565b91506127b4565b60008167ffffffffffffffff8111156127fa576127f9612f8e565b5b6040519080825280601f01601f19166020018201604052801561282c5781602001600182028036833780820191505090505b5090505b600085146128b9576001826128459190613ce2565b9150600a856128549190613d16565b60306128609190613466565b60f81b81838151811061287657612875613d47565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b29190613cb1565b9450612830565b8093505050505b919050565b50505050565b50505050565b6128de83838360016128e3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361294f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612989576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61299660008683876128c5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612bfb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612baf5750612bad60008884886125e7565b155b15612be6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b34565b508060008190555050612c1160008683876128cb565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ca481612c6f565b8114612caf57600080fd5b50565b600081359050612cc181612c9b565b92915050565b600060208284031215612cdd57612cdc612c65565b5b6000612ceb84828501612cb2565b91505092915050565b60008115159050919050565b612d0981612cf4565b82525050565b6000602082019050612d246000830184612d00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d64578082015181840152602081019050612d49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d8c82612d2a565b612d968185612d35565b9350612da6818560208601612d46565b612daf81612d70565b840191505092915050565b60006020820190508181036000830152612dd48184612d81565b905092915050565b6000819050919050565b612def81612ddc565b8114612dfa57600080fd5b50565b600081359050612e0c81612de6565b92915050565b600060208284031215612e2857612e27612c65565b5b6000612e3684828501612dfd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e6a82612e3f565b9050919050565b612e7a81612e5f565b82525050565b6000602082019050612e956000830184612e71565b92915050565b612ea481612e5f565b8114612eaf57600080fd5b50565b600081359050612ec181612e9b565b92915050565b60008060408385031215612ede57612edd612c65565b5b6000612eec85828601612eb2565b9250506020612efd85828601612dfd565b9150509250929050565b612f1081612ddc565b82525050565b6000602082019050612f2b6000830184612f07565b92915050565b600080600060608486031215612f4a57612f49612c65565b5b6000612f5886828701612eb2565b9350506020612f6986828701612eb2565b9250506040612f7a86828701612dfd565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fc682612d70565b810181811067ffffffffffffffff82111715612fe557612fe4612f8e565b5b80604052505050565b6000612ff8612c5b565b90506130048282612fbd565b919050565b600067ffffffffffffffff82111561302457613023612f8e565b5b61302d82612d70565b9050602081019050919050565b82818337600083830152505050565b600061305c61305784613009565b612fee565b90508281526020810184848401111561307857613077612f89565b5b61308384828561303a565b509392505050565b600082601f8301126130a05761309f612f84565b5b81356130b0848260208601613049565b91505092915050565b6000602082840312156130cf576130ce612c65565b5b600082013567ffffffffffffffff8111156130ed576130ec612c6a565b5b6130f98482850161308b565b91505092915050565b60006020828403121561311857613117612c65565b5b600061312684828501612eb2565b91505092915050565b61313881612cf4565b811461314357600080fd5b50565b6000813590506131558161312f565b92915050565b6000806040838503121561317257613171612c65565b5b600061318085828601612eb2565b925050602061319185828601613146565b9150509250929050565b600067ffffffffffffffff8211156131b6576131b5612f8e565b5b6131bf82612d70565b9050602081019050919050565b60006131df6131da8461319b565b612fee565b9050828152602081018484840111156131fb576131fa612f89565b5b61320684828561303a565b509392505050565b600082601f83011261322357613222612f84565b5b81356132338482602086016131cc565b91505092915050565b6000806000806080858703121561325657613255612c65565b5b600061326487828801612eb2565b945050602061327587828801612eb2565b935050604061328687828801612dfd565b925050606085013567ffffffffffffffff8111156132a7576132a6612c6a565b5b6132b38782880161320e565b91505092959194509250565b600080604083850312156132d6576132d5612c65565b5b60006132e485828601612eb2565b92505060206132f585828601612eb2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334657607f821691505b602082108103613359576133586132ff565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613395602083612d35565b91506133a08261335f565b602082019050919050565b600060208201905081810360008301526133c481613388565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000613401601883612d35565b915061340c826133cb565b602082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347182612ddc565b915061347c83612ddc565b925082820190508082111561349457613493613437565b5b92915050565b7f4e6f206d6f726520617661696c61626c65000000000000000000000000000000600082015250565b60006134d0601183612d35565b91506134db8261349a565b602082019050919050565b600060208201905081810360008301526134ff816134c3565b9050919050565b7f4d6178207065722077616c6c6574000000000000000000000000000000000000600082015250565b600061353c600e83612d35565b915061354782613506565b602082019050919050565b6000602082019050818103600083015261356b8161352f565b9050919050565b600061357d82612ddc565b915061358883612ddc565b925082820261359681612ddc565b915082820484148315176135ad576135ac613437565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006135ea601d83612d35565b91506135f5826135b4565b602082019050919050565b60006020820190508181036000830152613619816135dd565b9050919050565b600081905092915050565b50565b600061363b600083613620565b91506136468261362b565b600082019050919050565b600061365c8261362e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061369c601083612d35565b91506136a782613666565b602082019050919050565b600060208201905081810360008301526136cb8161368f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136f7565b61373e86836136f7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061377b61377661377184612ddc565b613756565b612ddc565b9050919050565b6000819050919050565b61379583613760565b6137a96137a182613782565b848454613704565b825550505050565b600090565b6137be6137b1565b6137c981848461378c565b505050565b5b818110156137ed576137e26000826137b6565b6001810190506137cf565b5050565b601f82111561383257613803816136d2565b61380c846136e7565b8101602085101561381b578190505b61382f613827856136e7565b8301826137ce565b50505b505050565b600082821c905092915050565b600061385560001984600802613837565b1980831691505092915050565b600061386e8383613844565b9150826002028217905092915050565b61388782612d2a565b67ffffffffffffffff8111156138a05761389f612f8e565b5b6138aa825461332e565b6138b58282856137f1565b600060209050601f8311600181146138e857600084156138d6578287015190505b6138e08582613862565b865550613948565b601f1984166138f6866136d2565b60005b8281101561391e578489015182556001820191506020850194506020810190506138f9565b8683101561393b5784890151613937601f891682613844565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139ac602f83612d35565b91506139b782613950565b604082019050919050565b600060208201905081810360008301526139db8161399f565b9050919050565b600081905092915050565b600081546139fa8161332e565b613a0481866139e2565b94506001821660008114613a1f5760018114613a3457613a67565b60ff1983168652811515820286019350613a67565b613a3d856136d2565b60005b83811015613a5f57815481890152600182019150602081019050613a40565b838801955050505b50505092915050565b6000613a7b82612d2a565b613a8581856139e2565b9350613a95818560208601612d46565b80840191505092915050565b6000613aad82856139ed565b9150613ab98284613a70565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b21602683612d35565b9150613b2c82613ac5565b604082019050919050565b60006020820190508181036000830152613b5081613b14565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b7e82613b57565b613b888185613b62565b9350613b98818560208601612d46565b613ba181612d70565b840191505092915050565b6000608082019050613bc16000830187612e71565b613bce6020830186612e71565b613bdb6040830185612f07565b8181036060830152613bed8184613b73565b905095945050505050565b600081519050613c0781612c9b565b92915050565b600060208284031215613c2357613c22612c65565b5b6000613c3184828501613bf8565b91505092915050565b6000613c4582612ddc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c7757613c76613437565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cbc82612ddc565b9150613cc783612ddc565b925082613cd757613cd6613c82565b5b828204905092915050565b6000613ced82612ddc565b9150613cf883612ddc565b9250828203905081811115613d1057613d0f613437565b5b92915050565b6000613d2182612ddc565b9150613d2c83612ddc565b925082613d3c57613d3b613c82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209895f36e539eb07a5168b55cfc46f15156898754a132f219dbc22beae543f49964736f6c63430008110033697066733a2f2f516d5a54555546747034516841547438534b346661516b3750394536657455464a337735376e31713679786945482f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e75722301161006f578063e757223014610700578063e985e9c51461073d578063f2fde38b1461077a578063f892c6e2146107a3578063f968adbe146107ce576101f9565b8063b88d4fde14610644578063c87b56dd1461066d578063d1239730146106aa578063d5abeb01146106d5576101f9565b806395d89b41116100dc57806395d89b411461059a578063a035b1fe146105c5578063a22cb465146105f0578063a702735714610619576101f9565b806370a0823114610504578063715018a6146105415780637ba5e621146105585780638da5cb5b1461056f576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461040d57806355f804b31461044a5780636352211e146104735780636c0360eb146104b05780636d7c4a4b146104db576101f9565b80632f745c59146103655780633ccfd60b146103a257806342842e0e146103b9578063453c2310146103e2576101f9565b80630c23bb3f116101cc5780630c23bb3f146102cc57806318160ddd146102f557806323b872dd146103205780632db1154414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612cc7565b6107f9565b6040516102329190612d0f565b60405180910390f35b34801561024757600080fd5b50610250610943565b60405161025d9190612dba565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612e12565b6109d5565b60405161029a9190612e80565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612ec7565b610a51565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612e12565b610b5b565b005b34801561030157600080fd5b5061030a610be1565b6040516103179190612f16565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f31565b610bef565b005b610363600480360381019061035e9190612e12565b610bff565b005b34801561037157600080fd5b5061038c60048036038101906103879190612ec7565b610d85565b6040516103999190612f16565b60405180910390f35b3480156103ae57600080fd5b506103b7610f5b565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612f31565b611086565b005b3480156103ee57600080fd5b506103f76110a6565b6040516104049190612f16565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190612e12565b6110ac565b6040516104419190612f16565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c91906130b9565b6111f0565b005b34801561047f57600080fd5b5061049a60048036038101906104959190612e12565b61127f565b6040516104a79190612e80565b60405180910390f35b3480156104bc57600080fd5b506104c5611295565b6040516104d29190612dba565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612e12565b611323565b005b34801561051057600080fd5b5061052b60048036038101906105269190613102565b6113a9565b6040516105389190612f16565b60405180910390f35b34801561054d57600080fd5b50610556611478565b005b34801561056457600080fd5b5061056d6115b5565b005b34801561057b57600080fd5b5061058461165d565b6040516105919190612e80565b60405180910390f35b3480156105a657600080fd5b506105af611687565b6040516105bc9190612dba565b60405180910390f35b3480156105d157600080fd5b506105da611719565b6040516105e79190612f16565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061315b565b61171f565b005b34801561062557600080fd5b5061062e611896565b60405161063b9190612f16565b60405180910390f35b34801561065057600080fd5b5061066b6004803603810190610666919061323c565b61189c565b005b34801561067957600080fd5b50610694600480360381019061068f9190612e12565b6118ef565b6040516106a19190612dba565b60405180910390f35b3480156106b657600080fd5b506106bf61196b565b6040516106cc9190612d0f565b60405180910390f35b3480156106e157600080fd5b506106ea61197e565b6040516106f79190612f16565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612e12565b611984565b6040516107349190612f16565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906132bf565b6119c3565b6040516107719190612d0f565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613102565b611a57565b005b3480156107af57600080fd5b506107b8611c02565b6040516107c59190612f16565b60405180910390f35b3480156107da57600080fd5b506107e3611c08565b6040516107f09190612f16565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093c575061093b82611c31565b5b9050919050565b6060600280546109529061332e565b80601f016020809104026020016040519081016040528092919081815260200182805461097e9061332e565b80156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b60006109e082611c9b565b610a16576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5c8261127f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae2611cd5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b145750610b1281610b0d611cd5565b6119c3565b155b15610b4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b56838383611cdd565b505050565b610b63611cd5565b73ffffffffffffffffffffffffffffffffffffffff16610b8161165d565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906133ab565b60405180910390fd5b80600a8190555050565b600060015460005403905090565b610bfa838383611d8f565b505050565b600f60009054906101000a900460ff16610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613417565b60405180910390fd5b6001600954610c5d9190613466565b81610c66610be1565b610c709190613466565b10610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca7906134e6565b60405180910390fd5b6000610cbb82611984565b90506000600d54905060008203610cd257600e5490505b8083610cdd3361227e565b610ce79190613466565b1115610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90613552565b60405180910390fd5b8183610d349190613572565b341015610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613600565b60405180910390fd5b610d80338461234d565b505050565b6000610d90836113a9565b8210610dc8576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610f50576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610eb15750610f43565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ef157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f4157868403610f38578195505050505050610f55565b83806001019450505b505b8080600101915050610dd4565b600080fd5b92915050565b610f63611cd5565b73ffffffffffffffffffffffffffffffffffffffff16610f8161165d565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce906133ab565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ffd90613651565b60006040518083038185875af1925050503d806000811461103a576040519150601f19603f3d011682016040523d82523d6000602084013e61103f565b606091505b5050905080611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906136b2565b60405180910390fd5b50565b6110a18383836040518060200160405280600081525061189c565b505050565b600d5481565b60008060005490506000805b828110156111b8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111aa578583036111a157819450505050506111eb565b82806001019350505b5080806001019150506110b8565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6111f8611cd5565b73ffffffffffffffffffffffffffffffffffffffff1661121661165d565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906133ab565b60405180910390fd5b806010908161127b919061387e565b5050565b600061128a8261236b565b600001519050919050565b601080546112a29061332e565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce9061332e565b801561131b5780601f106112f05761010080835404028352916020019161131b565b820191906000526020600020905b8154815290600101906020018083116112fe57829003601f168201915b505050505081565b61132b611cd5565b73ffffffffffffffffffffffffffffffffffffffff1661134961165d565b73ffffffffffffffffffffffffffffffffffffffff161461139f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611396906133ab565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611410576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611480611cd5565b73ffffffffffffffffffffffffffffffffffffffff1661149e61165d565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb906133ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115bd611cd5565b73ffffffffffffffffffffffffffffffffffffffff166115db61165d565b73ffffffffffffffffffffffffffffffffffffffff1614611631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611628906133ab565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116969061332e565b80601f01602080910402602001604051908101604052809291908181526020018280546116c29061332e565b801561170f5780601f106116e45761010080835404028352916020019161170f565b820191906000526020600020905b8154815290600101906020018083116116f257829003601f168201915b5050505050905090565b600b5481565b611727611cd5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611798611cd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611845611cd5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188a9190612d0f565b60405180910390a35050565b600e5481565b6118a7848484611d8f565b6118b3848484846125e7565b6118e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118fa82611c9b565b611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906139c2565b60405180910390fd5b601061194483612765565b604051602001611955929190613aa1565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b60095481565b60008061198f610be1565b90506000600a54821080156119a55750600e5484145b156119b357600090506119b9565b600b5490505b8092505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a5f611cd5565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61165d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca906133ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613b37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611cce575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d9a8261236b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc1611cd5565b73ffffffffffffffffffffffffffffffffffffffff161480611df45750611df38260000151611dee611cd5565b6119c3565b5b80611e395750611e02611cd5565b73ffffffffffffffffffffffffffffffffffffffff16611e21846109d5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e72576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611edb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f4e85858560016128c5565b611f5e6000848460000151611cdd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361220e5760005481101561220d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461227785858560016128cb565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122e5576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6123678282604051806020016040528060008152506128d1565b5050565b612373612c18565b60008290506000548110156125b0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516125ae57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124925780925050506125e2565b5b6001156125ad57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125a85780925050506125e2565b612493565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006126088473ffffffffffffffffffffffffffffffffffffffff16611c0e565b15612758578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612631611cd5565b8786866040518563ffffffff1660e01b81526004016126539493929190613bac565b6020604051808303816000875af192505050801561268f57506040513d601f19601f8201168201806040525081019061268c9190613c0d565b60015b612708573d80600081146126bf576040519150601f19603f3d011682016040523d82523d6000602084013e6126c4565b606091505b506000815103612700576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061275d565b600190505b949350505050565b6060600082036127ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c0565b600082905060005b600082146127de5780806127c790613c3a565b915050600a826127d79190613cb1565b91506127b4565b60008167ffffffffffffffff8111156127fa576127f9612f8e565b5b6040519080825280601f01601f19166020018201604052801561282c5781602001600182028036833780820191505090505b5090505b600085146128b9576001826128459190613ce2565b9150600a856128549190613d16565b60306128609190613466565b60f81b81838151811061287657612875613d47565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b29190613cb1565b9450612830565b8093505050505b919050565b50505050565b50505050565b6128de83838360016128e3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361294f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612989576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61299660008683876128c5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612bfb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612baf5750612bad60008884886125e7565b155b15612be6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b34565b508060008190555050612c1160008683876128cb565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ca481612c6f565b8114612caf57600080fd5b50565b600081359050612cc181612c9b565b92915050565b600060208284031215612cdd57612cdc612c65565b5b6000612ceb84828501612cb2565b91505092915050565b60008115159050919050565b612d0981612cf4565b82525050565b6000602082019050612d246000830184612d00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d64578082015181840152602081019050612d49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d8c82612d2a565b612d968185612d35565b9350612da6818560208601612d46565b612daf81612d70565b840191505092915050565b60006020820190508181036000830152612dd48184612d81565b905092915050565b6000819050919050565b612def81612ddc565b8114612dfa57600080fd5b50565b600081359050612e0c81612de6565b92915050565b600060208284031215612e2857612e27612c65565b5b6000612e3684828501612dfd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e6a82612e3f565b9050919050565b612e7a81612e5f565b82525050565b6000602082019050612e956000830184612e71565b92915050565b612ea481612e5f565b8114612eaf57600080fd5b50565b600081359050612ec181612e9b565b92915050565b60008060408385031215612ede57612edd612c65565b5b6000612eec85828601612eb2565b9250506020612efd85828601612dfd565b9150509250929050565b612f1081612ddc565b82525050565b6000602082019050612f2b6000830184612f07565b92915050565b600080600060608486031215612f4a57612f49612c65565b5b6000612f5886828701612eb2565b9350506020612f6986828701612eb2565b9250506040612f7a86828701612dfd565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fc682612d70565b810181811067ffffffffffffffff82111715612fe557612fe4612f8e565b5b80604052505050565b6000612ff8612c5b565b90506130048282612fbd565b919050565b600067ffffffffffffffff82111561302457613023612f8e565b5b61302d82612d70565b9050602081019050919050565b82818337600083830152505050565b600061305c61305784613009565b612fee565b90508281526020810184848401111561307857613077612f89565b5b61308384828561303a565b509392505050565b600082601f8301126130a05761309f612f84565b5b81356130b0848260208601613049565b91505092915050565b6000602082840312156130cf576130ce612c65565b5b600082013567ffffffffffffffff8111156130ed576130ec612c6a565b5b6130f98482850161308b565b91505092915050565b60006020828403121561311857613117612c65565b5b600061312684828501612eb2565b91505092915050565b61313881612cf4565b811461314357600080fd5b50565b6000813590506131558161312f565b92915050565b6000806040838503121561317257613171612c65565b5b600061318085828601612eb2565b925050602061319185828601613146565b9150509250929050565b600067ffffffffffffffff8211156131b6576131b5612f8e565b5b6131bf82612d70565b9050602081019050919050565b60006131df6131da8461319b565b612fee565b9050828152602081018484840111156131fb576131fa612f89565b5b61320684828561303a565b509392505050565b600082601f83011261322357613222612f84565b5b81356132338482602086016131cc565b91505092915050565b6000806000806080858703121561325657613255612c65565b5b600061326487828801612eb2565b945050602061327587828801612eb2565b935050604061328687828801612dfd565b925050606085013567ffffffffffffffff8111156132a7576132a6612c6a565b5b6132b38782880161320e565b91505092959194509250565b600080604083850312156132d6576132d5612c65565b5b60006132e485828601612eb2565b92505060206132f585828601612eb2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334657607f821691505b602082108103613359576133586132ff565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613395602083612d35565b91506133a08261335f565b602082019050919050565b600060208201905081810360008301526133c481613388565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000613401601883612d35565b915061340c826133cb565b602082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347182612ddc565b915061347c83612ddc565b925082820190508082111561349457613493613437565b5b92915050565b7f4e6f206d6f726520617661696c61626c65000000000000000000000000000000600082015250565b60006134d0601183612d35565b91506134db8261349a565b602082019050919050565b600060208201905081810360008301526134ff816134c3565b9050919050565b7f4d6178207065722077616c6c6574000000000000000000000000000000000000600082015250565b600061353c600e83612d35565b915061354782613506565b602082019050919050565b6000602082019050818103600083015261356b8161352f565b9050919050565b600061357d82612ddc565b915061358883612ddc565b925082820261359681612ddc565b915082820484148315176135ad576135ac613437565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006135ea601d83612d35565b91506135f5826135b4565b602082019050919050565b60006020820190508181036000830152613619816135dd565b9050919050565b600081905092915050565b50565b600061363b600083613620565b91506136468261362b565b600082019050919050565b600061365c8261362e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061369c601083612d35565b91506136a782613666565b602082019050919050565b600060208201905081810360008301526136cb8161368f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136f7565b61373e86836136f7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061377b61377661377184612ddc565b613756565b612ddc565b9050919050565b6000819050919050565b61379583613760565b6137a96137a182613782565b848454613704565b825550505050565b600090565b6137be6137b1565b6137c981848461378c565b505050565b5b818110156137ed576137e26000826137b6565b6001810190506137cf565b5050565b601f82111561383257613803816136d2565b61380c846136e7565b8101602085101561381b578190505b61382f613827856136e7565b8301826137ce565b50505b505050565b600082821c905092915050565b600061385560001984600802613837565b1980831691505092915050565b600061386e8383613844565b9150826002028217905092915050565b61388782612d2a565b67ffffffffffffffff8111156138a05761389f612f8e565b5b6138aa825461332e565b6138b58282856137f1565b600060209050601f8311600181146138e857600084156138d6578287015190505b6138e08582613862565b865550613948565b601f1984166138f6866136d2565b60005b8281101561391e578489015182556001820191506020850194506020810190506138f9565b8683101561393b5784890151613937601f891682613844565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139ac602f83612d35565b91506139b782613950565b604082019050919050565b600060208201905081810360008301526139db8161399f565b9050919050565b600081905092915050565b600081546139fa8161332e565b613a0481866139e2565b94506001821660008114613a1f5760018114613a3457613a67565b60ff1983168652811515820286019350613a67565b613a3d856136d2565b60005b83811015613a5f57815481890152600182019150602081019050613a40565b838801955050505b50505092915050565b6000613a7b82612d2a565b613a8581856139e2565b9350613a95818560208601612d46565b80840191505092915050565b6000613aad82856139ed565b9150613ab98284613a70565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b21602683612d35565b9150613b2c82613ac5565b604082019050919050565b60006020820190508181036000830152613b5081613b14565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b7e82613b57565b613b888185613b62565b9350613b98818560208601612d46565b613ba181612d70565b840191505092915050565b6000608082019050613bc16000830187612e71565b613bce6020830186612e71565b613bdb6040830185612f07565b8181036060830152613bed8184613b73565b905095945050505050565b600081519050613c0781612c9b565b92915050565b600060208284031215613c2357613c22612c65565b5b6000613c3184828501613bf8565b91505092915050565b6000613c4582612ddc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c7757613c76613437565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cbc82612ddc565b9150613cc783612ddc565b925082613cd757613cd6613c82565b5b828204905092915050565b6000613ced82612ddc565b9150613cf883612ddc565b9250828203905081811115613d1057613d0f613437565b5b92915050565b6000613d2182612ddc565b9150613d2c83612ddc565b925082613d3c57613d3b613c82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209895f36e539eb07a5168b55cfc46f15156898754a132f219dbc22beae543f49964736f6c63430008110033

Deployed Bytecode Sourcemap

107:2503:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:422:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8891:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10491:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10054:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2185:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3352:284:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11462:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;656:615:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4983:1146:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2407:201:11;;;;;;;;;;;;;:::i;:::-;;11703:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;347:33:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3929:754:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2093:86:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8700:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;464:80:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2293:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6687:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:12;;;;;;;;;;;;;:::i;:::-;;2005:82:11;;;;;;;;;;;;;:::i;:::-;;1095:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9060:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;273:34:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10808:302:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;386:35:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11959:342:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1700:299:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;427:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;195;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1277:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:214:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;232:35:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;313:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6201:422:4;6348:4;6405:25;6390:40;;;:11;:40;;;;:105;;;;6462:33;6447:48;;;:11;:48;;;;6390:105;:172;;;;6527:35;6512:50;;;:11;:50;;;;6390:172;:225;;;;6579:36;6603:11;6579:23;:36::i;:::-;6390:225;6370:245;;6201:422;;;:::o;8891:100::-;8945:13;8978:5;8971:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8891:100;:::o;10491:245::-;10595:7;10625:16;10633:7;10625;:16::i;:::-;10620:64;;10650:34;;;;;;;;;;;;;;10620:64;10704:15;:24;10720:7;10704:24;;;;;;;;;;;;;;;;;;;;;10697:31;;10491:245;;;:::o;10054:371::-;10127:13;10143:24;10159:7;10143:15;:24::i;:::-;10127:40;;10188:5;10182:11;;:2;:11;;;10178:48;;10202:24;;;;;;;;;;;;;;10178:48;10259:5;10243:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10269:37;10286:5;10293:12;:10;:12::i;:::-;10269:16;:37::i;:::-;10268:38;10243:63;10239:138;;;10330:35;;;;;;;;;;;;;;10239:138;10389:28;10398:2;10402:7;10411:5;10389:8;:28::i;:::-;10116:309;10054:371;;:::o;2185:102:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2273:7:11::1;2257:13;:23;;;;2185:102:::0;:::o;3352:284:4:-;3413:7;3605:12;;3589:13;;:28;3582:35;;3352:284;:::o;11462:170::-;11596:28;11606:4;11612:2;11616:7;11596:9;:28::i;:::-;11462:170;;;:::o;656:615:11:-;729:11;;;;;;;;;;;721:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;826:1;814:9;;:13;;;;:::i;:::-;803:8;787:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;779:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;859:12;874:18;883:8;874;:18::i;:::-;859:33;;902:21;926:12;;902:36;;960:1;952:4;:9;948:72;;993:16;;977:32;;948:72;1090:13;1078:8;1050:25;1064:10;1050:13;:25::i;:::-;:36;;;;:::i;:::-;:53;;1029:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;1185:4;1174:8;:15;;;;:::i;:::-;1161:9;:28;;1153:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;1233:31;1243:10;1255:8;1233:9;:31::i;:::-;711:560;;656:615;:::o;4983:1146:4:-;5108:7;5146:16;5156:5;5146:9;:16::i;:::-;5137:5;:25;5133:61;;5171:23;;;;;;;;;;;;;;5133:61;5205:22;5230:13;;5205:38;;5254:19;5284:25;5485:9;5480:557;5500:14;5496:1;:18;5480:557;;;5540:31;5574:11;:14;5586:1;5574:14;;;;;;;;;;;5540:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5611:9;:16;;;5607:73;;;5652:8;;;5607:73;5728:1;5702:28;;:9;:14;;;:28;;;5698:111;;5775:9;:14;;;5755:34;;5698:111;5852:5;5831:26;;:17;:26;;;5827:195;;5901:5;5886:11;:20;5882:85;;5942:1;5935:8;;;;;;;;;5882:85;5989:13;;;;;;;5827:195;5521:516;5480:557;5516:3;;;;;;;5480:557;;;6113:8;;;4983:1146;;;;;:::o;2407:201:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2457:12:11::1;2483:10;2475:24;;2520:21;2475:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456:99;;;2573:7;2565:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2446:162;2407:201::o:0;11703:185:4:-;11841:39;11858:4;11864:2;11868:7;11841:39;;;;;;;;;;;;:16;:39::i;:::-;11703:185;;;:::o;347:33:11:-;;;;:::o;3929:754:4:-;4032:7;4057:22;4082:13;;4057:38;;4106:19;4301:9;4296:328;4316:14;4312:1;:18;4296:328;;;4356:31;4390:11;:14;4402:1;4390:14;;;;;;;;;;;4356:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4428:9;:16;;;4423:186;;4488:5;4473:11;:20;4469:85;;4529:1;4522:8;;;;;;;;4469:85;4576:13;;;;;;;4423:186;4337:287;4332:3;;;;;;;4296:328;;;;4652:23;;;;;;;;;;;;;;3929:754;;;;:::o;2093:86:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2169:3:11::1;2159:7;:13;;;;;;:::i;:::-;;2093:86:::0;:::o;8700:124:4:-;8764:7;8791:20;8803:7;8791:11;:20::i;:::-;:25;;;8784:32;;8700:124;;;:::o;464:80:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2293:108::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2387:7:11::1;2368:16;:26;;;;2293:108:::0;:::o;6687:206:4:-;6751:7;6792:1;6775:19;;:5;:19;;;6771:60;;6803:28;;;;;;;;;;;;;;6771:60;6857:12;:19;6870:5;6857:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6849:36;;6842:43;;6687:206;;;:::o;1746:148:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1:::1;1816:40;;1837:6;;;;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6;;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;2005:82:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2069:11:11::1;;;;;;;;;;;2068:12;2054:11;;:26;;;;;;;;;;;;;;;;;;2005:82::o:0;1095:87:12:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;9060:104:4:-;9116:13;9149:7;9142:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9060:104;:::o;273:34:11:-;;;;:::o;10808:302:4:-;10934:12;:10;:12::i;:::-;10922:24;;:8;:24;;;10918:54;;10955:17;;;;;;;;;;;;;;10918:54;11030:8;10985:18;:32;11004:12;:10;:12::i;:::-;10985:32;;;;;;;;;;;;;;;:42;11018:8;10985:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;11083:8;11054:48;;11069:12;:10;:12::i;:::-;11054:48;;;11093:8;11054:48;;;;;;:::i;:::-;;;;;;;;10808:302;;:::o;386:35:11:-;;;;:::o;11959:342:4:-;12126:28;12136:4;12142:2;12146:7;12126:9;:28::i;:::-;12170:48;12193:4;12199:2;12203:7;12212:5;12170:22;:48::i;:::-;12165:129;;12242:40;;;;;;;;;;;;;;12165:129;11959:342;;;;:::o;1700:299:11:-;1787:13;1833:16;1841:7;1833;:16::i;:::-;1812:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;1963:7;1972:18;:7;:16;:18::i;:::-;1946:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1932:60;;1700:299;;;:::o;427:31::-;;;;;;;;;;;;;:::o;195:::-;;;;:::o;1277:305::-;1334:7;1353:14;1370:13;:11;:13::i;:::-;1353:30;;1393:12;1432:13;;1423:6;:22;:54;;;;;1461:16;;1449:8;:28;1423:54;1419:136;;;1500:1;1493:8;;1419:136;;;1539:5;;1532:12;;1419:136;1571:4;1564:11;;;;1277:305;;;:::o;11181:214:4:-;11323:4;11352:18;:25;11371:5;11352:25;;;;;;;;;;;;;;;:35;11378:8;11352:35;;;;;;;;;;;;;;;;;;;;;;;;;11345:42;;11181:214;;;;:::o;2049:244:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2158:1:::1;2138:22;;:8;:22;;::::0;2130:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:8;2219:38;;2240:6;;;;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;;:17;;;;;;;;;;;;;;;;;;2049:244:::0;:::o;232:35:11:-;;;;:::o;313:28::-;;;;:::o;1195:326:0:-;1255:4;1512:1;1490:7;:19;;;:23;1483:30;;1195:326;;;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;12556:144:4:-;12613:4;12647:13;;12637:7;:23;:55;;;;;12665:11;:20;12677:7;12665:20;;;;;;;;;;;:27;;;;;;;;;;;;12664:28;12637:55;12630:62;;12556:144;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;19874:196:4:-;20016:2;19989:15;:24;20005:7;19989:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20054:7;20050:2;20034:28;;20043:5;20034:28;;;;;;;;;;;;19874:196;;;:::o;15324:2138::-;15439:35;15477:20;15489:7;15477:11;:20::i;:::-;15439:58;;15510:22;15552:13;:18;;;15536:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15587:50;15604:13;:18;;;15624:12;:10;:12::i;:::-;15587:16;:50::i;:::-;15536:101;:154;;;;15678:12;:10;:12::i;:::-;15654:36;;:20;15666:7;15654:11;:20::i;:::-;:36;;;15536:154;15510:181;;15709:17;15704:66;;15735:35;;;;;;;;;;;;;;15704:66;15807:4;15785:26;;:13;:18;;;:26;;;15781:67;;15820:28;;;;;;;;;;;;;;15781:67;15877:1;15863:16;;:2;:16;;;15859:52;;15888:23;;;;;;;;;;;;;;15859:52;15924:43;15946:4;15952:2;15956:7;15965:1;15924:21;:43::i;:::-;16032:49;16049:1;16053:7;16062:13;:18;;;16032:8;:49::i;:::-;16407:1;16377:12;:18;16390:4;16377:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:1;16423:12;:16;16436:2;16423:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16497:2;16469:11;:20;16481:7;16469:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16559:15;16514:11;:20;16526:7;16514:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16827:19;16859:1;16849:7;:11;16827:33;;16920:1;16879:43;;:11;:24;16891:11;16879:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16875:471;;17104:13;;17090:11;:27;17086:245;;;17174:13;:18;;;17142:11;:24;17154:11;17142:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;17257:13;:54;;;17215:11;:24;17227:11;17215:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;17086:245;16875:471;16352:1005;17393:7;17389:2;17374:27;;17383:4;17374:27;;;;;;;;;;;;17412:42;17433:4;17439:2;17443:7;17452:1;17412:20;:42::i;:::-;15428:2034;;15324:2138;;;:::o;6901:207::-;6962:7;7003:1;6986:19;;:5;:19;;;6982:59;;7014:27;;;;;;;;;;;;;;6982:59;7067:12;:19;7080:5;7067:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;7059:41;;7052:48;;6901:207;;;:::o;12708:104::-;12777:27;12787:2;12791:8;12777:27;;;;;;;;;;;;:9;:27::i;:::-;12708:104;;:::o;7525:1113::-;7613:21;;:::i;:::-;7652:12;7667:7;7652:22;;7723:13;;7716:4;:20;7712:859;;;7757:31;7791:11;:17;7803:4;7791:17;;;;;;;;;;;7757:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7832:9;:16;;;7827:729;;7903:1;7877:28;;:9;:14;;;:28;;;7873:101;;7941:9;7934:16;;;;;;7873:101;8276:261;8283:4;8276:261;;;8316:6;;;;;;;;8361:11;:17;8373:4;8361:17;;;;;;;;;;;8349:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8435:1;8409:28;;:9;:14;;;:28;;;8405:109;;8477:9;8470:16;;;;;;8405:109;8276:261;;;7827:729;7738:833;7712:859;8599:31;;;;;;;;;;;;;;7525:1113;;;;:::o;20635:923::-;20790:4;20811:15;:2;:13;;;:15::i;:::-;20807:744;;;20880:2;20864:36;;;20923:12;:10;:12::i;:::-;20958:4;20985:7;21015:5;20864:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20843:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21243:1;21226:6;:13;:18;21222:259;;21276:40;;;;;;;;;;;;;;21222:259;21431:6;21425:13;21416:6;21412:2;21408:15;21401:38;20843:653;21113:45;;;21103:55;;;:6;:55;;;;21096:62;;;;;20807:744;21535:4;21528:11;;20635:923;;;;;;;:::o;342:723:13:-;398:13;628:1;619:5;:10;615:53;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;22206:159:4:-;;;;;:::o;23024:158::-;;;;;:::o;13175:163::-;13298:32;13304:2;13308:8;13318:5;13325:4;13298:5;:32::i;:::-;13175:163;;;:::o;13597:1473::-;13736:20;13759:13;;13736:36;;13801:1;13787:16;;:2;:16;;;13783:48;;13812:19;;;;;;;;;;;;;;13783:48;13858:1;13846:8;:13;13842:44;;13868:18;;;;;;;;;;;;;;13842:44;13899:61;13929:1;13933:2;13937:12;13951:8;13899:21;:61::i;:::-;14272:8;14237:12;:16;14250:2;14237:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14336:8;14296:12;:16;14309:2;14296:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14395:2;14362:11;:25;14374:12;14362:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14462:15;14412:11;:25;14424:12;14412:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14495:20;14518:12;14495:35;;14552:9;14547:389;14567:8;14563:1;:12;14547:389;;;14631:12;14627:2;14606:38;;14623:1;14606:38;;;;;;;;;;;;14689:4;:89;;;;;14719:59;14750:1;14754:2;14758:12;14772:5;14719:22;:59::i;:::-;14718:60;14689:89;14663:225;;;14828:40;;;;;;;;;;;;;;14663:225;14906:14;;;;;;;14577:3;;;;;;;14547:389;;;;14968:12;14952:13;:28;;;;14212:780;15002:60;15031:1;15035:2;15039:12;15053:8;15002:20;:60::i;:::-;13725:1345;13597:1473;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:14:-;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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:182::-;12743:34;12739:1;12731:6;12727:14;12720:58;12603:182;:::o;12791:366::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:419::-;13329:4;13367:2;13356:9;13352:18;13344:26;;13416:9;13410:4;13406:20;13402:1;13391:9;13387:17;13380:47;13444:131;13570:4;13444:131;:::i;:::-;13436:139;;13163:419;;;:::o;13588:174::-;13728:26;13724:1;13716:6;13712:14;13705:50;13588:174;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13768:366;;;:::o;14140:419::-;14306:4;14344:2;14333:9;14329:18;14321:26;;14393:9;14387:4;14383:20;14379:1;14368:9;14364:17;14357:47;14421:131;14547:4;14421:131;:::i;:::-;14413:139;;14140:419;;;:::o;14565:180::-;14613:77;14610:1;14603:88;14710:4;14707:1;14700:15;14734:4;14731:1;14724:15;14751:191;14791:3;14810:20;14828:1;14810:20;:::i;:::-;14805:25;;14844:20;14862:1;14844:20;:::i;:::-;14839:25;;14887:1;14884;14880:9;14873:16;;14908:3;14905:1;14902:10;14899:36;;;14915:18;;:::i;:::-;14899:36;14751:191;;;;:::o;14948:167::-;15088:19;15084:1;15076:6;15072:14;15065:43;14948:167;:::o;15121:366::-;15263:3;15284:67;15348:2;15343:3;15284:67;:::i;:::-;15277:74;;15360:93;15449:3;15360:93;:::i;:::-;15478:2;15473:3;15469:12;15462:19;;15121:366;;;:::o;15493:419::-;15659:4;15697:2;15686:9;15682:18;15674:26;;15746:9;15740:4;15736:20;15732:1;15721:9;15717:17;15710:47;15774:131;15900:4;15774:131;:::i;:::-;15766:139;;15493:419;;;:::o;15918:164::-;16058:16;16054:1;16046:6;16042:14;16035:40;15918:164;:::o;16088:366::-;16230:3;16251:67;16315:2;16310:3;16251:67;:::i;:::-;16244:74;;16327:93;16416:3;16327:93;:::i;:::-;16445:2;16440:3;16436:12;16429:19;;16088:366;;;:::o;16460:419::-;16626:4;16664:2;16653:9;16649:18;16641:26;;16713:9;16707:4;16703:20;16699:1;16688:9;16684:17;16677:47;16741:131;16867:4;16741:131;:::i;:::-;16733:139;;16460:419;;;:::o;16885:410::-;16925:7;16948:20;16966:1;16948:20;:::i;:::-;16943:25;;16982:20;17000:1;16982:20;:::i;:::-;16977:25;;17037:1;17034;17030:9;17059:30;17077:11;17059:30;:::i;:::-;17048:41;;17238:1;17229:7;17225:15;17222:1;17219:22;17199:1;17192:9;17172:83;17149:139;;17268:18;;:::i;:::-;17149:139;16933:362;16885:410;;;;:::o;17301:179::-;17441:31;17437:1;17429:6;17425:14;17418:55;17301:179;:::o;17486:366::-;17628:3;17649:67;17713:2;17708:3;17649:67;:::i;:::-;17642:74;;17725:93;17814:3;17725:93;:::i;:::-;17843:2;17838:3;17834:12;17827:19;;17486:366;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:147::-;18384:11;18421:3;18406:18;;18283:147;;;;:::o;18436:114::-;;:::o;18556:398::-;18715:3;18736:83;18817:1;18812:3;18736:83;:::i;:::-;18729:90;;18828:93;18917:3;18828:93;:::i;:::-;18946:1;18941:3;18937:11;18930:18;;18556:398;;;:::o;18960:379::-;19144:3;19166:147;19309:3;19166:147;:::i;:::-;19159:154;;19330:3;19323:10;;18960:379;;;:::o;19345:166::-;19485:18;19481:1;19473:6;19469:14;19462:42;19345:166;:::o;19517:366::-;19659:3;19680:67;19744:2;19739:3;19680:67;:::i;:::-;19673:74;;19756:93;19845:3;19756:93;:::i;:::-;19874:2;19869:3;19865:12;19858:19;;19517:366;;;:::o;19889:419::-;20055:4;20093:2;20082:9;20078:18;20070:26;;20142:9;20136:4;20132:20;20128:1;20117:9;20113:17;20106:47;20170:131;20296:4;20170:131;:::i;:::-;20162:139;;19889:419;;;:::o;20314:141::-;20363:4;20386:3;20378:11;;20409:3;20406:1;20399:14;20443:4;20440:1;20430:18;20422:26;;20314:141;;;:::o;20461:93::-;20498:6;20545:2;20540;20533:5;20529:14;20525:23;20515:33;;20461:93;;;:::o;20560:107::-;20604:8;20654:5;20648:4;20644:16;20623:37;;20560:107;;;;:::o;20673:393::-;20742:6;20792:1;20780:10;20776:18;20815:97;20845:66;20834:9;20815:97;:::i;:::-;20933:39;20963:8;20952:9;20933:39;:::i;:::-;20921:51;;21005:4;21001:9;20994:5;20990:21;20981:30;;21054:4;21044:8;21040:19;21033:5;21030:30;21020:40;;20749:317;;20673:393;;;;;:::o;21072:60::-;21100:3;21121:5;21114:12;;21072:60;;;:::o;21138:142::-;21188:9;21221:53;21239:34;21248:24;21266:5;21248:24;:::i;:::-;21239:34;:::i;:::-;21221:53;:::i;:::-;21208:66;;21138:142;;;:::o;21286:75::-;21329:3;21350:5;21343:12;;21286:75;;;:::o;21367:269::-;21477:39;21508:7;21477:39;:::i;:::-;21538:91;21587:41;21611:16;21587:41;:::i;:::-;21579:6;21572:4;21566:11;21538:91;:::i;:::-;21532:4;21525:105;21443:193;21367:269;;;:::o;21642:73::-;21687:3;21642:73;:::o;21721:189::-;21798:32;;:::i;:::-;21839:65;21897:6;21889;21883:4;21839:65;:::i;:::-;21774:136;21721:189;;:::o;21916:186::-;21976:120;21993:3;21986:5;21983:14;21976:120;;;22047:39;22084:1;22077:5;22047:39;:::i;:::-;22020:1;22013:5;22009:13;22000:22;;21976:120;;;21916:186;;:::o;22108:543::-;22209:2;22204:3;22201:11;22198:446;;;22243:38;22275:5;22243:38;:::i;:::-;22327:29;22345:10;22327:29;:::i;:::-;22317:8;22313:44;22510:2;22498:10;22495:18;22492:49;;;22531:8;22516:23;;22492:49;22554:80;22610:22;22628:3;22610:22;:::i;:::-;22600:8;22596:37;22583:11;22554:80;:::i;:::-;22213:431;;22198:446;22108:543;;;:::o;22657:117::-;22711:8;22761:5;22755:4;22751:16;22730:37;;22657:117;;;;:::o;22780:169::-;22824:6;22857:51;22905:1;22901:6;22893:5;22890:1;22886:13;22857:51;:::i;:::-;22853:56;22938:4;22932;22928:15;22918:25;;22831:118;22780:169;;;;:::o;22954:295::-;23030:4;23176:29;23201:3;23195:4;23176:29;:::i;:::-;23168:37;;23238:3;23235:1;23231:11;23225:4;23222:21;23214:29;;22954:295;;;;:::o;23254:1395::-;23371:37;23404:3;23371:37;:::i;:::-;23473:18;23465:6;23462:30;23459:56;;;23495:18;;:::i;:::-;23459:56;23539:38;23571:4;23565:11;23539:38;:::i;:::-;23624:67;23684:6;23676;23670:4;23624:67;:::i;:::-;23718:1;23742:4;23729:17;;23774:2;23766:6;23763:14;23791:1;23786:618;;;;24448:1;24465:6;24462:77;;;24514:9;24509:3;24505:19;24499:26;24490:35;;24462:77;24565:67;24625:6;24618:5;24565:67;:::i;:::-;24559:4;24552:81;24421:222;23756:887;;23786:618;23838:4;23834:9;23826:6;23822:22;23872:37;23904:4;23872:37;:::i;:::-;23931:1;23945:208;23959:7;23956:1;23953:14;23945:208;;;24038:9;24033:3;24029:19;24023:26;24015:6;24008:42;24089:1;24081:6;24077:14;24067:24;;24136:2;24125:9;24121:18;24108:31;;23982:4;23979:1;23975:12;23970:17;;23945:208;;;24181:6;24172:7;24169:19;24166:179;;;24239:9;24234:3;24230:19;24224:26;24282:48;24324:4;24316:6;24312:17;24301:9;24282:48;:::i;:::-;24274:6;24267:64;24189:156;24166:179;24391:1;24387;24379:6;24375:14;24371:22;24365:4;24358:36;23793:611;;;23756:887;;23346:1303;;;23254:1395;;:::o;24655:234::-;24795:34;24791:1;24783:6;24779:14;24772:58;24864:17;24859:2;24851:6;24847:15;24840:42;24655:234;:::o;24895:366::-;25037:3;25058:67;25122:2;25117:3;25058:67;:::i;:::-;25051:74;;25134:93;25223:3;25134:93;:::i;:::-;25252:2;25247:3;25243:12;25236:19;;24895:366;;;:::o;25267:419::-;25433:4;25471:2;25460:9;25456:18;25448:26;;25520:9;25514:4;25510:20;25506:1;25495:9;25491:17;25484:47;25548:131;25674:4;25548:131;:::i;:::-;25540:139;;25267:419;;;:::o;25692:148::-;25794:11;25831:3;25816:18;;25692:148;;;;:::o;25870:874::-;25973:3;26010:5;26004:12;26039:36;26065:9;26039:36;:::i;:::-;26091:89;26173:6;26168:3;26091:89;:::i;:::-;26084:96;;26211:1;26200:9;26196:17;26227:1;26222:166;;;;26402:1;26397:341;;;;26189:549;;26222:166;26306:4;26302:9;26291;26287:25;26282:3;26275:38;26368:6;26361:14;26354:22;26346:6;26342:35;26337:3;26333:45;26326:52;;26222:166;;26397:341;26464:38;26496:5;26464:38;:::i;:::-;26524:1;26538:154;26552:6;26549:1;26546:13;26538:154;;;26626:7;26620:14;26616:1;26611:3;26607:11;26600:35;26676:1;26667:7;26663:15;26652:26;;26574:4;26571:1;26567:12;26562:17;;26538:154;;;26721:6;26716:3;26712:16;26705:23;;26404:334;;26189:549;;25977:767;;25870:874;;;;:::o;26750:390::-;26856:3;26884:39;26917:5;26884:39;:::i;:::-;26939:89;27021:6;27016:3;26939:89;:::i;:::-;26932:96;;27037:65;27095:6;27090:3;27083:4;27076:5;27072:16;27037:65;:::i;:::-;27127:6;27122:3;27118:16;27111:23;;26860:280;26750:390;;;;:::o;27146:429::-;27323:3;27345:92;27433:3;27424:6;27345:92;:::i;:::-;27338:99;;27454:95;27545:3;27536:6;27454:95;:::i;:::-;27447:102;;27566:3;27559:10;;27146:429;;;;;:::o;27581:225::-;27721:34;27717:1;27709:6;27705:14;27698:58;27790:8;27785:2;27777:6;27773:15;27766:33;27581:225;:::o;27812:366::-;27954:3;27975:67;28039:2;28034:3;27975:67;:::i;:::-;27968:74;;28051:93;28140:3;28051:93;:::i;:::-;28169:2;28164:3;28160:12;28153:19;;27812:366;;;:::o;28184:419::-;28350:4;28388:2;28377:9;28373:18;28365:26;;28437:9;28431:4;28427:20;28423:1;28412:9;28408:17;28401:47;28465:131;28591:4;28465:131;:::i;:::-;28457:139;;28184:419;;;:::o;28609:98::-;28660:6;28694:5;28688:12;28678:22;;28609:98;;;:::o;28713:168::-;28796:11;28830:6;28825:3;28818:19;28870:4;28865:3;28861:14;28846:29;;28713:168;;;;:::o;28887:373::-;28973:3;29001:38;29033:5;29001:38;:::i;:::-;29055:70;29118:6;29113:3;29055:70;:::i;:::-;29048:77;;29134:65;29192:6;29187:3;29180:4;29173:5;29169:16;29134:65;:::i;:::-;29224:29;29246:6;29224:29;:::i;:::-;29219:3;29215:39;29208:46;;28977:283;28887:373;;;;:::o;29266:640::-;29461:4;29499:3;29488:9;29484:19;29476:27;;29513:71;29581:1;29570:9;29566:17;29557:6;29513:71;:::i;:::-;29594:72;29662:2;29651:9;29647:18;29638:6;29594:72;:::i;:::-;29676;29744:2;29733:9;29729:18;29720:6;29676:72;:::i;:::-;29795:9;29789:4;29785:20;29780:2;29769:9;29765:18;29758:48;29823:76;29894:4;29885:6;29823:76;:::i;:::-;29815:84;;29266:640;;;;;;;:::o;29912:141::-;29968:5;29999:6;29993:13;29984:22;;30015:32;30041:5;30015:32;:::i;:::-;29912:141;;;;:::o;30059:349::-;30128:6;30177:2;30165:9;30156:7;30152:23;30148:32;30145:119;;;30183:79;;:::i;:::-;30145:119;30303:1;30328:63;30383:7;30374:6;30363:9;30359:22;30328:63;:::i;:::-;30318:73;;30274:127;30059:349;;;;:::o;30414:233::-;30453:3;30476:24;30494:5;30476:24;:::i;:::-;30467:33;;30522:66;30515:5;30512:77;30509:103;;30592:18;;:::i;:::-;30509:103;30639:1;30632:5;30628:13;30621:20;;30414:233;;;:::o;30653:180::-;30701:77;30698:1;30691:88;30798:4;30795:1;30788:15;30822:4;30819:1;30812:15;30839:185;30879:1;30896:20;30914:1;30896:20;:::i;:::-;30891:25;;30930:20;30948:1;30930:20;:::i;:::-;30925:25;;30969:1;30959:35;;30974:18;;:::i;:::-;30959:35;31016:1;31013;31009:9;31004:14;;30839:185;;;;:::o;31030:194::-;31070:4;31090:20;31108:1;31090:20;:::i;:::-;31085:25;;31124:20;31142:1;31124:20;:::i;:::-;31119:25;;31168:1;31165;31161:9;31153:17;;31192:1;31186:4;31183:11;31180:37;;;31197:18;;:::i;:::-;31180:37;31030:194;;;;:::o;31230:176::-;31262:1;31279:20;31297:1;31279:20;:::i;:::-;31274:25;;31313:20;31331:1;31313:20;:::i;:::-;31308:25;;31352:1;31342:35;;31357:18;;:::i;:::-;31342:35;31398:1;31395;31391:9;31386:14;;31230:176;;;;:::o;31412:180::-;31460:77;31457:1;31450:88;31557:4;31554:1;31547:15;31581:4;31578:1;31571:15

Swarm Source

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