ETH Price: $3,408.89 (-0.21%)
Gas: 6 Gwei

Token

Love, Death + Robots (LDR)
 

Overview

Max Total Supply

699 LDR

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nftj1.eth
Balance
35 LDR
0xEF39362f69f041F3057A02F4bBe673C6F59c0d40
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:
LDRToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 14: deth.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract LDRToken is ERC721A, Ownable {
    using Strings for uint256;

    string private baseURI;

    uint256 public price = 0.01 ether;

    uint256 public maxPerTx = 5;

    uint256 public maxFreePerWallet = 50;

    uint256 public totalFree = 1500;

    uint256 public maxSupply = 10000;

    bool public mintEnabled = true;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Love, Death + Robots", "LDR") {}

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)) ||
            msg.sender == owner();

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSuply + 1, "No more bears");
        require(mintEnabled, "Minting is not live yet, hold on bear.");
        require(count < maxPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

    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(), ".json"));
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

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

    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 4 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 5 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 6 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;

    uint256 public maxSuply = 100000;

    // 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 7 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 8 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 9 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 10 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 11 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 12 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":"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":"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":"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":"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":"maxSuply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"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":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

6080604052620186a0600455662386f26fc10000600b556005600c556032600d556105dc600e55612710600f556001601060006101000a81548160ff0219169083151502179055503480156200005457600080fd5b506040518060400160405280601481526020017f4c6f76652c204465617468202b20526f626f74730000000000000000000000008152506040518060400160405280600381526020017f4c445200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d9929190620001b4565b508060039080519060200190620000f2929190620001b4565b505050600062000107620001ac60201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002c9565b600033905090565b828054620001c29062000264565b90600052602060002090601f016020900481019282620001e6576000855562000232565b82601f106200020157805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023157825182559160200191906001019062000214565b5b50905062000241919062000245565b5090565b5b808211156200026057600081600090555060010162000246565b5090565b600060028204905060018216806200027d57607f821691505b602082108114156200029457620002936200029a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613bb180620002d96000396000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063a702735711610095578063d5abeb0111610064578063d5abeb01146106bf578063e985e9c5146106ea578063f2fde38b14610727578063f968adbe14610750576101e3565b8063a702735714610603578063b88d4fde1461062e578063c87b56dd14610657578063d123973014610694576101e3565b806395d89b41116100d157806395d89b4114610568578063a035b1fe14610593578063a0712d68146105be578063a22cb465146105da576101e3565b80638da5cb5b146104c0578063908ea471146104eb57806391b7f5ed1461051657806392910eec1461053f576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e1461041857806370a0823114610455578063715018a6146104925780637ba5e621146104a9576101e3565b80633ccfd60b1461037257806342842e0e146103895780634f6ccce7146103b257806355f804b3146103ef576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a578063333e44e614610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f17565b61077b565b60405161021c919061333f565b60405180910390f35b34801561023157600080fd5b5061023a6108c5565b604051610247919061335a565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612fba565b610957565b60405161028491906132d8565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ed7565b6109d3565b005b3480156102c257600080fd5b506102cb610ade565b6040516102d8919061347c565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612dc1565b610aec565b005b34801561031657600080fd5b50610331600480360381019061032c9190612ed7565b610afc565b60405161033e919061347c565b60405180910390f35b34801561035357600080fd5b5061035c610cd5565b604051610369919061347c565b60405180910390f35b34801561037e57600080fd5b50610387610cdb565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612dc1565b610e06565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612fba565b610e26565b6040516103e6919061347c565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612f71565b610f6b565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612fba565b611001565b60405161044c91906132d8565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612d54565b611017565b604051610489919061347c565b60405180910390f35b34801561049e57600080fd5b506104a76110e7565b005b3480156104b557600080fd5b506104be611224565b005b3480156104cc57600080fd5b506104d56112cc565b6040516104e291906132d8565b60405180910390f35b3480156104f757600080fd5b506105006112f6565b60405161050d919061347c565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612fba565b6112fc565b005b34801561054b57600080fd5b5061056660048036038101906105619190612fba565b611382565b005b34801561057457600080fd5b5061057d611408565b60405161058a919061335a565b60405180910390f35b34801561059f57600080fd5b506105a861149a565b6040516105b5919061347c565b60405180910390f35b6105d860048036038101906105d39190612fba565b6114a0565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612e97565b611729565b005b34801561060f57600080fd5b506106186118a1565b604051610625919061347c565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612e14565b6118a7565b005b34801561066357600080fd5b5061067e60048036038101906106799190612fba565b6118fa565b60405161068b919061335a565b60405180910390f35b3480156106a057600080fd5b506106a9611976565b6040516106b6919061333f565b60405180910390f35b3480156106cb57600080fd5b506106d4611989565b6040516106e1919061347c565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612d81565b61198f565b60405161071e919061333f565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612d54565b611a23565b005b34801561075c57600080fd5b50610765611bcf565b604051610772919061347c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611bd5565b5b9050919050565b6060600280546108d49061374c565b80601f01602080910402602001604051908101604052809291908181526020018280546109009061374c565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611c3f565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109de82611001565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611c79565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a975750610a9581610a90611c79565b61198f565b155b15610ace576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad9838383611c81565b505050565b600060015460005403905090565b610af7838383611d33565b505050565b6000610b0783611017565b8210610b3f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610cc9576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610c285750610cbc565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c6857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cba5786841415610cb1578195505050505050610ccf565b83806001019450505b505b8080600101915050610b4b565b50600080fd5b92915050565b600e5481565b610ce3611c79565b73ffffffffffffffffffffffffffffffffffffffff16610d016112cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906133bc565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d7d906132c3565b60006040518083038185875af1925050503d8060008114610dba576040519150601f19603f3d011682016040523d82523d6000602084013e610dbf565b606091505b5050905080610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9061343c565b60405180910390fd5b50565b610e21838383604051806020016040528060008152506118a7565b505050565b60008060005490506000805b82811015610f33576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f255785831415610f1c5781945050505050610f66565b82806001019350505b508080600101915050610e32565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610f73611c79565b73ffffffffffffffffffffffffffffffffffffffff16610f916112cc565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906133bc565b60405180910390fd5b80600a9080519060200190610ffd929190612b25565b5050565b600061100c82612224565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110ef611c79565b73ffffffffffffffffffffffffffffffffffffffff1661110d6112cc565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906133bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61122c611c79565b73ffffffffffffffffffffffffffffffffffffffff1661124a6112cc565b73ffffffffffffffffffffffffffffffffffffffff16146112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906133bc565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60045481565b611304611c79565b73ffffffffffffffffffffffffffffffffffffffff166113226112cc565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f906133bc565b60405180910390fd5b80600b8190555050565b61138a611c79565b73ffffffffffffffffffffffffffffffffffffffff166113a86112cc565b73ffffffffffffffffffffffffffffffffffffffff16146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906133bc565b60405180910390fd5b80600e8190555050565b6060600380546114179061374c565b80601f01602080910402602001604051908101604052809291908181526020018280546114439061374c565b80156114905780601f1061146557610100808354040283529160200191611490565b820191906000526020600020905b81548152906001019060200180831161147357829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546114b89190613581565b836114c1610ade565b6114cb9190613581565b1080156115245750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115219190613581565b11155b8061156157506115326112cc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561156e57600091505b818361157a9190613608565b3410156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906133fc565b60405180910390fd5b60016004546115cb9190613581565b836115d4610ade565b6115de9190613581565b1061161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061339c565b60405180910390fd5b601060009054906101000a900460ff1661166d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116649061341c565b60405180910390fd5b6001600c5461167c9190613581565b83106116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061345c565b60405180910390fd5b801561171a5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117129190613581565b925050819055505b61172433846124a0565b505050565b611731611c79565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a3611c79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611850611c79565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611895919061333f565b60405180910390a35050565b600d5481565b6118b2848484611d33565b6118be848484846124be565b6118f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061190582611c3f565b611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b906133dc565b60405180910390fd5b600a61194f8361264c565b604051602001611960929190613294565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2b611c79565b73ffffffffffffffffffffffffffffffffffffffff16611a496112cc565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906133bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b069061337c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611c72575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d3e82612224565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d65611c79565b73ffffffffffffffffffffffffffffffffffffffff161480611d985750611d978260000151611d92611c79565b61198f565b5b80611ddd5750611da6611c79565b73ffffffffffffffffffffffffffffffffffffffff16611dc584610957565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e16576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ef385858560016127ad565b611f036000848460000151611c81565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121b4576000548110156121b35782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221d85858560016127b3565b5050505050565b61222c612bab565b6000829050600054811015612469576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161246757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461234b57809250505061249b565b5b60011561246657818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461246157809250505061249b565b61234c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6124ba8282604051806020016040528060008152506127b9565b5050565b60006124df8473ffffffffffffffffffffffffffffffffffffffff166127cb565b1561263f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612508611c79565b8786866040518563ffffffff1660e01b815260040161252a94939291906132f3565b602060405180830381600087803b15801561254457600080fd5b505af192505050801561257557506040513d601f19601f820116820180604052508101906125729190612f44565b60015b6125ef573d80600081146125a5576040519150601f19603f3d011682016040523d82523d6000602084013e6125aa565b606091505b506000815114156125e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612644565b600190505b949350505050565b60606000821415612694576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a8565b600082905060005b600082146126c65780806126af906137af565b915050600a826126bf91906135d7565b915061269c565b60008167ffffffffffffffff8111156126e2576126e16138e5565b5b6040519080825280601f01601f1916602001820160405280156127145781602001600182028036833780820191505090505b5090505b600085146127a15760018261272d9190613662565b9150600a8561273c91906137f8565b60306127489190613581565b60f81b81838151811061275e5761275d6138b6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561279a91906135d7565b9450612718565b8093505050505b919050565b50505050565b50505050565b6127c683838360016127ee565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612896576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128a360008683876127ad565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b0857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612abc5750612aba60008884886124be565b155b15612af3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a41565b508060008190555050612b1e60008683876127b3565b5050505050565b828054612b319061374c565b90600052602060002090601f016020900481019282612b535760008555612b9a565b82601f10612b6c57805160ff1916838001178555612b9a565b82800160010185558215612b9a579182015b82811115612b99578251825591602001919060010190612b7e565b5b509050612ba79190612bee565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c07576000816000905550600101612bef565b5090565b6000612c1e612c19846134bc565b613497565b905082815260208101848484011115612c3a57612c39613919565b5b612c4584828561370a565b509392505050565b6000612c60612c5b846134ed565b613497565b905082815260208101848484011115612c7c57612c7b613919565b5b612c8784828561370a565b509392505050565b600081359050612c9e81613b1f565b92915050565b600081359050612cb381613b36565b92915050565b600081359050612cc881613b4d565b92915050565b600081519050612cdd81613b4d565b92915050565b600082601f830112612cf857612cf7613914565b5b8135612d08848260208601612c0b565b91505092915050565b600082601f830112612d2657612d25613914565b5b8135612d36848260208601612c4d565b91505092915050565b600081359050612d4e81613b64565b92915050565b600060208284031215612d6a57612d69613923565b5b6000612d7884828501612c8f565b91505092915050565b60008060408385031215612d9857612d97613923565b5b6000612da685828601612c8f565b9250506020612db785828601612c8f565b9150509250929050565b600080600060608486031215612dda57612dd9613923565b5b6000612de886828701612c8f565b9350506020612df986828701612c8f565b9250506040612e0a86828701612d3f565b9150509250925092565b60008060008060808587031215612e2e57612e2d613923565b5b6000612e3c87828801612c8f565b9450506020612e4d87828801612c8f565b9350506040612e5e87828801612d3f565b925050606085013567ffffffffffffffff811115612e7f57612e7e61391e565b5b612e8b87828801612ce3565b91505092959194509250565b60008060408385031215612eae57612ead613923565b5b6000612ebc85828601612c8f565b9250506020612ecd85828601612ca4565b9150509250929050565b60008060408385031215612eee57612eed613923565b5b6000612efc85828601612c8f565b9250506020612f0d85828601612d3f565b9150509250929050565b600060208284031215612f2d57612f2c613923565b5b6000612f3b84828501612cb9565b91505092915050565b600060208284031215612f5a57612f59613923565b5b6000612f6884828501612cce565b91505092915050565b600060208284031215612f8757612f86613923565b5b600082013567ffffffffffffffff811115612fa557612fa461391e565b5b612fb184828501612d11565b91505092915050565b600060208284031215612fd057612fcf613923565b5b6000612fde84828501612d3f565b91505092915050565b612ff081613696565b82525050565b612fff816136a8565b82525050565b600061301082613533565b61301a8185613549565b935061302a818560208601613719565b61303381613928565b840191505092915050565b60006130498261353e565b6130538185613565565b9350613063818560208601613719565b61306c81613928565b840191505092915050565b60006130828261353e565b61308c8185613576565b935061309c818560208601613719565b80840191505092915050565b600081546130b58161374c565b6130bf8186613576565b945060018216600081146130da57600181146130eb5761311e565b60ff1983168652818601935061311e565b6130f48561351e565b60005b83811015613116578154818901526001820191506020810190506130f7565b838801955050505b50505092915050565b6000613134602683613565565b915061313f82613939565b604082019050919050565b6000613157600d83613565565b915061316282613988565b602082019050919050565b600061317a600583613576565b9150613185826139b1565b600582019050919050565b600061319d602083613565565b91506131a8826139da565b602082019050919050565b60006131c0602f83613565565b91506131cb82613a03565b604082019050919050565b60006131e3601d83613565565b91506131ee82613a52565b602082019050919050565b6000613206602683613565565b915061321182613a7b565b604082019050919050565b600061322960008361355a565b915061323482613aca565b600082019050919050565b600061324c601083613565565b915061325782613acd565b602082019050919050565b600061326f601383613565565b915061327a82613af6565b602082019050919050565b61328e81613700565b82525050565b60006132a082856130a8565b91506132ac8284613077565b91506132b78261316d565b91508190509392505050565b60006132ce8261321c565b9150819050919050565b60006020820190506132ed6000830184612fe7565b92915050565b60006080820190506133086000830187612fe7565b6133156020830186612fe7565b6133226040830185613285565b81810360608301526133348184613005565b905095945050505050565b60006020820190506133546000830184612ff6565b92915050565b60006020820190508181036000830152613374818461303e565b905092915050565b6000602082019050818103600083015261339581613127565b9050919050565b600060208201905081810360008301526133b58161314a565b9050919050565b600060208201905081810360008301526133d581613190565b9050919050565b600060208201905081810360008301526133f5816131b3565b9050919050565b60006020820190508181036000830152613415816131d6565b9050919050565b60006020820190508181036000830152613435816131f9565b9050919050565b600060208201905081810360008301526134558161323f565b9050919050565b6000602082019050818103600083015261347581613262565b9050919050565b60006020820190506134916000830184613285565b92915050565b60006134a16134b2565b90506134ad828261377e565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d7576134d66138e5565b5b6134e082613928565b9050602081019050919050565b600067ffffffffffffffff821115613508576135076138e5565b5b61351182613928565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061358c82613700565b915061359783613700565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135cc576135cb613829565b5b828201905092915050565b60006135e282613700565b91506135ed83613700565b9250826135fd576135fc613858565b5b828204905092915050565b600061361382613700565b915061361e83613700565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365757613656613829565b5b828202905092915050565b600061366d82613700565b915061367883613700565b92508282101561368b5761368a613829565b5b828203905092915050565b60006136a1826136e0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373757808201518184015260208101905061371c565b83811115613746576000848401525b50505050565b6000600282049050600182168061376457607f821691505b6020821081141561377857613777613887565b5b50919050565b61378782613928565b810181811067ffffffffffffffff821117156137a6576137a56138e5565b5b80604052505050565b60006137ba82613700565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137ed576137ec613829565b5b600182019050919050565b600061380382613700565b915061380e83613700565b92508261381e5761381d613858565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520626561727300000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20626561722e0000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b2881613696565b8114613b3357600080fd5b50565b613b3f816136a8565b8114613b4a57600080fd5b50565b613b56816136b4565b8114613b6157600080fd5b50565b613b6d81613700565b8114613b7857600080fd5b5056fea26469706673582212206eb6044e805ab6266d72f0d361dc898cf41390e98a9259ccd1fa993a0f8cf89664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063a702735711610095578063d5abeb0111610064578063d5abeb01146106bf578063e985e9c5146106ea578063f2fde38b14610727578063f968adbe14610750576101e3565b8063a702735714610603578063b88d4fde1461062e578063c87b56dd14610657578063d123973014610694576101e3565b806395d89b41116100d157806395d89b4114610568578063a035b1fe14610593578063a0712d68146105be578063a22cb465146105da576101e3565b80638da5cb5b146104c0578063908ea471146104eb57806391b7f5ed1461051657806392910eec1461053f576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e1461041857806370a0823114610455578063715018a6146104925780637ba5e621146104a9576101e3565b80633ccfd60b1461037257806342842e0e146103895780634f6ccce7146103b257806355f804b3146103ef576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a578063333e44e614610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f17565b61077b565b60405161021c919061333f565b60405180910390f35b34801561023157600080fd5b5061023a6108c5565b604051610247919061335a565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612fba565b610957565b60405161028491906132d8565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ed7565b6109d3565b005b3480156102c257600080fd5b506102cb610ade565b6040516102d8919061347c565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612dc1565b610aec565b005b34801561031657600080fd5b50610331600480360381019061032c9190612ed7565b610afc565b60405161033e919061347c565b60405180910390f35b34801561035357600080fd5b5061035c610cd5565b604051610369919061347c565b60405180910390f35b34801561037e57600080fd5b50610387610cdb565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612dc1565b610e06565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612fba565b610e26565b6040516103e6919061347c565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612f71565b610f6b565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612fba565b611001565b60405161044c91906132d8565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612d54565b611017565b604051610489919061347c565b60405180910390f35b34801561049e57600080fd5b506104a76110e7565b005b3480156104b557600080fd5b506104be611224565b005b3480156104cc57600080fd5b506104d56112cc565b6040516104e291906132d8565b60405180910390f35b3480156104f757600080fd5b506105006112f6565b60405161050d919061347c565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612fba565b6112fc565b005b34801561054b57600080fd5b5061056660048036038101906105619190612fba565b611382565b005b34801561057457600080fd5b5061057d611408565b60405161058a919061335a565b60405180910390f35b34801561059f57600080fd5b506105a861149a565b6040516105b5919061347c565b60405180910390f35b6105d860048036038101906105d39190612fba565b6114a0565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612e97565b611729565b005b34801561060f57600080fd5b506106186118a1565b604051610625919061347c565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190612e14565b6118a7565b005b34801561066357600080fd5b5061067e60048036038101906106799190612fba565b6118fa565b60405161068b919061335a565b60405180910390f35b3480156106a057600080fd5b506106a9611976565b6040516106b6919061333f565b60405180910390f35b3480156106cb57600080fd5b506106d4611989565b6040516106e1919061347c565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612d81565b61198f565b60405161071e919061333f565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612d54565b611a23565b005b34801561075c57600080fd5b50610765611bcf565b604051610772919061347c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611bd5565b5b9050919050565b6060600280546108d49061374c565b80601f01602080910402602001604051908101604052809291908181526020018280546109009061374c565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611c3f565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109de82611001565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611c79565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a975750610a9581610a90611c79565b61198f565b155b15610ace576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad9838383611c81565b505050565b600060015460005403905090565b610af7838383611d33565b505050565b6000610b0783611017565b8210610b3f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610cc9576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610c285750610cbc565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c6857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cba5786841415610cb1578195505050505050610ccf565b83806001019450505b505b8080600101915050610b4b565b50600080fd5b92915050565b600e5481565b610ce3611c79565b73ffffffffffffffffffffffffffffffffffffffff16610d016112cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906133bc565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d7d906132c3565b60006040518083038185875af1925050503d8060008114610dba576040519150601f19603f3d011682016040523d82523d6000602084013e610dbf565b606091505b5050905080610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9061343c565b60405180910390fd5b50565b610e21838383604051806020016040528060008152506118a7565b505050565b60008060005490506000805b82811015610f33576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f255785831415610f1c5781945050505050610f66565b82806001019350505b508080600101915050610e32565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610f73611c79565b73ffffffffffffffffffffffffffffffffffffffff16610f916112cc565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906133bc565b60405180910390fd5b80600a9080519060200190610ffd929190612b25565b5050565b600061100c82612224565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110ef611c79565b73ffffffffffffffffffffffffffffffffffffffff1661110d6112cc565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906133bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61122c611c79565b73ffffffffffffffffffffffffffffffffffffffff1661124a6112cc565b73ffffffffffffffffffffffffffffffffffffffff16146112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906133bc565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60045481565b611304611c79565b73ffffffffffffffffffffffffffffffffffffffff166113226112cc565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f906133bc565b60405180910390fd5b80600b8190555050565b61138a611c79565b73ffffffffffffffffffffffffffffffffffffffff166113a86112cc565b73ffffffffffffffffffffffffffffffffffffffff16146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906133bc565b60405180910390fd5b80600e8190555050565b6060600380546114179061374c565b80601f01602080910402602001604051908101604052809291908181526020018280546114439061374c565b80156114905780601f1061146557610100808354040283529160200191611490565b820191906000526020600020905b81548152906001019060200180831161147357829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546114b89190613581565b836114c1610ade565b6114cb9190613581565b1080156115245750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115219190613581565b11155b8061156157506115326112cc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561156e57600091505b818361157a9190613608565b3410156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906133fc565b60405180910390fd5b60016004546115cb9190613581565b836115d4610ade565b6115de9190613581565b1061161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061339c565b60405180910390fd5b601060009054906101000a900460ff1661166d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116649061341c565b60405180910390fd5b6001600c5461167c9190613581565b83106116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061345c565b60405180910390fd5b801561171a5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117129190613581565b925050819055505b61172433846124a0565b505050565b611731611c79565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a3611c79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611850611c79565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611895919061333f565b60405180910390a35050565b600d5481565b6118b2848484611d33565b6118be848484846124be565b6118f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061190582611c3f565b611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b906133dc565b60405180910390fd5b600a61194f8361264c565b604051602001611960929190613294565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2b611c79565b73ffffffffffffffffffffffffffffffffffffffff16611a496112cc565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906133bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b069061337c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611c72575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d3e82612224565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d65611c79565b73ffffffffffffffffffffffffffffffffffffffff161480611d985750611d978260000151611d92611c79565b61198f565b5b80611ddd5750611da6611c79565b73ffffffffffffffffffffffffffffffffffffffff16611dc584610957565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e16576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ef385858560016127ad565b611f036000848460000151611c81565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121b4576000548110156121b35782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221d85858560016127b3565b5050505050565b61222c612bab565b6000829050600054811015612469576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161246757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461234b57809250505061249b565b5b60011561246657818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461246157809250505061249b565b61234c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6124ba8282604051806020016040528060008152506127b9565b5050565b60006124df8473ffffffffffffffffffffffffffffffffffffffff166127cb565b1561263f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612508611c79565b8786866040518563ffffffff1660e01b815260040161252a94939291906132f3565b602060405180830381600087803b15801561254457600080fd5b505af192505050801561257557506040513d601f19601f820116820180604052508101906125729190612f44565b60015b6125ef573d80600081146125a5576040519150601f19603f3d011682016040523d82523d6000602084013e6125aa565b606091505b506000815114156125e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612644565b600190505b949350505050565b60606000821415612694576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a8565b600082905060005b600082146126c65780806126af906137af565b915050600a826126bf91906135d7565b915061269c565b60008167ffffffffffffffff8111156126e2576126e16138e5565b5b6040519080825280601f01601f1916602001820160405280156127145781602001600182028036833780820191505090505b5090505b600085146127a15760018261272d9190613662565b9150600a8561273c91906137f8565b60306127489190613581565b60f81b81838151811061275e5761275d6138b6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561279a91906135d7565b9450612718565b8093505050505b919050565b50505050565b50505050565b6127c683838360016127ee565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612896576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128a360008683876127ad565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b0857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612abc5750612aba60008884886124be565b155b15612af3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a41565b508060008190555050612b1e60008683876127b3565b5050505050565b828054612b319061374c565b90600052602060002090601f016020900481019282612b535760008555612b9a565b82601f10612b6c57805160ff1916838001178555612b9a565b82800160010185558215612b9a579182015b82811115612b99578251825591602001919060010190612b7e565b5b509050612ba79190612bee565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c07576000816000905550600101612bef565b5090565b6000612c1e612c19846134bc565b613497565b905082815260208101848484011115612c3a57612c39613919565b5b612c4584828561370a565b509392505050565b6000612c60612c5b846134ed565b613497565b905082815260208101848484011115612c7c57612c7b613919565b5b612c8784828561370a565b509392505050565b600081359050612c9e81613b1f565b92915050565b600081359050612cb381613b36565b92915050565b600081359050612cc881613b4d565b92915050565b600081519050612cdd81613b4d565b92915050565b600082601f830112612cf857612cf7613914565b5b8135612d08848260208601612c0b565b91505092915050565b600082601f830112612d2657612d25613914565b5b8135612d36848260208601612c4d565b91505092915050565b600081359050612d4e81613b64565b92915050565b600060208284031215612d6a57612d69613923565b5b6000612d7884828501612c8f565b91505092915050565b60008060408385031215612d9857612d97613923565b5b6000612da685828601612c8f565b9250506020612db785828601612c8f565b9150509250929050565b600080600060608486031215612dda57612dd9613923565b5b6000612de886828701612c8f565b9350506020612df986828701612c8f565b9250506040612e0a86828701612d3f565b9150509250925092565b60008060008060808587031215612e2e57612e2d613923565b5b6000612e3c87828801612c8f565b9450506020612e4d87828801612c8f565b9350506040612e5e87828801612d3f565b925050606085013567ffffffffffffffff811115612e7f57612e7e61391e565b5b612e8b87828801612ce3565b91505092959194509250565b60008060408385031215612eae57612ead613923565b5b6000612ebc85828601612c8f565b9250506020612ecd85828601612ca4565b9150509250929050565b60008060408385031215612eee57612eed613923565b5b6000612efc85828601612c8f565b9250506020612f0d85828601612d3f565b9150509250929050565b600060208284031215612f2d57612f2c613923565b5b6000612f3b84828501612cb9565b91505092915050565b600060208284031215612f5a57612f59613923565b5b6000612f6884828501612cce565b91505092915050565b600060208284031215612f8757612f86613923565b5b600082013567ffffffffffffffff811115612fa557612fa461391e565b5b612fb184828501612d11565b91505092915050565b600060208284031215612fd057612fcf613923565b5b6000612fde84828501612d3f565b91505092915050565b612ff081613696565b82525050565b612fff816136a8565b82525050565b600061301082613533565b61301a8185613549565b935061302a818560208601613719565b61303381613928565b840191505092915050565b60006130498261353e565b6130538185613565565b9350613063818560208601613719565b61306c81613928565b840191505092915050565b60006130828261353e565b61308c8185613576565b935061309c818560208601613719565b80840191505092915050565b600081546130b58161374c565b6130bf8186613576565b945060018216600081146130da57600181146130eb5761311e565b60ff1983168652818601935061311e565b6130f48561351e565b60005b83811015613116578154818901526001820191506020810190506130f7565b838801955050505b50505092915050565b6000613134602683613565565b915061313f82613939565b604082019050919050565b6000613157600d83613565565b915061316282613988565b602082019050919050565b600061317a600583613576565b9150613185826139b1565b600582019050919050565b600061319d602083613565565b91506131a8826139da565b602082019050919050565b60006131c0602f83613565565b91506131cb82613a03565b604082019050919050565b60006131e3601d83613565565b91506131ee82613a52565b602082019050919050565b6000613206602683613565565b915061321182613a7b565b604082019050919050565b600061322960008361355a565b915061323482613aca565b600082019050919050565b600061324c601083613565565b915061325782613acd565b602082019050919050565b600061326f601383613565565b915061327a82613af6565b602082019050919050565b61328e81613700565b82525050565b60006132a082856130a8565b91506132ac8284613077565b91506132b78261316d565b91508190509392505050565b60006132ce8261321c565b9150819050919050565b60006020820190506132ed6000830184612fe7565b92915050565b60006080820190506133086000830187612fe7565b6133156020830186612fe7565b6133226040830185613285565b81810360608301526133348184613005565b905095945050505050565b60006020820190506133546000830184612ff6565b92915050565b60006020820190508181036000830152613374818461303e565b905092915050565b6000602082019050818103600083015261339581613127565b9050919050565b600060208201905081810360008301526133b58161314a565b9050919050565b600060208201905081810360008301526133d581613190565b9050919050565b600060208201905081810360008301526133f5816131b3565b9050919050565b60006020820190508181036000830152613415816131d6565b9050919050565b60006020820190508181036000830152613435816131f9565b9050919050565b600060208201905081810360008301526134558161323f565b9050919050565b6000602082019050818103600083015261347581613262565b9050919050565b60006020820190506134916000830184613285565b92915050565b60006134a16134b2565b90506134ad828261377e565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d7576134d66138e5565b5b6134e082613928565b9050602081019050919050565b600067ffffffffffffffff821115613508576135076138e5565b5b61351182613928565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061358c82613700565b915061359783613700565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135cc576135cb613829565b5b828201905092915050565b60006135e282613700565b91506135ed83613700565b9250826135fd576135fc613858565b5b828204905092915050565b600061361382613700565b915061361e83613700565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365757613656613829565b5b828202905092915050565b600061366d82613700565b915061367883613700565b92508282101561368b5761368a613829565b5b828203905092915050565b60006136a1826136e0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373757808201518184015260208101905061371c565b83811115613746576000848401525b50505050565b6000600282049050600182168061376457607f821691505b6020821081141561377857613777613887565b5b50919050565b61378782613928565b810181811067ffffffffffffffff821117156137a6576137a56138e5565b5b80604052505050565b60006137ba82613700565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137ed576137ec613829565b5b600182019050919050565b600061380382613700565b915061380e83613700565b92508261381e5761381d613858565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520626561727300000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20626561722e0000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b2881613696565b8114613b3357600080fd5b50565b613b3f816136a8565b8114613b4a57600080fd5b50565b613b56816136b4565b8114613b6157600080fd5b50565b613b6d81613700565b8114613b7857600080fd5b5056fea26469706673582212206eb6044e805ab6266d72f0d361dc898cf41390e98a9259ccd1fa993a0f8cf89664736f6c63430008070033

