ETH Price: $2,626.70 (+1.86%)

Token

Long Panda (LPA)
 

Overview

Max Total Supply

500 LPA

Holders

242

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 LPA
0x2E52490cA4bE4e7b887C5FAc1F6749E64e34849d
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:
LONGPANDA

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-04
*/

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

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

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

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

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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



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

/**
 * @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 overriden 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _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);
    }

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 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() {
        _setOwner(_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 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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



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

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

contract LONGPANDA is ERC721, ERC721Enumerable, Ownable {
    string private _baseURIextended;

    constructor() ERC721("Long Panda", "LPA") {

        uint i;
        for (i = 1; i <= 100; i++) {
            _safeMint(msg.sender, i);
        }
        
    }


    

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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


    function reserve(uint256 n) public onlyOwner {
      uint supply = totalSupply();
      uint i;
      for (i = 0; i < n; i++) {
          _safeMint(msg.sender, supply + i + 1);
      }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"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":"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":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f4c6f6e672050616e6461000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c5041000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000c50565b508060019080519060200190620000af92919062000c50565b505050620000d2620000c66200011160201b60201c565b6200011960201b60201c565b6000600190505b606481116200010a57620000f43382620001df60201b60201c565b8080620001019062001171565b915050620000d9565b5062001248565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002018282604051806020016040528060008152506200020560201b60201c565b5050565b6200021783836200027360201b60201c565b6200022c60008484846200045960201b60201c565b6200026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002659062000f4e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dd9062000fb4565b60405180910390fd5b620002f7816200061360201b60201c565b156200033a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003319062000f70565b60405180910390fd5b6200034e600083836200067f60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003a0919062001003565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620004878473ffffffffffffffffffffffffffffffffffffffff166200069c60201b620010911760201c565b1562000606578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004b96200011160201b60201c565b8786866040518563ffffffff1660e01b8152600401620004dd949392919062000efa565b602060405180830381600087803b158015620004f857600080fd5b505af19250505080156200052c57506040513d601f19601f8201168201806040525081019062000529919062000d17565b60015b620005b5573d80600081146200055f576040519150601f19603f3d011682016040523d82523d6000602084013e62000564565b606091505b50600081511415620005ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a49062000f4e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200060b565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000697838383620006af60201b620010a41760201c565b505050565b600080823b905060008111915050919050565b620006c7838383620007f660201b620011b81760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000714576200070e81620007fb60201b60201c565b6200075c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200075b576200075a83826200084460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007a957620007a381620009c160201b60201c565b620007f1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620007f057620007ef828262000b0960201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016200085e8462000b9560201b62000a3b1760201c565b6200086a919062001060565b905060006007600084815260200190815260200160002054905081811462000950576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050620009d7919062001060565b905060006009600084815260200190815260200160002054905060006008838154811062000a2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000a77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000aed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000b218362000b9560201b62000a3b1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c009062000f92565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000c5e906200113b565b90600052602060002090601f01602090048101928262000c82576000855562000cce565b82601f1062000c9d57805160ff191683800117855562000cce565b8280016001018555821562000cce579182015b8281111562000ccd57825182559160200191906001019062000cb0565b5b50905062000cdd919062000ce1565b5090565b5b8082111562000cfc57600081600090555060010162000ce2565b5090565b60008151905062000d11816200122e565b92915050565b60006020828403121562000d2a57600080fd5b600062000d3a8482850162000d00565b91505092915050565b62000d4e816200109b565b82525050565b600062000d618262000fd6565b62000d6d818562000fe1565b935062000d7f81856020860162001105565b62000d8a816200121d565b840191505092915050565b600062000da460328362000ff2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600062000e0c601c8362000ff2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600062000e4e602a8362000ff2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600062000eb660208362000ff2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b62000ef481620010fb565b82525050565b600060808201905062000f11600083018762000d43565b62000f20602083018662000d43565b62000f2f604083018562000ee9565b818103606083015262000f43818462000d54565b905095945050505050565b6000602082019050818103600083015262000f698162000d95565b9050919050565b6000602082019050818103600083015262000f8b8162000dfd565b9050919050565b6000602082019050818103600083015262000fad8162000e3f565b9050919050565b6000602082019050818103600083015262000fcf8162000ea7565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200101082620010fb565b91506200101d83620010fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010555762001054620011bf565b5b828201905092915050565b60006200106d82620010fb565b91506200107a83620010fb565b92508282101562001090576200108f620011bf565b5b828203905092915050565b6000620010a882620010db565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200112557808201518184015260208101905062001108565b8381111562001135576000848401525b50505050565b600060028204905060018216806200115457607f821691505b602082108114156200116b576200116a620011ee565b5b50919050565b60006200117e82620010fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620011b457620011b3620011bf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6200123981620010af565b81146200124557600080fd5b50565b6135c780620012586000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806355f804b3116100b857806395d89b411161007c57806395d89b411461034c578063a22cb4651461036a578063b88d4fde14610386578063c87b56dd146103a2578063e985e9c5146103d2578063f2fde38b1461040257610137565b806355f804b3146102965780636352211e146102b257806370a08231146102e2578063819b25ba146103125780638da5cb5b1461032e57610137565b806323b872dd116100ff57806323b872dd146101f45780632f745c59146102105780633ccfd60b1461024057806342842e0e1461024a5780634f6ccce71461026657610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190612634565b61041e565b6040516101639190612edf565b60405180910390f35b610174610430565b6040516101819190612efa565b60405180910390f35b6101a4600480360381019061019f91906126c7565b6104c2565b6040516101b19190612e78565b60405180910390f35b6101d460048036038101906101cf91906125f8565b610547565b005b6101de61065f565b6040516101eb919061315c565b60405180910390f35b61020e600480360381019061020991906124f2565b61066c565b005b61022a600480360381019061022591906125f8565b6106cc565b604051610237919061315c565b60405180910390f35b610248610771565b005b610264600480360381019061025f91906124f2565b61083c565b005b610280600480360381019061027b91906126c7565b61085c565b60405161028d919061315c565b60405180910390f35b6102b060048036038101906102ab9190612686565b6108f3565b005b6102cc60048036038101906102c791906126c7565b610989565b6040516102d99190612e78565b60405180910390f35b6102fc60048036038101906102f7919061248d565b610a3b565b604051610309919061315c565b60405180910390f35b61032c600480360381019061032791906126c7565b610af3565b005b610336610bbf565b6040516103439190612e78565b60405180910390f35b610354610be9565b6040516103619190612efa565b60405180910390f35b610384600480360381019061037f91906125bc565b610c7b565b005b6103a0600480360381019061039b9190612541565b610dfc565b005b6103bc60048036038101906103b791906126c7565b610e5e565b6040516103c99190612efa565b60405180910390f35b6103ec60048036038101906103e791906124b6565b610f05565b6040516103f99190612edf565b60405180910390f35b61041c6004803603810190610417919061248d565b610f99565b005b6000610429826111bd565b9050919050565b60606000805461043f906133bc565b80601f016020809104026020016040519081016040528092919081815260200182805461046b906133bc565b80156104b85780601f1061048d576101008083540402835291602001916104b8565b820191906000526020600020905b81548152906001019060200180831161049b57829003601f168201915b5050505050905090565b60006104cd82611237565b61050c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105039061307c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061055282610989565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906130fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105e26112a3565b73ffffffffffffffffffffffffffffffffffffffff16148061061157506106108161060b6112a3565b610f05565b5b610650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064790612ffc565b60405180910390fd5b61065a83836112ab565b505050565b6000600880549050905090565b61067d6106776112a3565b82611364565b6106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b39061311c565b60405180910390fd5b6106c7838383611442565b505050565b60006106d783610a3b565b8210610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f90612f1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107796112a3565b73ffffffffffffffffffffffffffffffffffffffff16610797610bbf565b73ffffffffffffffffffffffffffffffffffffffff16146107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e49061309c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610838573d6000803e3d6000fd5b5050565b61085783838360405180602001604052806000815250610dfc565b505050565b600061086661065f565b82106108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e9061313c565b60405180910390fd5b600882815481106108e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6108fb6112a3565b73ffffffffffffffffffffffffffffffffffffffff16610919610bbf565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061309c565b60405180910390fd5b80600b90805190602001906109859291906122b1565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a299061303c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061301c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610afb6112a3565b73ffffffffffffffffffffffffffffffffffffffff16610b19610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b669061309c565b60405180910390fd5b6000610b7961065f565b905060005b82811015610bba57610ba73360018385610b98919061324b565b610ba2919061324b565b61169e565b8080610bb2906133ee565b915050610b7e565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bf8906133bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c24906133bc565b8015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b5050505050905090565b610c836112a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612fbc565b60405180910390fd5b8060056000610cfe6112a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dab6112a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df09190612edf565b60405180910390a35050565b610e0d610e076112a3565b83611364565b610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061311c565b60405180910390fd5b610e58848484846116bc565b50505050565b6060610e6982611237565b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f906130dc565b60405180910390fd5b6000610eb2611718565b90506000815111610ed25760405180602001604052806000815250610efd565b80610edc846117aa565b604051602001610eed929190612e54565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa16112a3565b73ffffffffffffffffffffffffffffffffffffffff16610fbf610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061309c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612f5c565b60405180910390fd5b61108e81611957565b50565b600080823b905060008111915050919050565b6110af8383836111b8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110f2576110ed81611a1d565b611131565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111305761112f8382611a66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111745761116f81611bd3565b6111b3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146111b2576111b18282611d16565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611230575061122f82611d95565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661131e83610989565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061136f82611237565b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612fdc565b60405180910390fd5b60006113b983610989565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061142857508373ffffffffffffffffffffffffffffffffffffffff16611410846104c2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061143957506114388185610f05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661146282610989565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906130bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90612f9c565b60405180910390fd5b611533838383611e77565b61153e6000826112ab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158e91906132d2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e5919061324b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6116b8828260405180602001604052806000815250611e87565b5050565b6116c7848484611442565b6116d384848484611ee2565b611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990612f3c565b60405180910390fd5b50505050565b6060600b8054611727906133bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611753906133bc565b80156117a05780601f10611775576101008083540402835291602001916117a0565b820191906000526020600020905b81548152906001019060200180831161178357829003601f168201915b5050505050905090565b606060008214156117f2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611952565b600082905060005b6000821461182457808061180d906133ee565b915050600a8261181d91906132a1565b91506117fa565b60008167ffffffffffffffff811115611866577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118985781602001600182028036833780820191505090505b5090505b6000851461194b576001826118b191906132d2565b9150600a856118c09190613437565b60306118cc919061324b565b60f81b818381518110611908577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561194491906132a1565b945061189c565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611a7384610a3b565b611a7d91906132d2565b9050600060076000848152602001908152602001600020549050818114611b62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611be791906132d2565b9050600060096000848152602001908152602001600020549050600060088381548110611c3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110611c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480611cfa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2183610a3b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e705750611e6f82612079565b5b9050919050565b611e828383836110a4565b505050565b611e9183836120e3565b611e9e6000848484611ee2565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490612f3c565b60405180910390fd5b505050565b6000611f038473ffffffffffffffffffffffffffffffffffffffff16611091565b1561206c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f2c6112a3565b8786866040518563ffffffff1660e01b8152600401611f4e9493929190612e93565b602060405180830381600087803b158015611f6857600080fd5b505af1925050508015611f9957506040513d601f19601f82011682018060405250810190611f96919061265d565b60015b61201c573d8060008114611fc9576040519150601f19603f3d011682016040523d82523d6000602084013e611fce565b606091505b50600081511415612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90612f3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612071565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a9061305c565b60405180910390fd5b61215c81611237565b1561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390612f7c565b60405180910390fd5b6121a860008383611e77565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f8919061324b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546122bd906133bc565b90600052602060002090601f0160209004810192826122df5760008555612326565b82601f106122f857805160ff1916838001178555612326565b82800160010185558215612326579182015b8281111561232557825182559160200191906001019061230a565b5b5090506123339190612337565b5090565b5b80821115612350576000816000905550600101612338565b5090565b6000612367612362846131a8565b613177565b90508281526020810184848401111561237f57600080fd5b61238a84828561337a565b509392505050565b60006123a56123a0846131d8565b613177565b9050828152602081018484840111156123bd57600080fd5b6123c884828561337a565b509392505050565b6000813590506123df81613535565b92915050565b6000813590506123f48161354c565b92915050565b60008135905061240981613563565b92915050565b60008151905061241e81613563565b92915050565b600082601f83011261243557600080fd5b8135612445848260208601612354565b91505092915050565b600082601f83011261245f57600080fd5b813561246f848260208601612392565b91505092915050565b6000813590506124878161357a565b92915050565b60006020828403121561249f57600080fd5b60006124ad848285016123d0565b91505092915050565b600080604083850312156124c957600080fd5b60006124d7858286016123d0565b92505060206124e8858286016123d0565b9150509250929050565b60008060006060848603121561250757600080fd5b6000612515868287016123d0565b9350506020612526868287016123d0565b925050604061253786828701612478565b9150509250925092565b6000806000806080858703121561255757600080fd5b6000612565878288016123d0565b9450506020612576878288016123d0565b935050604061258787828801612478565b925050606085013567ffffffffffffffff8111156125a457600080fd5b6125b087828801612424565b91505092959194509250565b600080604083850312156125cf57600080fd5b60006125dd858286016123d0565b92505060206125ee858286016123e5565b9150509250929050565b6000806040838503121561260b57600080fd5b6000612619858286016123d0565b925050602061262a85828601612478565b9150509250929050565b60006020828403121561264657600080fd5b6000612654848285016123fa565b91505092915050565b60006020828403121561266f57600080fd5b600061267d8482850161240f565b91505092915050565b60006020828403121561269857600080fd5b600082013567ffffffffffffffff8111156126b257600080fd5b6126be8482850161244e565b91505092915050565b6000602082840312156126d957600080fd5b60006126e784828501612478565b91505092915050565b6126f981613306565b82525050565b61270881613318565b82525050565b600061271982613208565b612723818561321e565b9350612733818560208601613389565b61273c81613524565b840191505092915050565b600061275282613213565b61275c818561322f565b935061276c818560208601613389565b61277581613524565b840191505092915050565b600061278b82613213565b6127958185613240565b93506127a5818560208601613389565b80840191505092915050565b60006127be602b8361322f565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061282460328361322f565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061288a60268361322f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128f0601c8361322f565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061293060248361322f565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061299660198361322f565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006129d6602c8361322f565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612a3c60388361322f565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612aa2602a8361322f565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b0860298361322f565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b6e60208361322f565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612bae602c8361322f565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612c1460208361322f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612c5460298361322f565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612cba602f8361322f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612d2060218361322f565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d8660318361322f565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000612dec602c8361322f565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b612e4e81613370565b82525050565b6000612e608285612780565b9150612e6c8284612780565b91508190509392505050565b6000602082019050612e8d60008301846126f0565b92915050565b6000608082019050612ea860008301876126f0565b612eb560208301866126f0565b612ec26040830185612e45565b8181036060830152612ed4818461270e565b905095945050505050565b6000602082019050612ef460008301846126ff565b92915050565b60006020820190508181036000830152612f148184612747565b905092915050565b60006020820190508181036000830152612f35816127b1565b9050919050565b60006020820190508181036000830152612f5581612817565b9050919050565b60006020820190508181036000830152612f758161287d565b9050919050565b60006020820190508181036000830152612f95816128e3565b9050919050565b60006020820190508181036000830152612fb581612923565b9050919050565b60006020820190508181036000830152612fd581612989565b9050919050565b60006020820190508181036000830152612ff5816129c9565b9050919050565b6000602082019050818103600083015261301581612a2f565b9050919050565b6000602082019050818103600083015261303581612a95565b9050919050565b6000602082019050818103600083015261305581612afb565b9050919050565b6000602082019050818103600083015261307581612b61565b9050919050565b6000602082019050818103600083015261309581612ba1565b9050919050565b600060208201905081810360008301526130b581612c07565b9050919050565b600060208201905081810360008301526130d581612c47565b9050919050565b600060208201905081810360008301526130f581612cad565b9050919050565b6000602082019050818103600083015261311581612d13565b9050919050565b6000602082019050818103600083015261313581612d79565b9050919050565b6000602082019050818103600083015261315581612ddf565b9050919050565b60006020820190506131716000830184612e45565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561319e5761319d6134f5565b5b8060405250919050565b600067ffffffffffffffff8211156131c3576131c26134f5565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156131f3576131f26134f5565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061325682613370565b915061326183613370565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329657613295613468565b5b828201905092915050565b60006132ac82613370565b91506132b783613370565b9250826132c7576132c6613497565b5b828204905092915050565b60006132dd82613370565b91506132e883613370565b9250828210156132fb576132fa613468565b5b828203905092915050565b600061331182613350565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133a757808201518184015260208101905061338c565b838111156133b6576000848401525b50505050565b600060028204905060018216806133d457607f821691505b602082108114156133e8576133e76134c6565b5b50919050565b60006133f982613370565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561342c5761342b613468565b5b600182019050919050565b600061344282613370565b915061344d83613370565b92508261345d5761345c613497565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61353e81613306565b811461354957600080fd5b50565b61355581613318565b811461356057600080fd5b50565b61356c81613324565b811461357757600080fd5b50565b61358381613370565b811461358e57600080fd5b5056fea26469706673582212202d953a6c927a2a7db4a016000e337921989372d93625e4a17f95426b20461fa864736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806355f804b3116100b857806395d89b411161007c57806395d89b411461034c578063a22cb4651461036a578063b88d4fde14610386578063c87b56dd146103a2578063e985e9c5146103d2578063f2fde38b1461040257610137565b806355f804b3146102965780636352211e146102b257806370a08231146102e2578063819b25ba146103125780638da5cb5b1461032e57610137565b806323b872dd116100ff57806323b872dd146101f45780632f745c59146102105780633ccfd60b1461024057806342842e0e1461024a5780634f6ccce71461026657610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190612634565b61041e565b6040516101639190612edf565b60405180910390f35b610174610430565b6040516101819190612efa565b60405180910390f35b6101a4600480360381019061019f91906126c7565b6104c2565b6040516101b19190612e78565b60405180910390f35b6101d460048036038101906101cf91906125f8565b610547565b005b6101de61065f565b6040516101eb919061315c565b60405180910390f35b61020e600480360381019061020991906124f2565b61066c565b005b61022a600480360381019061022591906125f8565b6106cc565b604051610237919061315c565b60405180910390f35b610248610771565b005b610264600480360381019061025f91906124f2565b61083c565b005b610280600480360381019061027b91906126c7565b61085c565b60405161028d919061315c565b60405180910390f35b6102b060048036038101906102ab9190612686565b6108f3565b005b6102cc60048036038101906102c791906126c7565b610989565b6040516102d99190612e78565b60405180910390f35b6102fc60048036038101906102f7919061248d565b610a3b565b604051610309919061315c565b60405180910390f35b61032c600480360381019061032791906126c7565b610af3565b005b610336610bbf565b6040516103439190612e78565b60405180910390f35b610354610be9565b6040516103619190612efa565b60405180910390f35b610384600480360381019061037f91906125bc565b610c7b565b005b6103a0600480360381019061039b9190612541565b610dfc565b005b6103bc60048036038101906103b791906126c7565b610e5e565b6040516103c99190612efa565b60405180910390f35b6103ec60048036038101906103e791906124b6565b610f05565b6040516103f99190612edf565b60405180910390f35b61041c6004803603810190610417919061248d565b610f99565b005b6000610429826111bd565b9050919050565b60606000805461043f906133bc565b80601f016020809104026020016040519081016040528092919081815260200182805461046b906133bc565b80156104b85780601f1061048d576101008083540402835291602001916104b8565b820191906000526020600020905b81548152906001019060200180831161049b57829003601f168201915b5050505050905090565b60006104cd82611237565b61050c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105039061307c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061055282610989565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906130fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105e26112a3565b73ffffffffffffffffffffffffffffffffffffffff16148061061157506106108161060b6112a3565b610f05565b5b610650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064790612ffc565b60405180910390fd5b61065a83836112ab565b505050565b6000600880549050905090565b61067d6106776112a3565b82611364565b6106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b39061311c565b60405180910390fd5b6106c7838383611442565b505050565b60006106d783610a3b565b8210610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f90612f1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107796112a3565b73ffffffffffffffffffffffffffffffffffffffff16610797610bbf565b73ffffffffffffffffffffffffffffffffffffffff16146107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e49061309c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610838573d6000803e3d6000fd5b5050565b61085783838360405180602001604052806000815250610dfc565b505050565b600061086661065f565b82106108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e9061313c565b60405180910390fd5b600882815481106108e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6108fb6112a3565b73ffffffffffffffffffffffffffffffffffffffff16610919610bbf565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061309c565b60405180910390fd5b80600b90805190602001906109859291906122b1565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a299061303c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061301c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610afb6112a3565b73ffffffffffffffffffffffffffffffffffffffff16610b19610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b669061309c565b60405180910390fd5b6000610b7961065f565b905060005b82811015610bba57610ba73360018385610b98919061324b565b610ba2919061324b565b61169e565b8080610bb2906133ee565b915050610b7e565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bf8906133bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c24906133bc565b8015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b5050505050905090565b610c836112a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612fbc565b60405180910390fd5b8060056000610cfe6112a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dab6112a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df09190612edf565b60405180910390a35050565b610e0d610e076112a3565b83611364565b610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061311c565b60405180910390fd5b610e58848484846116bc565b50505050565b6060610e6982611237565b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f906130dc565b60405180910390fd5b6000610eb2611718565b90506000815111610ed25760405180602001604052806000815250610efd565b80610edc846117aa565b604051602001610eed929190612e54565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa16112a3565b73ffffffffffffffffffffffffffffffffffffffff16610fbf610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061309c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612f5c565b60405180910390fd5b61108e81611957565b50565b600080823b905060008111915050919050565b6110af8383836111b8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110f2576110ed81611a1d565b611131565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111305761112f8382611a66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111745761116f81611bd3565b6111b3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146111b2576111b18282611d16565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611230575061122f82611d95565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661131e83610989565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061136f82611237565b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612fdc565b60405180910390fd5b60006113b983610989565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061142857508373ffffffffffffffffffffffffffffffffffffffff16611410846104c2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061143957506114388185610f05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661146282610989565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906130bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90612f9c565b60405180910390fd5b611533838383611e77565b61153e6000826112ab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158e91906132d2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e5919061324b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6116b8828260405180602001604052806000815250611e87565b5050565b6116c7848484611442565b6116d384848484611ee2565b611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990612f3c565b60405180910390fd5b50505050565b6060600b8054611727906133bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611753906133bc565b80156117a05780601f10611775576101008083540402835291602001916117a0565b820191906000526020600020905b81548152906001019060200180831161178357829003601f168201915b5050505050905090565b606060008214156117f2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611952565b600082905060005b6000821461182457808061180d906133ee565b915050600a8261181d91906132a1565b91506117fa565b60008167ffffffffffffffff811115611866577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118985781602001600182028036833780820191505090505b5090505b6000851461194b576001826118b191906132d2565b9150600a856118c09190613437565b60306118cc919061324b565b60f81b818381518110611908577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561194491906132a1565b945061189c565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611a7384610a3b565b611a7d91906132d2565b9050600060076000848152602001908152602001600020549050818114611b62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611be791906132d2565b9050600060096000848152602001908152602001600020549050600060088381548110611c3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110611c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480611cfa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2183610a3b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e705750611e6f82612079565b5b9050919050565b611e828383836110a4565b505050565b611e9183836120e3565b611e9e6000848484611ee2565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490612f3c565b60405180910390fd5b505050565b6000611f038473ffffffffffffffffffffffffffffffffffffffff16611091565b1561206c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f2c6112a3565b8786866040518563ffffffff1660e01b8152600401611f4e9493929190612e93565b602060405180830381600087803b158015611f6857600080fd5b505af1925050508015611f9957506040513d601f19601f82011682018060405250810190611f96919061265d565b60015b61201c573d8060008114611fc9576040519150601f19603f3d011682016040523d82523d6000602084013e611fce565b606091505b50600081511415612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90612f3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612071565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a9061305c565b60405180910390fd5b61215c81611237565b1561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390612f7c565b60405180910390fd5b6121a860008383611e77565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f8919061324b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546122bd906133bc565b90600052602060002090601f0160209004810192826122df5760008555612326565b82601f106122f857805160ff1916838001178555612326565b82800160010185558215612326579182015b8281111561232557825182559160200191906001019061230a565b5b5090506123339190612337565b5090565b5b80821115612350576000816000905550600101612338565b5090565b6000612367612362846131a8565b613177565b90508281526020810184848401111561237f57600080fd5b61238a84828561337a565b509392505050565b60006123a56123a0846131d8565b613177565b9050828152602081018484840111156123bd57600080fd5b6123c884828561337a565b509392505050565b6000813590506123df81613535565b92915050565b6000813590506123f48161354c565b92915050565b60008135905061240981613563565b92915050565b60008151905061241e81613563565b92915050565b600082601f83011261243557600080fd5b8135612445848260208601612354565b91505092915050565b600082601f83011261245f57600080fd5b813561246f848260208601612392565b91505092915050565b6000813590506124878161357a565b92915050565b60006020828403121561249f57600080fd5b60006124ad848285016123d0565b91505092915050565b600080604083850312156124c957600080fd5b60006124d7858286016123d0565b92505060206124e8858286016123d0565b9150509250929050565b60008060006060848603121561250757600080fd5b6000612515868287016123d0565b9350506020612526868287016123d0565b925050604061253786828701612478565b9150509250925092565b6000806000806080858703121561255757600080fd5b6000612565878288016123d0565b9450506020612576878288016123d0565b935050604061258787828801612478565b925050606085013567ffffffffffffffff8111156125a457600080fd5b6125b087828801612424565b91505092959194509250565b600080604083850312156125cf57600080fd5b60006125dd858286016123d0565b92505060206125ee858286016123e5565b9150509250929050565b6000806040838503121561260b57600080fd5b6000612619858286016123d0565b925050602061262a85828601612478565b9150509250929050565b60006020828403121561264657600080fd5b6000612654848285016123fa565b91505092915050565b60006020828403121561266f57600080fd5b600061267d8482850161240f565b91505092915050565b60006020828403121561269857600080fd5b600082013567ffffffffffffffff8111156126b257600080fd5b6126be8482850161244e565b91505092915050565b6000602082840312156126d957600080fd5b60006126e784828501612478565b91505092915050565b6126f981613306565b82525050565b61270881613318565b82525050565b600061271982613208565b612723818561321e565b9350612733818560208601613389565b61273c81613524565b840191505092915050565b600061275282613213565b61275c818561322f565b935061276c818560208601613389565b61277581613524565b840191505092915050565b600061278b82613213565b6127958185613240565b93506127a5818560208601613389565b80840191505092915050565b60006127be602b8361322f565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061282460328361322f565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061288a60268361322f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128f0601c8361322f565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061293060248361322f565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061299660198361322f565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006129d6602c8361322f565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612a3c60388361322f565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612aa2602a8361322f565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b0860298361322f565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b6e60208361322f565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612bae602c8361322f565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612c1460208361322f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612c5460298361322f565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612cba602f8361322f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612d2060218361322f565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d8660318361322f565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000612dec602c8361322f565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b612e4e81613370565b82525050565b6000612e608285612780565b9150612e6c8284612780565b91508190509392505050565b6000602082019050612e8d60008301846126f0565b92915050565b6000608082019050612ea860008301876126f0565b612eb560208301866126f0565b612ec26040830185612e45565b8181036060830152612ed4818461270e565b905095945050505050565b6000602082019050612ef460008301846126ff565b92915050565b60006020820190508181036000830152612f148184612747565b905092915050565b60006020820190508181036000830152612f35816127b1565b9050919050565b60006020820190508181036000830152612f5581612817565b9050919050565b60006020820190508181036000830152612f758161287d565b9050919050565b60006020820190508181036000830152612f95816128e3565b9050919050565b60006020820190508181036000830152612fb581612923565b9050919050565b60006020820190508181036000830152612fd581612989565b9050919050565b60006020820190508181036000830152612ff5816129c9565b9050919050565b6000602082019050818103600083015261301581612a2f565b9050919050565b6000602082019050818103600083015261303581612a95565b9050919050565b6000602082019050818103600083015261305581612afb565b9050919050565b6000602082019050818103600083015261307581612b61565b9050919050565b6000602082019050818103600083015261309581612ba1565b9050919050565b600060208201905081810360008301526130b581612c07565b9050919050565b600060208201905081810360008301526130d581612c47565b9050919050565b600060208201905081810360008301526130f581612cad565b9050919050565b6000602082019050818103600083015261311581612d13565b9050919050565b6000602082019050818103600083015261313581612d79565b9050919050565b6000602082019050818103600083015261315581612ddf565b9050919050565b60006020820190506131716000830184612e45565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561319e5761319d6134f5565b5b8060405250919050565b600067ffffffffffffffff8211156131c3576131c26134f5565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156131f3576131f26134f5565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061325682613370565b915061326183613370565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329657613295613468565b5b828201905092915050565b60006132ac82613370565b91506132b783613370565b9250826132c7576132c6613497565b5b828204905092915050565b60006132dd82613370565b91506132e883613370565b9250828210156132fb576132fa613468565b5b828203905092915050565b600061331182613350565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133a757808201518184015260208101905061338c565b838111156133b6576000848401525b50505050565b600060028204905060018216806133d457607f821691505b602082108114156133e8576133e76134c6565b5b50919050565b60006133f982613370565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561342c5761342b613468565b5b600182019050919050565b600061344282613370565b915061344d83613370565b92508261345d5761345c613497565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61353e81613306565b811461354957600080fd5b50565b61355581613318565b811461356057600080fd5b50565b61356c81613324565b811461357757600080fd5b50565b61358381613370565b811461358e57600080fd5b5056fea26469706673582212202d953a6c927a2a7db4a016000e337921989372d93625e4a17f95426b20461fa864736f6c63430008000033

Deployed Bytecode Sourcemap

41345:1257:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41822:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20572:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22131:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21654:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35837:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23021:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35505:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42459:140;;;:::i;:::-;;23431:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36027:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42009:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20266:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19996:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42255:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32668:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20741:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22424:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23687:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20916:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22790:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33123:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41822:179;41933:4;41957:36;41981:11;41957:23;:36::i;:::-;41950:43;;41822:179;;;:::o;20572:100::-;20626:13;20659:5;20652:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20572:100;:::o;22131:221::-;22207:7;22235:16;22243:7;22235;:16::i;:::-;22227:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22320:15;:24;22336:7;22320:24;;;;;;;;;;;;;;;;;;;;;22313:31;;22131:221;;;:::o;21654:411::-;21735:13;21751:23;21766:7;21751:14;:23::i;:::-;21735:39;;21799:5;21793:11;;:2;:11;;;;21785:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21893:5;21877:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21902:37;21919:5;21926:12;:10;:12::i;:::-;21902:16;:37::i;:::-;21877:62;21855:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22036:21;22045:2;22049:7;22036:8;:21::i;:::-;21654:411;;;:::o;35837:113::-;35898:7;35925:10;:17;;;;35918:24;;35837:113;:::o;23021:339::-;23216:41;23235:12;:10;:12::i;:::-;23249:7;23216:18;:41::i;:::-;23208:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23324:28;23334:4;23340:2;23344:7;23324:9;:28::i;:::-;23021:339;;;:::o;35505:256::-;35602:7;35638:23;35655:5;35638:16;:23::i;:::-;35630:5;:31;35622:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35727:12;:19;35740:5;35727:19;;;;;;;;;;;;;;;:26;35747:5;35727:26;;;;;;;;;;;;35720:33;;35505:256;;;;:::o;42459:140::-;32899:12;:10;:12::i;:::-;32888:23;;:7;:5;:7::i;:::-;:23;;;32880:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42507:12:::1;42522:21;42507:36;;42562:10;42554:28;;:37;42583:7;42554:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;32959:1;42459:140::o:0;23431:185::-;23569:39;23586:4;23592:2;23596:7;23569:39;;;;;;;;;;;;:16;:39::i;:::-;23431:185;;;:::o;36027:233::-;36102:7;36138:30;:28;:30::i;:::-;36130:5;:38;36122:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36235:10;36246:5;36235:17;;;;;;;;;;;;;;;;;;;;;;;;36228:24;;36027:233;;;:::o;42009:111::-;32899:12;:10;:12::i;:::-;32888:23;;:7;:5;:7::i;:::-;:23;;;32880:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42104:8:::1;42085:16;:27;;;;;;;;;;;;:::i;:::-;;42009:111:::0;:::o;20266:239::-;20338:7;20358:13;20374:7;:16;20382:7;20374:16;;;;;;;;;;;;;;;;;;;;;20358:32;;20426:1;20409:19;;:5;:19;;;;20401:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20492:5;20485:12;;;20266:239;;;:::o;19996:208::-;20068:7;20113:1;20096:19;;:5;:19;;;;20088:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20180:9;:16;20190:5;20180:16;;;;;;;;;;;;;;;;20173:23;;19996:208;;;:::o;42255:196::-;32899:12;:10;:12::i;:::-;32888:23;;:7;:5;:7::i;:::-;:23;;;32880:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42309:11:::1;42323:13;:11;:13::i;:::-;42309:27;;42345:6;42360:84;42376:1;42372;:5;42360:84;;;42397:37;42407:10;42432:1;42428;42419:6;:10;;;;:::i;:::-;:14;;;;:::i;:::-;42397:9;:37::i;:::-;42379:3;;;;;:::i;:::-;;;;42360:84;;;32959:1;;42255:196:::0;:::o;32668:87::-;32714:7;32741:6;;;;;;;;;;;32734:13;;32668:87;:::o;20741:104::-;20797:13;20830:7;20823:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20741:104;:::o;22424:295::-;22539:12;:10;:12::i;:::-;22527:24;;:8;:24;;;;22519:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22639:8;22594:18;:32;22613:12;:10;:12::i;:::-;22594:32;;;;;;;;;;;;;;;:42;22627:8;22594:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22692:8;22663:48;;22678:12;:10;:12::i;:::-;22663:48;;;22702:8;22663:48;;;;;;:::i;:::-;;;;;;;;22424:295;;:::o;23687:328::-;23862:41;23881:12;:10;:12::i;:::-;23895:7;23862:18;:41::i;:::-;23854:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23968:39;23982:4;23988:2;23992:7;24001:5;23968:13;:39::i;:::-;23687:328;;;;:::o;20916:334::-;20989:13;21023:16;21031:7;21023;:16::i;:::-;21015:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21104:21;21128:10;:8;:10::i;:::-;21104:34;;21180:1;21162:7;21156:21;:25;:86;;;;;;;;;;;;;;;;;21208:7;21217:18;:7;:16;:18::i;:::-;21191:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21156:86;21149:93;;;20916:334;;;:::o;22790:164::-;22887:4;22911:18;:25;22930:5;22911:25;;;;;;;;;;;;;;;:35;22937:8;22911:35;;;;;;;;;;;;;;;;;;;;;;;;;22904:42;;22790:164;;;;:::o;33123:192::-;32899:12;:10;:12::i;:::-;32888:23;;:7;:5;:7::i;:::-;:23;;;32880:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33232:1:::1;33212:22;;:8;:22;;;;33204:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33288:19;33298:8;33288:9;:19::i;:::-;33123:192:::0;:::o;7682:387::-;7742:4;7950:12;8017:7;8005:20;7997:28;;8060:1;8053:4;:8;8046:15;;;7682:387;;;:::o;36873:589::-;37017:45;37044:4;37050:2;37054:7;37017:26;:45::i;:::-;37095:1;37079:18;;:4;:18;;;37075:187;;;37114:40;37146:7;37114:31;:40::i;:::-;37075:187;;;37184:2;37176:10;;:4;:10;;;37172:90;;37203:47;37236:4;37242:7;37203:32;:47::i;:::-;37172:90;37075:187;37290:1;37276:16;;:2;:16;;;37272:183;;;37309:45;37346:7;37309:36;:45::i;:::-;37272:183;;;37382:4;37376:10;;:2;:10;;;37372:83;;37403:40;37431:2;37435:7;37403:27;:40::i;:::-;37372:83;37272:183;36873:589;;;:::o;31621:126::-;;;;:::o;35197:224::-;35299:4;35338:35;35323:50;;;:11;:50;;;;:90;;;;35377:36;35401:11;35377:23;:36::i;:::-;35323:90;35316:97;;35197:224;;;:::o;25525:127::-;25590:4;25642:1;25614:30;;:7;:16;25622:7;25614:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25607:37;;25525:127;;;:::o;15335:98::-;15388:7;15415:10;15408:17;;15335:98;:::o;29507:174::-;29609:2;29582:15;:24;29598:7;29582:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29665:7;29661:2;29627:46;;29636:23;29651:7;29636:14;:23::i;:::-;29627:46;;;;;;;;;;;;29507:174;;:::o;25819:348::-;25912:4;25937:16;25945:7;25937;:16::i;:::-;25929:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26013:13;26029:23;26044:7;26029:14;:23::i;:::-;26013:39;;26082:5;26071:16;;:7;:16;;;:51;;;;26115:7;26091:31;;:20;26103:7;26091:11;:20::i;:::-;:31;;;26071:51;:87;;;;26126:32;26143:5;26150:7;26126:16;:32::i;:::-;26071:87;26063:96;;;25819:348;;;;:::o;28811:578::-;28970:4;28943:31;;:23;28958:7;28943:14;:23::i;:::-;:31;;;28935:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29053:1;29039:16;;:2;:16;;;;29031:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29109:39;29130:4;29136:2;29140:7;29109:20;:39::i;:::-;29213:29;29230:1;29234:7;29213:8;:29::i;:::-;29274:1;29255:9;:15;29265:4;29255:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29303:1;29286:9;:13;29296:2;29286:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29334:2;29315:7;:16;29323:7;29315:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29373:7;29369:2;29354:27;;29363:4;29354:27;;;;;;;;;;;;28811:578;;;:::o;26509:110::-;26585:26;26595:2;26599:7;26585:26;;;;;;;;;;;;:9;:26::i;:::-;26509:110;;:::o;24897:315::-;25054:28;25064:4;25070:2;25074:7;25054:9;:28::i;:::-;25101:48;25124:4;25130:2;25134:7;25143:5;25101:22;:48::i;:::-;25093:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24897:315;;;;:::o;42128:117::-;42188:13;42221:16;42214:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42128:117;:::o;15775:723::-;15831:13;16061:1;16052:5;:10;16048:53;;;16079:10;;;;;;;;;;;;;;;;;;;;;16048:53;16111:12;16126:5;16111:20;;16142:14;16167:78;16182:1;16174:4;:9;16167:78;;16200:8;;;;;:::i;:::-;;;;16231:2;16223:10;;;;;:::i;:::-;;;16167:78;;;16255:19;16287:6;16277:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16255:39;;16305:154;16321:1;16312:5;:10;16305:154;;16349:1;16339:11;;;;;:::i;:::-;;;16416:2;16408:5;:10;;;;:::i;:::-;16395:2;:24;;;;:::i;:::-;16382:39;;16365:6;16372;16365:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;16445:2;16436:11;;;;;:::i;:::-;;;16305:154;;;16483:6;16469:21;;;;;15775:723;;;;:::o;33323:173::-;33379:16;33398:6;;;;;;;;;;;33379:25;;33424:8;33415:6;;:17;;;;;;;;;;;;;;;;;;33479:8;33448:40;;33469:8;33448:40;;;;;;;;;;;;33323:173;;:::o;38185:164::-;38289:10;:17;;;;38262:15;:24;38278:7;38262:24;;;;;;;;;;;:44;;;;38317:10;38333:7;38317:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38185:164;:::o;38976:988::-;39242:22;39292:1;39267:22;39284:4;39267:16;:22::i;:::-;:26;;;;:::i;:::-;39242:51;;39304:18;39325:17;:26;39343:7;39325:26;;;;;;;;;;;;39304:47;;39472:14;39458:10;:28;39454:328;;39503:19;39525:12;:18;39538:4;39525:18;;;;;;;;;;;;;;;:34;39544:14;39525:34;;;;;;;;;;;;39503:56;;39609:11;39576:12;:18;39589:4;39576:18;;;;;;;;;;;;;;;:30;39595:10;39576:30;;;;;;;;;;;:44;;;;39726:10;39693:17;:30;39711:11;39693:30;;;;;;;;;;;:43;;;;39454:328;;39878:17;:26;39896:7;39878:26;;;;;;;;;;;39871:33;;;39922:12;:18;39935:4;39922:18;;;;;;;;;;;;;;;:34;39941:14;39922:34;;;;;;;;;;;39915:41;;;38976:988;;;;:::o;40259:1079::-;40512:22;40557:1;40537:10;:17;;;;:21;;;;:::i;:::-;40512:46;;40569:18;40590:15;:24;40606:7;40590:24;;;;;;;;;;;;40569:45;;40941:19;40963:10;40974:14;40963:26;;;;;;;;;;;;;;;;;;;;;;;;40941:48;;41027:11;41002:10;41013;41002:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41138:10;41107:15;:28;41123:11;41107:28;;;;;;;;;;;:41;;;;41279:15;:24;41295:7;41279:24;;;;;;;;;;;41272:31;;;41314:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40259:1079;;;;:::o;37763:221::-;37848:14;37865:20;37882:2;37865:16;:20::i;:::-;37848:37;;37923:7;37896:12;:16;37909:2;37896:16;;;;;;;;;;;;;;;:24;37913:6;37896:24;;;;;;;;;;;:34;;;;37970:6;37941:17;:26;37959:7;37941:26;;;;;;;;;;;:35;;;;37763:221;;;:::o;19627:305::-;19729:4;19781:25;19766:40;;;:11;:40;;;;:105;;;;19838:33;19823:48;;;:11;:48;;;;19766:105;:158;;;;19888:36;19912:11;19888:23;:36::i;:::-;19766:158;19746:178;;19627:305;;;:::o;41633:181::-;41761:45;41788:4;41794:2;41798:7;41761:26;:45::i;:::-;41633:181;;;:::o;26846:321::-;26976:18;26982:2;26986:7;26976:5;:18::i;:::-;27027:54;27058:1;27062:2;27066:7;27075:5;27027:22;:54::i;:::-;27005:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26846:321;;;:::o;30246:803::-;30401:4;30422:15;:2;:13;;;:15::i;:::-;30418:624;;;30474:2;30458:36;;;30495:12;:10;:12::i;:::-;30509:4;30515:7;30524:5;30458:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30454:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30721:1;30704:6;:13;:18;30700:272;;;30747:60;;;;;;;;;;:::i;:::-;;;;;;;;30700:272;30922:6;30916:13;30907:6;30903:2;30899:15;30892:38;30454:533;30591:45;;;30581:55;;;:6;:55;;;;30574:62;;;;;30418:624;31026:4;31019:11;;30246:803;;;;;;;:::o;18236:157::-;18321:4;18360:25;18345:40;;;:11;:40;;;;18338:47;;18236:157;;;:::o;27503:382::-;27597:1;27583:16;;:2;:16;;;;27575:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27656:16;27664:7;27656;:16::i;:::-;27655:17;27647:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27718:45;27747:1;27751:2;27755:7;27718:20;:45::i;:::-;27793:1;27776:9;:13;27786:2;27776:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27824:2;27805:7;:16;27813:7;27805:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27869:7;27865:2;27844:33;;27861:1;27844:33;;;;;;;;;;;;27503:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:375::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:13;7763:2;7758:3;7754:12;7747:35;7808:2;7803:3;7799:12;7792:19;;7588:229;;;:::o;7823:382::-;;7986:67;8050:2;8045:3;7986:67;:::i;:::-;7979:74;;8083:34;8079:1;8074:3;8070:11;8063:55;8149:20;8144:2;8139:3;8135:12;8128:42;8196:2;8191:3;8187:12;8180:19;;7969:236;;;:::o;8211:370::-;;8374:67;8438:2;8433:3;8374:67;:::i;:::-;8367:74;;8471:34;8467:1;8462:3;8458:11;8451:55;8537:8;8532:2;8527:3;8523:12;8516:30;8572:2;8567:3;8563:12;8556:19;;8357:224;;;:::o;8587:326::-;;8750:67;8814:2;8809:3;8750:67;:::i;:::-;8743:74;;8847:30;8843:1;8838:3;8834:11;8827:51;8904:2;8899:3;8895:12;8888:19;;8733:180;;;:::o;8919:368::-;;9082:67;9146:2;9141:3;9082:67;:::i;:::-;9075:74;;9179:34;9175:1;9170:3;9166:11;9159:55;9245:6;9240:2;9235:3;9231:12;9224:28;9278:2;9273:3;9269:12;9262:19;;9065:222;;;:::o;9293:323::-;;9456:67;9520:2;9515:3;9456:67;:::i;:::-;9449:74;;9553:27;9549:1;9544:3;9540:11;9533:48;9607:2;9602:3;9598:12;9591:19;;9439:177;;;:::o;9622:376::-;;9785:67;9849:2;9844:3;9785:67;:::i;:::-;9778:74;;9882:34;9878:1;9873:3;9869:11;9862:55;9948:14;9943:2;9938:3;9934:12;9927:36;9989:2;9984:3;9980:12;9973:19;;9768:230;;;:::o;10004:388::-;;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10264:34;10260:1;10255:3;10251:11;10244:55;10330:26;10325:2;10320:3;10316:12;10309:48;10383:2;10378:3;10374:12;10367:19;;10150:242;;;:::o;10398:374::-;;10561:67;10625:2;10620:3;10561:67;:::i;:::-;10554:74;;10658:34;10654:1;10649:3;10645:11;10638:55;10724:12;10719:2;10714:3;10710:12;10703:34;10763:2;10758:3;10754:12;10747:19;;10544:228;;;:::o;10778:373::-;;10941:67;11005:2;11000:3;10941:67;:::i;:::-;10934:74;;11038:34;11034:1;11029:3;11025:11;11018:55;11104:11;11099:2;11094:3;11090:12;11083:33;11142:2;11137:3;11133:12;11126:19;;10924:227;;;:::o;11157:330::-;;11320:67;11384:2;11379:3;11320:67;:::i;:::-;11313:74;;11417:34;11413:1;11408:3;11404:11;11397:55;11478:2;11473:3;11469:12;11462:19;;11303:184;;;:::o;11493:376::-;;11656:67;11720:2;11715:3;11656:67;:::i;:::-;11649:74;;11753:34;11749:1;11744:3;11740:11;11733:55;11819:14;11814:2;11809:3;11805:12;11798:36;11860:2;11855:3;11851:12;11844:19;;11639:230;;;:::o;11875:330::-;;12038:67;12102:2;12097:3;12038:67;:::i;:::-;12031:74;;12135:34;12131:1;12126:3;12122:11;12115:55;12196:2;12191:3;12187:12;12180:19;;12021:184;;;:::o;12211:373::-;;12374:67;12438:2;12433:3;12374:67;:::i;:::-;12367:74;;12471:34;12467:1;12462:3;12458:11;12451:55;12537:11;12532:2;12527:3;12523:12;12516:33;12575:2;12570:3;12566:12;12559:19;;12357:227;;;:::o;12590:379::-;;12753:67;12817:2;12812:3;12753:67;:::i;:::-;12746:74;;12850:34;12846:1;12841:3;12837:11;12830:55;12916:17;12911:2;12906:3;12902:12;12895:39;12960:2;12955:3;12951:12;12944:19;;12736:233;;;:::o;12975:365::-;;13138:67;13202:2;13197:3;13138:67;:::i;:::-;13131:74;;13235:34;13231:1;13226:3;13222:11;13215:55;13301:3;13296:2;13291:3;13287:12;13280:25;13331:2;13326:3;13322:12;13315:19;;13121:219;;;:::o;13346:381::-;;13509:67;13573:2;13568:3;13509:67;:::i;:::-;13502:74;;13606:34;13602:1;13597:3;13593:11;13586:55;13672:19;13667:2;13662:3;13658:12;13651:41;13718:2;13713:3;13709:12;13702:19;;13492:235;;;:::o;13733:376::-;;13896:67;13960:2;13955:3;13896:67;:::i;:::-;13889:74;;13993:34;13989:1;13984:3;13980:11;13973:55;14059:14;14054:2;14049:3;14045:12;14038:36;14100:2;14095:3;14091:12;14084:19;;13879:230;;;:::o;14115:118::-;14202:24;14220:5;14202:24;:::i;:::-;14197:3;14190:37;14180:53;;:::o;14239:435::-;;14441:95;14532:3;14523:6;14441:95;:::i;:::-;14434:102;;14553:95;14644:3;14635:6;14553:95;:::i;:::-;14546:102;;14665:3;14658:10;;14423:251;;;;;:::o;14680:222::-;;14811:2;14800:9;14796:18;14788:26;;14824:71;14892:1;14881:9;14877:17;14868:6;14824:71;:::i;:::-;14778:124;;;;:::o;14908:640::-;;15141:3;15130:9;15126:19;15118:27;;15155:71;15223:1;15212:9;15208:17;15199:6;15155:71;:::i;:::-;15236:72;15304:2;15293:9;15289:18;15280:6;15236:72;:::i;:::-;15318;15386:2;15375:9;15371:18;15362:6;15318:72;:::i;:::-;15437:9;15431:4;15427:20;15422:2;15411:9;15407:18;15400:48;15465:76;15536:4;15527:6;15465:76;:::i;:::-;15457:84;;15108:440;;;;;;;:::o;15554:210::-;;15679:2;15668:9;15664:18;15656:26;;15692:65;15754:1;15743:9;15739:17;15730:6;15692:65;:::i;:::-;15646:118;;;;:::o;15770:313::-;;15921:2;15910:9;15906:18;15898:26;;15970:9;15964:4;15960:20;15956:1;15945:9;15941:17;15934:47;15998:78;16071:4;16062:6;15998:78;:::i;:::-;15990:86;;15888:195;;;;:::o;16089:419::-;;16293:2;16282:9;16278:18;16270:26;;16342:9;16336:4;16332:20;16328:1;16317:9;16313:17;16306:47;16370:131;16496:4;16370:131;:::i;:::-;16362:139;;16260:248;;;:::o;16514:419::-;;16718:2;16707:9;16703:18;16695:26;;16767:9;16761:4;16757:20;16753:1;16742:9;16738:17;16731:47;16795:131;16921:4;16795:131;:::i;:::-;16787:139;;16685:248;;;:::o;16939:419::-;;17143:2;17132:9;17128:18;17120:26;;17192:9;17186:4;17182:20;17178:1;17167:9;17163:17;17156:47;17220:131;17346:4;17220:131;:::i;:::-;17212:139;;17110:248;;;:::o;17364:419::-;;17568:2;17557:9;17553:18;17545:26;;17617:9;17611:4;17607:20;17603:1;17592:9;17588:17;17581:47;17645:131;17771:4;17645:131;:::i;:::-;17637:139;;17535:248;;;:::o;17789:419::-;;17993:2;17982:9;17978:18;17970:26;;18042:9;18036:4;18032:20;18028:1;18017:9;18013:17;18006:47;18070:131;18196:4;18070:131;:::i;:::-;18062:139;;17960:248;;;:::o;18214:419::-;;18418:2;18407:9;18403:18;18395:26;;18467:9;18461:4;18457:20;18453:1;18442:9;18438:17;18431:47;18495:131;18621:4;18495:131;:::i;:::-;18487:139;;18385:248;;;:::o;18639:419::-;;18843:2;18832:9;18828:18;18820:26;;18892:9;18886:4;18882:20;18878:1;18867:9;18863:17;18856:47;18920:131;19046:4;18920:131;:::i;:::-;18912:139;;18810:248;;;:::o;19064:419::-;;19268:2;19257:9;19253:18;19245:26;;19317:9;19311:4;19307:20;19303:1;19292:9;19288:17;19281:47;19345:131;19471:4;19345:131;:::i;:::-;19337:139;;19235:248;;;:::o;19489:419::-;;19693:2;19682:9;19678:18;19670:26;;19742:9;19736:4;19732:20;19728:1;19717:9;19713:17;19706:47;19770:131;19896:4;19770:131;:::i;:::-;19762:139;;19660:248;;;:::o;19914:419::-;;20118:2;20107:9;20103:18;20095:26;;20167:9;20161:4;20157:20;20153:1;20142:9;20138:17;20131:47;20195:131;20321:4;20195:131;:::i;:::-;20187:139;;20085:248;;;:::o;20339:419::-;;20543:2;20532:9;20528:18;20520:26;;20592:9;20586:4;20582:20;20578:1;20567:9;20563:17;20556:47;20620:131;20746:4;20620:131;:::i;:::-;20612:139;;20510:248;;;:::o;20764:419::-;;20968:2;20957:9;20953:18;20945:26;;21017:9;21011:4;21007:20;21003:1;20992:9;20988:17;20981:47;21045:131;21171:4;21045:131;:::i;:::-;21037:139;;20935:248;;;:::o;21189:419::-;;21393:2;21382:9;21378:18;21370:26;;21442:9;21436:4;21432:20;21428:1;21417:9;21413:17;21406:47;21470:131;21596:4;21470:131;:::i;:::-;21462:139;;21360:248;;;:::o;21614:419::-;;21818:2;21807:9;21803:18;21795:26;;21867:9;21861:4;21857:20;21853:1;21842:9;21838:17;21831:47;21895:131;22021:4;21895:131;:::i;:::-;21887:139;;21785:248;;;:::o;22039:419::-;;22243:2;22232:9;22228:18;22220:26;;22292:9;22286:4;22282:20;22278:1;22267:9;22263:17;22256:47;22320:131;22446:4;22320:131;:::i;:::-;22312:139;;22210:248;;;:::o;22464:419::-;;22668:2;22657:9;22653:18;22645:26;;22717:9;22711:4;22707:20;22703:1;22692:9;22688:17;22681:47;22745:131;22871:4;22745:131;:::i;:::-;22737:139;;22635:248;;;:::o;22889:419::-;;23093:2;23082:9;23078:18;23070:26;;23142:9;23136:4;23132:20;23128:1;23117:9;23113:17;23106:47;23170:131;23296:4;23170:131;:::i;:::-;23162:139;;23060:248;;;:::o;23314:419::-;;23518:2;23507:9;23503:18;23495:26;;23567:9;23561:4;23557:20;23553:1;23542:9;23538:17;23531:47;23595:131;23721:4;23595:131;:::i;:::-;23587:139;;23485:248;;;:::o;23739:222::-;;23870:2;23859:9;23855:18;23847:26;;23883:71;23951:1;23940:9;23936:17;23927:6;23883:71;:::i;:::-;23837:124;;;;:::o;23967:283::-;;24033:2;24027:9;24017:19;;24075:4;24067:6;24063:17;24182:6;24170:10;24167:22;24146:18;24134:10;24131:34;24128:62;24125:2;;;24193:18;;:::i;:::-;24125:2;24233:10;24229:2;24222:22;24007:243;;;;:::o;24256:331::-;;24407:18;24399:6;24396:30;24393:2;;;24429:18;;:::i;:::-;24393:2;24514:4;24510:9;24503:4;24495:6;24491:17;24487:33;24479:41;;24575:4;24569;24565:15;24557:23;;24322:265;;;:::o;24593:332::-;;24745:18;24737:6;24734:30;24731:2;;;24767:18;;:::i;:::-;24731:2;24852:4;24848:9;24841:4;24833:6;24829:17;24825:33;24817:41;;24913:4;24907;24903:15;24895:23;;24660:265;;;:::o;24931:98::-;;25016:5;25010:12;25000:22;;24989:40;;;:::o;25035:99::-;;25121:5;25115:12;25105:22;;25094:40;;;:::o;25140:168::-;;25257:6;25252:3;25245:19;25297:4;25292:3;25288:14;25273:29;;25235:73;;;;:::o;25314:169::-;;25432:6;25427:3;25420:19;25472:4;25467:3;25463:14;25448:29;;25410:73;;;;:::o;25489:148::-;;25628:3;25613:18;;25603:34;;;;:::o;25643:305::-;;25702:20;25720:1;25702:20;:::i;:::-;25697:25;;25736:20;25754:1;25736:20;:::i;:::-;25731:25;;25890:1;25822:66;25818:74;25815:1;25812:81;25809:2;;;25896:18;;:::i;:::-;25809:2;25940:1;25937;25933:9;25926:16;;25687:261;;;;:::o;25954:185::-;;26011:20;26029:1;26011:20;:::i;:::-;26006:25;;26045:20;26063:1;26045:20;:::i;:::-;26040:25;;26084:1;26074:2;;26089:18;;:::i;:::-;26074:2;26131:1;26128;26124:9;26119:14;;25996:143;;;;:::o;26145:191::-;;26205:20;26223:1;26205:20;:::i;:::-;26200:25;;26239:20;26257:1;26239:20;:::i;:::-;26234:25;;26278:1;26275;26272:8;26269:2;;;26283:18;;:::i;:::-;26269:2;26328:1;26325;26321:9;26313:17;;26190:146;;;;:::o;26342:96::-;;26408:24;26426:5;26408:24;:::i;:::-;26397:35;;26387:51;;;:::o;26444:90::-;;26521:5;26514:13;26507:21;26496:32;;26486:48;;;:::o;26540:149::-;;26616:66;26609:5;26605:78;26594:89;;26584:105;;;:::o;26695:126::-;;26772:42;26765:5;26761:54;26750:65;;26740:81;;;:::o;26827:77::-;;26893:5;26882:16;;26872:32;;;:::o;26910:154::-;26994:6;26989:3;26984;26971:30;27056:1;27047:6;27042:3;27038:16;27031:27;26961:103;;;:::o;27070:307::-;27138:1;27148:113;27162:6;27159:1;27156:13;27148:113;;;27247:1;27242:3;27238:11;27232:18;27228:1;27223:3;27219:11;27212:39;27184:2;27181:1;27177:10;27172:15;;27148:113;;;27279:6;27276:1;27273:13;27270:2;;;27359:1;27350:6;27345:3;27341:16;27334:27;27270:2;27119:258;;;;:::o;27383:320::-;;27464:1;27458:4;27454:12;27444:22;;27511:1;27505:4;27501:12;27532:18;27522:2;;27588:4;27580:6;27576:17;27566:27;;27522:2;27650;27642:6;27639:14;27619:18;27616:38;27613:2;;;27669:18;;:::i;:::-;27613:2;27434:269;;;;:::o;27709:233::-;;27771:24;27789:5;27771:24;:::i;:::-;27762:33;;27817:66;27810:5;27807:77;27804:2;;;27887:18;;:::i;:::-;27804:2;27934:1;27927:5;27923:13;27916:20;;27752:190;;;:::o;27948:176::-;;27997:20;28015:1;27997:20;:::i;:::-;27992:25;;28031:20;28049:1;28031:20;:::i;:::-;28026:25;;28070:1;28060:2;;28075:18;;:::i;:::-;28060:2;28116:1;28113;28109:9;28104:14;;27982:142;;;;:::o;28130:180::-;28178:77;28175:1;28168:88;28275:4;28272:1;28265:15;28299:4;28296:1;28289:15;28316:180;28364:77;28361:1;28354:88;28461:4;28458:1;28451:15;28485:4;28482:1;28475:15;28502:180;28550:77;28547:1;28540:88;28647:4;28644:1;28637:15;28671:4;28668:1;28661:15;28688:180;28736:77;28733:1;28726:88;28833:4;28830:1;28823:15;28857:4;28854:1;28847:15;28874:102;;28966:2;28962:7;28957:2;28950:5;28946:14;28942:28;28932:38;;28922:54;;;:::o;28982:122::-;29055:24;29073:5;29055:24;:::i;:::-;29048:5;29045:35;29035:2;;29094:1;29091;29084:12;29035:2;29025:79;:::o;29110:116::-;29180:21;29195:5;29180:21;:::i;:::-;29173:5;29170:32;29160:2;;29216:1;29213;29206:12;29160:2;29150:76;:::o;29232:120::-;29304:23;29321:5;29304:23;:::i;:::-;29297:5;29294:34;29284:2;;29342:1;29339;29332:12;29284:2;29274:78;:::o;29358:122::-;29431:24;29449:5;29431:24;:::i;:::-;29424:5;29421:35;29411:2;;29470:1;29467;29460:12;29411:2;29401:79;:::o

Swarm Source

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