Deployed Bytecode Sourcemap

106:2220:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6055:410:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8668:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10212:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9789:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3287:278;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11143:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4875:1113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;328:31:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2123:201;;;;;;;;;;;;;:::i;:::-;;11373:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3851:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1748:86:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8484:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6524:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:11;;;;;;;;;;;;;:::i;:::-;;2035:82:13;;;;;;;;;;;;;:::i;:::-;;1061:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2494:32:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1939:90:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1840:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8830:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;211:33:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;563:723;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10515:294:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;285:36:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11618:332:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1404:338:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;405:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;366:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10875:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;251:27:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6055:410:4;6197:4;6251:25;6236:40;;;:11;:40;;;;:104;;;;6307:33;6292:48;;;:11;:48;;;;6236:104;:170;;;;6371:35;6356:50;;;:11;:50;;;;6236:170;:222;;;;6422:36;6446:11;6422:23;:36::i;:::-;6236:222;6217:241;;6055:410;;;:::o;8668:98::-;8722:13;8754:5;8747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8668:98;:::o;10212:236::-;10312:7;10340:16;10348:7;10340;:16::i;:::-;10335:64;;10365:34;;;;;;;;;;;;;;10335:64;10417:15;:24;10433:7;10417:24;;;;;;;;;;;;;;;;;;;;;10410:31;;10212:236;;;:::o;9789:362::-;9861:13;9877:24;9893:7;9877:15;:24::i;:::-;9861:40;;9921:5;9915:11;;:2;:11;;;9911:48;;;9935:24;;;;;;;;;;;;;;9911:48;9990:5;9974:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10000:37;10017:5;10024:12;:10;:12::i;:::-;10000:16;:37::i;:::-;9999:38;9974:63;9970:136;;;10060:35;;;;;;;;;;;;;;9970:136;10116:28;10125:2;10129:7;10138:5;10116:8;:28::i;:::-;9851:300;9789:362;;:::o;3287:278::-;3348:7;3536:12;;3520:13;;:28;3513:35;;3287:278;:::o;11143:164::-;11272:28;11282:4;11288:2;11292:7;11272:9;:28::i;:::-;11143:164;;;:::o;4875:1113::-;4996:7;5032:16;5042:5;5032:9;:16::i;:::-;5023:5;:25;5019:61;;5057:23;;;;;;;;;;;;;;5019:61;5090:22;5115:13;;5090:38;;5138:19;5167:25;5363:9;5358:543;5378:14;5374:1;:18;5358:543;;;5417:31;5451:11;:14;5463:1;5451:14;;;;;;;;;;;5417:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5487:9;:16;;;5483:71;;;5527:8;;;5483:71;5601:1;5575:28;;:9;:14;;;:28;;;5571:109;;5647:9;:14;;;5627:34;;5571:109;5722:5;5701:26;;:17;:26;;;5697:190;;;5770:5;5755:11;:20;5751:83;;;5810:1;5803:8;;;;;;;;;5751:83;5855:13;;;;;;;5697:190;5399:502;5358:543;5394:3;;;;;;;5358:543;;;;5973:8;;;4875:1113;;;;;:::o;328:31:13:-;;;;:::o;2123:201::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2173:12:13::1;2199:10;2191:24;;2236:21;2191:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2172:99;;;2289:7;2281:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2162:162;2123:201::o:0;11373:179:4:-;11506:39;11523:4;11529:2;11533:7;11506:39;;;;;;;;;;;;:16;:39::i;:::-;11373:179;;;:::o;3851:731::-;3950:7;3973:22;3998:13;;3973:38;;4021:19;4211:9;4206:320;4226:14;4222:1;:18;4206:320;;;4265:31;4299:11;:14;4311:1;4299:14;;;;;;;;;;;4265:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4336:9;:16;;;4331:181;;4395:5;4380:11;:20;4376:83;;;4435:1;4428:8;;;;;;;;4376:83;4480:13;;;;;;;4331:181;4247:279;4242:3;;;;;;;4206:320;;;;4552:23;;;;;;;;;;;;;;3851:731;;;;:::o;1748:86:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1824:3:13::1;1814:7;:13;;;;;;;;;;;;:::i;:::-;;1748:86:::0;:::o;8484:122:4:-;8548:7;8574:20;8586:7;8574:11;:20::i;:::-;:25;;;8567:32;;8484:122;;;:::o;6524:203::-;6588:7;6628:1;6611:19;;:5;:19;;;6607:60;;;6639:28;;;;;;;;;;;;;;6607:60;6692:12;:19;6705:5;6692:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6684:36;;6677:43;;6524:203;;;:::o;1693:145:11:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;2035:82:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2099:11:13::1;;;;;;;;;;;2098:12;2084:11;;:26;;;;;;;;;;;;;;;;;;2035:82::o:0;1061:85:11:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2494:32:4:-;;;;:::o;1939:90:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2013:9:13::1;2005:5;:17;;;;1939:90:::0;:::o;1840:93::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1920:6:13::1;1908:9;:18;;;;1840:93:::0;:::o;8830:102:4:-;8886:13;8918:7;8911:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8830:102;:::o;211:33:13:-;;;;:::o;563:723::-;619:12;634:5;;619:20;;649:11;701:1;689:9;;:13;;;;:::i;:::-;681:5;665:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;664:114;;;;;761:16;;752:5;720:17;:29;738:10;720:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;664:114;663:153;;;;809:7;:5;:7::i;:::-;795:21;;:10;:21;;;663:153;649:167;;831:6;827:45;;;860:1;853:8;;827:45;911:4;903:5;:12;;;;:::i;:::-;890:9;:25;;882:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1002:1;991:8;;:12;;;;:::i;:::-;983:5;967:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:36;959:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1039:11;;;;;;;;;;;1031:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1130:1;1119:8;;:12;;;;:::i;:::-;1111:5;:20;1103:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1170:6;1166:75;;;1225:5;1192:17;:29;1210:10;1192:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;1166:75;1251:28;1261:10;1273:5;1251:9;:28::i;:::-;609:677;;563:723;:::o;10515:294:4:-;10637:12;:10;:12::i;:::-;10625:24;;:8;:24;;;10621:54;;;10658:17;;;;;;;;;;;;;;10621:54;10731:8;10686:18;:32;10705:12;:10;:12::i;:::-;10686:32;;;;;;;;;;;;;;;:42;10719:8;10686:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10783:8;10754:48;;10769:12;:10;:12::i;:::-;10754:48;;;10793:8;10754:48;;;;;;:::i;:::-;;;;;;;;10515:294;;:::o;285:36:13:-;;;;:::o;11618:332:4:-;11779:28;11789:4;11795:2;11799:7;11779:9;:28::i;:::-;11822:48;11845:4;11851:2;11855:7;11864:5;11822:22;:48::i;:::-;11817:127;;11893:40;;;;;;;;;;;;;;11817:127;11618:332;;;;:::o;1404:338:13:-;1517:13;1567:16;1575:7;1567;:16::i;:::-;1546:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;1697:7;1706:18;:7;:16;:18::i;:::-;1680:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1666:69;;1404:338;;;:::o;405:30::-;;;;;;;;;;;;;:::o;366:32::-;;;;:::o;10875:206:4:-;11012:4;11039:18;:25;11058:5;11039:25;;;;;;;;;;;;;;;:35;11065:8;11039:35;;;;;;;;;;;;;;;;;;;;;;;;;11032:42;;10875:206;;;;:::o;1987:240:11:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;251:27:13:-;;;;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;12196:142:4:-;12253:4;12286:13;;12276:7;:23;:55;;;;;12304:11;:20;12316:7;12304:20;;;;;;;;;;;:27;;;;;;;;;;;;12303:28;12276:55;12269:62;;12196:142;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;19322:189:4:-;19459:2;19432:15;:24;19448:7;19432:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19496:7;19492:2;19476:28;;19485:5;19476:28;;;;;;;;;;;;19322:189;;;:::o;14878:2092::-;14988:35;15026:20;15038:7;15026:11;:20::i;:::-;14988:58;;15057:22;15099:13;:18;;;15083:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;15133:50;15150:13;:18;;;15170:12;:10;:12::i;:::-;15133:16;:50::i;:::-;15083:100;:152;;;;15223:12;:10;:12::i;:::-;15199:36;;:20;15211:7;15199:11;:20::i;:::-;:36;;;15083:152;15057:179;;15252:17;15247:66;;15278:35;;;;;;;;;;;;;;15247:66;15349:4;15327:26;;:13;:18;;;:26;;;15323:67;;15362:28;;;;;;;;;;;;;;15323:67;15418:1;15404:16;;:2;:16;;;15400:52;;;15429:23;;;;;;;;;;;;;;15400:52;15463:43;15485:4;15491:2;15495:7;15504:1;15463:21;:43::i;:::-;15568:49;15585:1;15589:7;15598:13;:18;;;15568:8;:49::i;:::-;15937:1;15907:12;:18;15920:4;15907:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15980:1;15952:12;:16;15965:2;15952:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16024:2;15996:11;:20;16008:7;15996:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16085:15;16040:11;:20;16052:7;16040:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16349:19;16381:1;16371:7;:11;16349:33;;16441:1;16400:43;;:11;:24;16412:11;16400:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16396:463;;;16622:13;;16608:11;:27;16604:241;;;16691:13;:18;;;16659:11;:24;16671:11;16659:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16773:13;:53;;;16731:11;:24;16743:11;16731:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;16604:241;16396:463;15883:986;16903:7;16899:2;16884:27;;16893:4;16884:27;;;;;;;;;;;;16921:42;16942:4;16948:2;16952:7;16961:1;16921:20;:42::i;:::-;14978:1992;;14878:2092;;;:::o;7343:1084::-;7428:21;;:::i;:::-;7465:12;7480:7;7465:22;;7533:13;;7526:4;:20;7522:841;;;7566:31;7600:11;:17;7612:4;7600:17;;;;;;;;;;;7566:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7640:9;:16;;;7635:714;;7710:1;7684:28;;:9;:14;;;:28;;;7680:99;;7747:9;7740:16;;;;;;7680:99;8076:255;8083:4;8076:255;;;8115:6;;;;;;;;8159:11;:17;8171:4;8159:17;;;;;;;;;;;8147:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8232:1;8206:28;;:9;:14;;;:28;;;8202:107;;8273:9;8266:16;;;;;;8202:107;8076:255;;;7635:714;7548:815;7522:841;8389:31;;;;;;;;;;;;;;7343:1084;;;;:::o;12344:102::-;12412:27;12422:2;12426:8;12412:27;;;;;;;;;;;;:9;:27::i;:::-;12344:102;;:::o;20064:895::-;20214:4;20234:15;:2;:13;;;:15::i;:::-;20230:723;;;20301:2;20285:36;;;20343:12;:10;:12::i;:::-;20377:4;20403:7;20432:5;20285:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20265:636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20655:1;20638:6;:13;:18;20634:253;;;20687:40;;;;;;;;;;;;;;20634:253;20839:6;20833:13;20824:6;20820:2;20816:15;20809:38;20265:636;20527:45;;;20517:55;;;:6;:55;;;;20510:62;;;;;20230:723;20938:4;20931:11;;20064:895;;;;;;;:::o;328:703:12:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;21590:154:4:-;;;;;:::o;22385:153::-;;;;;:::o;12797:157::-;12915:32;12921:2;12925:8;12935:5;12942:4;12915:5;:32::i;:::-;12797:157;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;13201:1435:4:-;13334:20;13357:13;;13334:36;;13398:1;13384:16;;:2;:16;;;13380:48;;;13409:19;;;;;;;;;;;;;;13380:48;13454:1;13442:8;:13;13438:44;;;13464:18;;;;;;;;;;;;;;13438:44;13493:61;13523:1;13527:2;13531:12;13545:8;13493:21;:61::i;:::-;13860:8;13825:12;:16;13838:2;13825:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13923:8;13883:12;:16;13896:2;13883:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13980:2;13947:11;:25;13959:12;13947:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14046:15;13996:11;:25;14008:12;13996:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14077:20;14100:12;14077:35;;14132:9;14127:380;14147:8;14143:1;:12;14127:380;;;14210:12;14206:2;14185:38;;14202:1;14185:38;;;;;;;;;;;;14266:4;:88;;;;;14295:59;14326:1;14330:2;14334:12;14348:5;14295:22;:59::i;:::-;14294:60;14266:88;14241:220;;;14402:40;;;;;;;;;;;;;;14241:220;14478:14;;;;;;;14157:3;;;;;;;14127:380;;;;14537:12;14521:13;:28;;;;13801:759;14569:60;14598:1;14602:2;14606:12;14620:8;14569:20;:60::i;:::-;13324:1312;13201:1435;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:400::-;10295:3;10316:84;10398:1;10393:3;10316:84;:::i;:::-;10309:91;;10409:93;10498:3;10409:93;:::i;:::-;10527:1;10522:3;10518:11;10511:18;;10135:400;;;:::o;10541:366::-;10683:3;10704:67;10768:2;10763:3;10704:67;:::i;:::-;10697:74;;10780:93;10869:3;10780:93;:::i;:::-;10898:2;10893:3;10889:12;10882:19;;10541:366;;;:::o;10913:::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:398::-;12188:3;12209:83;12290:1;12285:3;12209:83;:::i;:::-;12202:90;;12301:93;12390:3;12301:93;:::i;:::-;12419:1;12414:3;12410:11;12403:18;;12029:398;;;:::o;12433:366::-;12575:3;12596:67;12660:2;12655:3;12596:67;:::i;:::-;12589:74;;12672:93;12761:3;12672:93;:::i;:::-;12790:2;12785:3;12781:12;12774:19;;12433:366;;;:::o;12805:::-;12947:3;12968:67;13032:2;13027:3;12968:67;:::i;:::-;12961:74;;13044:93;13133:3;13044:93;:::i;:::-;13162:2;13157:3;13153:12;13146:19;;12805:366;;;:::o;13177:118::-;13264:24;13282:5;13264:24;:::i;:::-;13259:3;13252:37;13177:118;;:::o;13301:695::-;13579:3;13601:92;13689:3;13680:6;13601:92;:::i;:::-;13594:99;;13710:95;13801:3;13792:6;13710:95;:::i;:::-;13703:102;;13822:148;13966:3;13822:148;:::i;:::-;13815:155;;13987:3;13980:10;;13301:695;;;;;:::o;14002:379::-;14186:3;14208:147;14351:3;14208:147;:::i;:::-;14201:154;;14372:3;14365:10;;14002:379;;;:::o;14387:222::-;14480:4;14518:2;14507:9;14503:18;14495:26;;14531:71;14599:1;14588:9;14584:17;14575:6;14531:71;:::i;:::-;14387:222;;;;:::o;14615:640::-;14810:4;14848:3;14837:9;14833:19;14825:27;;14862:71;14930:1;14919:9;14915:17;14906:6;14862:71;:::i;:::-;14943:72;15011:2;15000:9;14996:18;14987:6;14943:72;:::i;:::-;15025;15093:2;15082:9;15078:18;15069:6;15025:72;:::i;:::-;15144:9;15138:4;15134:20;15129:2;15118:9;15114:18;15107:48;15172:76;15243:4;15234:6;15172:76;:::i;:::-;15164:84;;14615:640;;;;;;;:::o;15261:210::-;15348:4;15386:2;15375:9;15371:18;15363:26;;15399:65;15461:1;15450:9;15446:17;15437:6;15399:65;:::i;:::-;15261:210;;;;:::o;15477:313::-;15590:4;15628:2;15617:9;15613:18;15605:26;;15677:9;15671:4;15667:20;15663:1;15652:9;15648:17;15641:47;15705:78;15778:4;15769:6;15705:78;:::i;:::-;15697:86;;15477:313;;;;:::o;15796:419::-;15962:4;16000:2;15989:9;15985:18;15977:26;;16049:9;16043:4;16039:20;16035:1;16024:9;16020:17;16013:47;16077:131;16203:4;16077:131;:::i;:::-;16069:139;;15796:419;;;:::o;16221:::-;16387:4;16425:2;16414:9;16410:18;16402:26;;16474:9;16468:4;16464:20;16460:1;16449:9;16445:17;16438:47;16502:131;16628:4;16502:131;:::i;:::-;16494:139;;16221:419;;;:::o;16646:::-;16812:4;16850:2;16839:9;16835:18;16827:26;;16899:9;16893:4;16889:20;16885:1;16874:9;16870:17;16863:47;16927:131;17053:4;16927:131;:::i;:::-;16919:139;;16646:419;;;:::o;17071:::-;17237:4;17275:2;17264:9;17260:18;17252:26;;17324:9;17318:4;17314:20;17310:1;17299:9;17295:17;17288:47;17352:131;17478:4;17352:131;:::i;:::-;17344:139;;17071:419;;;:::o;17496:::-;17662:4;17700:2;17689:9;17685:18;17677:26;;17749:9;17743:4;17739:20;17735:1;17724:9;17720:17;17713:47;17777:131;17903:4;17777:131;:::i;:::-;17769:139;;17496:419;;;:::o;17921:::-;18087:4;18125:2;18114:9;18110:18;18102:26;;18174:9;18168:4;18164:20;18160:1;18149:9;18145:17;18138:47;18202:131;18328:4;18202:131;:::i;:::-;18194:139;;17921:419;;;:::o;18346:::-;18512:4;18550:2;18539:9;18535:18;18527:26;;18599:9;18593:4;18589:20;18585:1;18574:9;18570:17;18563:47;18627:131;18753:4;18627:131;:::i;:::-;18619:139;;18346:419;;;:::o;18771:::-;18937:4;18975:2;18964:9;18960:18;18952:26;;19024:9;19018:4;19014:20;19010:1;18999:9;18995:17;18988:47;19052:131;19178:4;19052:131;:::i;:::-;19044:139;;18771:419;;;:::o;19196:222::-;19289:4;19327:2;19316:9;19312:18;19304:26;;19340:71;19408:1;19397:9;19393:17;19384:6;19340:71;:::i;:::-;19196:222;;;;:::o;19424:129::-;19458:6;19485:20;;:::i;:::-;19475:30;;19514:33;19542:4;19534:6;19514:33;:::i;:::-;19424:129;;;:::o;19559:75::-;19592:6;19625:2;19619:9;19609:19;;19559:75;:::o;19640:307::-;19701:4;19791:18;19783:6;19780:30;19777:56;;;19813:18;;:::i;:::-;19777:56;19851:29;19873:6;19851:29;:::i;:::-;19843:37;;19935:4;19929;19925:15;19917:23;;19640:307;;;:::o;19953:308::-;20015:4;20105:18;20097:6;20094:30;20091:56;;;20127:18;;:::i;:::-;20091:56;20165:29;20187:6;20165:29;:::i;:::-;20157:37;;20249:4;20243;20239:15;20231:23;;19953:308;;;:::o;20267:141::-;20316:4;20339:3;20331:11;;20362:3;20359:1;20352:14;20396:4;20393:1;20383:18;20375:26;;20267:141;;;:::o;20414:98::-;20465:6;20499:5;20493:12;20483:22;;20414:98;;;:::o;20518:99::-;20570:6;20604:5;20598:12;20588:22;;20518:99;;;:::o;20623:168::-;20706:11;20740:6;20735:3;20728:19;20780:4;20775:3;20771:14;20756:29;;20623:168;;;;:::o;20797:147::-;20898:11;20935:3;20920:18;;20797:147;;;;:::o;20950:169::-;21034:11;21068:6;21063:3;21056:19;21108:4;21103:3;21099:14;21084:29;;20950:169;;;;:::o;21125:148::-;21227:11;21264:3;21249:18;;21125:148;;;;:::o;21279:305::-;21319:3;21338:20;21356:1;21338:20;:::i;:::-;21333:25;;21372:20;21390:1;21372:20;:::i;:::-;21367:25;;21526:1;21458:66;21454:74;21451:1;21448:81;21445:107;;;21532:18;;:::i;:::-;21445:107;21576:1;21573;21569:9;21562:16;;21279:305;;;;:::o;21590:185::-;21630:1;21647:20;21665:1;21647:20;:::i;:::-;21642:25;;21681:20;21699:1;21681:20;:::i;:::-;21676:25;;21720:1;21710:35;;21725:18;;:::i;:::-;21710:35;21767:1;21764;21760:9;21755:14;;21590:185;;;;:::o;21781:348::-;21821:7;21844:20;21862:1;21844:20;:::i;:::-;21839:25;;21878:20;21896:1;21878:20;:::i;:::-;21873:25;;22066:1;21998:66;21994:74;21991:1;21988:81;21983:1;21976:9;21969:17;21965:105;21962:131;;;22073:18;;:::i;:::-;21962:131;22121:1;22118;22114:9;22103:20;;21781:348;;;;:::o;22135:191::-;22175:4;22195:20;22213:1;22195:20;:::i;:::-;22190:25;;22229:20;22247:1;22229:20;:::i;:::-;22224:25;;22268:1;22265;22262:8;22259:34;;;22273:18;;:::i;:::-;22259:34;22318:1;22315;22311:9;22303:17;;22135:191;;;;:::o;22332:96::-;22369:7;22398:24;22416:5;22398:24;:::i;:::-;22387:35;;22332:96;;;:::o;22434:90::-;22468:7;22511:5;22504:13;22497:21;22486:32;;22434:90;;;:::o;22530:149::-;22566:7;22606:66;22599:5;22595:78;22584:89;;22530:149;;;:::o;22685:126::-;22722:7;22762:42;22755:5;22751:54;22740:65;;22685:126;;;:::o;22817:77::-;22854:7;22883:5;22872:16;;22817:77;;;:::o;22900:154::-;22984:6;22979:3;22974;22961:30;23046:1;23037:6;23032:3;23028:16;23021:27;22900:154;;;:::o;23060:307::-;23128:1;23138:113;23152:6;23149:1;23146:13;23138:113;;;23237:1;23232:3;23228:11;23222:18;23218:1;23213:3;23209:11;23202:39;23174:2;23171:1;23167:10;23162:15;;23138:113;;;23269:6;23266:1;23263:13;23260:101;;;23349:1;23340:6;23335:3;23331:16;23324:27;23260:101;23109:258;23060:307;;;:::o;23373:320::-;23417:6;23454:1;23448:4;23444:12;23434:22;;23501:1;23495:4;23491:12;23522:18;23512:81;;23578:4;23570:6;23566:17;23556:27;;23512:81;23640:2;23632:6;23629:14;23609:18;23606:38;23603:84;;;23659:18;;:::i;:::-;23603:84;23424:269;23373:320;;;:::o;23699:281::-;23782:27;23804:4;23782:27;:::i;:::-;23774:6;23770:40;23912:6;23900:10;23897:22;23876:18;23864:10;23861:34;23858:62;23855:88;;;23923:18;;:::i;:::-;23855:88;23963:10;23959:2;23952:22;23742:238;23699:281;;:::o;23986:233::-;24025:3;24048:24;24066:5;24048:24;:::i;:::-;24039:33;;24094:66;24087:5;24084:77;24081:103;;;24164:18;;:::i;:::-;24081:103;24211:1;24204:5;24200:13;24193:20;;23986:233;;;:::o;24225:176::-;24257:1;24274:20;24292:1;24274:20;:::i;:::-;24269:25;;24308:20;24326:1;24308:20;:::i;:::-;24303:25;;24347:1;24337:35;;24352:18;;:::i;:::-;24337:35;24393:1;24390;24386:9;24381:14;;24225:176;;;;:::o;24407:180::-;24455:77;24452:1;24445:88;24552:4;24549:1;24542:15;24576:4;24573:1;24566:15;24593:180;24641:77;24638:1;24631:88;24738:4;24735:1;24728:15;24762:4;24759:1;24752:15;24779:180;24827:77;24824:1;24817:88;24924:4;24921:1;24914:15;24948:4;24945:1;24938:15;24965:180;25013:77;25010:1;25003:88;25110:4;25107:1;25100:15;25134:4;25131:1;25124:15;25151:180;25199:77;25196:1;25189:88;25296:4;25293:1;25286:15;25320:4;25317:1;25310:15;25337:117;25446:1;25443;25436:12;25460:117;25569:1;25566;25559:12;25583:117;25692:1;25689;25682:12;25706:117;25815:1;25812;25805:12;25829:102;25870:6;25921:2;25917:7;25912:2;25905:5;25901:14;25897:28;25887:38;;25829:102;;;:::o;25937:225::-;26077:34;26073:1;26065:6;26061:14;26054:58;26146:8;26141:2;26133:6;26129:15;26122:33;25937:225;:::o;26168:163::-;26308:15;26304:1;26296:6;26292:14;26285:39;26168:163;:::o;26337:155::-;26477:7;26473:1;26465:6;26461:14;26454:31;26337:155;:::o;26498:182::-;26638:34;26634:1;26626:6;26622:14;26615:58;26498:182;:::o;26686:234::-;26826:34;26822:1;26814:6;26810:14;26803:58;26895:17;26890:2;26882:6;26878:15;26871:42;26686:234;:::o;26926:179::-;27066:31;27062:1;27054:6;27050:14;27043:55;26926:179;:::o;27111:225::-;27251:34;27247:1;27239:6;27235:14;27228:58;27320:8;27315:2;27307:6;27303:15;27296:33;27111:225;:::o;27342:114::-;;:::o;27462:166::-;27602:18;27598:1;27590:6;27586:14;27579:42;27462:166;:::o;27634:169::-;27774:21;27770:1;27762:6;27758:14;27751:45;27634:169;:::o;27809:122::-;27882:24;27900:5;27882:24;:::i;:::-;27875:5;27872:35;27862:63;;27921:1;27918;27911:12;27862:63;27809:122;:::o;27937:116::-;28007:21;28022:5;28007:21;:::i;:::-;28000:5;27997:32;27987:60;;28043:1;28040;28033:12;27987:60;27937:116;:::o;28059:120::-;28131:23;28148:5;28131:23;:::i;:::-;28124:5;28121:34;28111:62;;28169:1;28166;28159:12;28111:62;28059:120;:::o;28185:122::-;28258:24;28276:5;28258:24;:::i;:::-;28251:5;28248:35;28238:63;;28297:1;28294;28287:12;28238:63;28185:122;:::o

Swarm Source

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