ETH Price: $3,387.04 (-1.74%)
Gas: 1 Gwei

Token

Animoon (ANI)
 

Overview

Max Total Supply

9,999 ANI

Holders

5,051

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 ANI
0x59ac7b748d68497477ff9b7c229c8b6d886121b2
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:
Animoon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
==========================================================
          _   _ _____   __  __  ____   ____  _   _ 
    /\   | \ | |_   _| |  \/  |/ __ \ / __ \| \ | |
   /  \  |  \| | | |   | \  / | |  | | |  | |  \| |
  / /\ \ | . ` | | |   | |\/| | |  | | |  | | . ` |
 / ____ \| |\  |_| |_  | |  | | |__| | |__| | |\  |
/_/    \_\_| \_|_____| |_|  |_|\____/ \____/|_| \_|
                                                   
===========================================================

 *Submitted for verification at Etherscan.io on 2021-09-22
*/

/**
 *Submitted for verification at Etherscan.io on 2021-09-21
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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);
    }

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
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);
}
pragma solidity ^0.8.0;

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


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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


pragma solidity ^0.8.0;


contract Animoon is Ownable, ERC721 {
    
    uint public tokenPrice = 0.2 ether;
    uint constant maxSupply = 9999;
    uint public totalSupply = 0;
    uint public presaleSupply = 5000;
    bool public public_sale_status = false;
    bool public pre_sale_status = false;
    string public baseURI;
    
    uint public maxPerTransaction = 20;  //Max Limit for Sale     
    constructor() ERC721("Animoon", "ANI "){}

   function buy(uint _count) public payable{
       require(public_sale_status == true, "Sale is Paused.");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 5");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
        totalSupply += _count;
    }
      function presale(uint _count) public payable{
       require(pre_sale_status == true, "Sale is Paused.");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 5");
        require(totalSupply + _count <= presaleSupply, "Not enough tokens left");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
        totalSupply += _count;
    }

    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
        
    }
     function setprice(uint temp) external onlyOwner {
        tokenPrice = temp;
    }
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
  
    function publicSale_status(bool temp) external onlyOwner {
        public_sale_status = temp;
    }
     function preSale_status(bool temp) external onlyOwner {
        pre_sale_status = temp;
    }

     function Update_preSale_supply(uint temp) external onlyOwner {
        presaleSupply = temp;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
      function withdraw() external onlyOwner {
         uint _balance = address(this).balance;
        payable(owner()).transfer(_balance * 68 / 100);//owner wallet
        payable(0x7C60E48234ffc524993421885a1E8EFCb4FEB6EB).transfer(_balance * 30 / 100); //owner
        payable(0x2098145E7D5572828209f89FB972568B765605C7).transfer(_balance * 2 / 100); //dev
    }
}

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":"uint256","name":"temp","type":"uint256"}],"name":"Update_preSale_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","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":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"temp","type":"bool"}],"name":"preSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pre_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"temp","type":"uint256"}],"name":"setprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526702c68af0bb14000060075560006008556113886009556000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506014600c553480156200006357600080fd5b506040518060400160405280600781526020017f416e696d6f6f6e000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f414e492000000000000000000000000000000000000000000000000000000000815250620000f0620000e46200012a60201b60201c565b6200013260201b60201c565b816001908051906020019062000108929190620001f6565b50806002908051906020019062000121929190620001f6565b5050506200030b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020490620002a6565b90600052602060002090601f01602090048101928262000228576000855562000274565b82601f106200024357805160ff191683800117855562000274565b8280016001018555821562000274579182015b828111156200027357825182559160200191906001019062000256565b5b50905062000283919062000287565b5090565b5b80821115620002a257600081600090555060010162000288565b5090565b60006002820490506001821680620002bf57607f821691505b60208210811415620002d657620002d5620002dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f94806200031b6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b3a196e911610095578063d96a094a11610064578063d96a094a146106b8578063e6ab1434146106d4578063e985e9c5146106f0578063f2fde38b1461072d576101e3565b8063b3a196e9146105fe578063b88d4fde14610629578063c87b56dd14610652578063d49f0fa51461068f576101e3565b806395d89b41116100d157806395d89b411461055657806395ea5e6714610581578063a0bcfc7f146105ac578063a22cb465146105d5576101e3565b8063715018a6146104c05780637c8255db146104d75780637ff9b596146105005780638da5cb5b1461052b576101e3565b806323b872dd1161017a5780634b980d67116101495780634b980d67146103f05780636352211e1461041b5780636c0360eb1461045857806370a0823114610483576101e3565b806323b872dd1461035e57806324ac79ed146103875780633ccfd60b146103b057806342842e0e146103c7576101e3565b8063145e8cb6116101b6578063145e8cb6146102b6578063154b70b6146102df57806318160ddd1461030a5780631cef37e414610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612cbc565b610756565b60405161021c91906131e9565b60405180910390f35b34801561023157600080fd5b5061023a610838565b6040516102479190613204565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612d5f565b6108ca565b6040516102849190613182565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612c06565b61094f565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612c8f565b610a67565b005b3480156102eb57600080fd5b506102f4610b00565b60405161030191906131e9565b60405180910390f35b34801561031657600080fd5b5061031f610b13565b60405161032c91906134e6565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612c8f565b610b19565b005b34801561036a57600080fd5b5061038560048036038101906103809190612af0565b610bb2565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612d5f565b610c12565b005b3480156103bc57600080fd5b506103c5610c98565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612af0565b610e68565b005b3480156103fc57600080fd5b50610405610e88565b60405161041291906134e6565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612d5f565b610e8e565b60405161044f9190613182565b60405180910390f35b34801561046457600080fd5b5061046d610f40565b60405161047a9190613204565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612a83565b610fce565b6040516104b791906134e6565b60405180910390f35b3480156104cc57600080fd5b506104d5611086565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612c46565b61110e565b005b34801561050c57600080fd5b50610515611257565b60405161052291906134e6565b60405180910390f35b34801561053757600080fd5b5061054061125d565b60405161054d9190613182565b60405180910390f35b34801561056257600080fd5b5061056b611286565b6040516105789190613204565b60405180910390f35b34801561058d57600080fd5b50610596611318565b6040516105a391906131e9565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612d16565b61132b565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190612bc6565b6113c1565b005b34801561060a57600080fd5b50610613611542565b60405161062091906134e6565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190612b43565b611548565b005b34801561065e57600080fd5b5061067960048036038101906106749190612d5f565b6115aa565b6040516106869190613204565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612d5f565b611651565b005b6106d260048036038101906106cd9190612d5f565b6116d7565b005b6106ee60048036038101906106e99190612d5f565b6118b5565b005b3480156106fc57600080fd5b5061071760048036038101906107129190612ab0565b611a93565b60405161072491906131e9565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612a83565b611b27565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610831575061083082611c1f565b5b9050919050565b606060018054610847906137c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610873906137c2565b80156108c05780601f10610895576101008083540402835291602001916108c0565b820191906000526020600020905b8154815290600101906020018083116108a357829003601f168201915b5050505050905090565b60006108d582611c89565b610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906133a6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095a82610e8e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290613426565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ea611cf5565b73ffffffffffffffffffffffffffffffffffffffff161480610a195750610a1881610a13611cf5565b611a93565b5b610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90613306565b60405180910390fd5b610a628383611cfd565b505050565b610a6f611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610a8d61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada906133c6565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b600a60019054906101000a900460ff1681565b60085481565b610b21611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610b3f61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906133c6565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b610bc3610bbd611cf5565b82611db6565b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990613446565b60405180910390fd5b610c0d838383611e94565b505050565b610c1a611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610c3861125d565b73ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c85906133c6565b60405180910390fd5b8060098190555050565b610ca0611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610cbe61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906133c6565b60405180910390fd5b6000479050610d2161125d565b73ffffffffffffffffffffffffffffffffffffffff166108fc6064604484610d49919061367e565b610d53919061364d565b9081150290604051600060405180830381858888f19350505050158015610d7e573d6000803e3d6000fd5b50737c60e48234ffc524993421885a1e8efcb4feb6eb73ffffffffffffffffffffffffffffffffffffffff166108fc6064601e84610dbc919061367e565b610dc6919061364d565b9081150290604051600060405180830381858888f19350505050158015610df1573d6000803e3d6000fd5b50732098145e7d5572828209f89fb972568b765605c773ffffffffffffffffffffffffffffffffffffffff166108fc6064600284610e2f919061367e565b610e39919061364d565b9081150290604051600060405180830381858888f19350505050158015610e64573d6000803e3d6000fd5b5050565b610e8383838360405180602001604052806000815250611548565b505050565b600c5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613346565b60405180910390fd5b80915050919050565b600b8054610f4d906137c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f79906137c2565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690613326565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61108e611cf5565b73ffffffffffffffffffffffffffffffffffffffff166110ac61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906133c6565b60405180910390fd5b61110c60006120f0565b565b611116611cf5565b73ffffffffffffffffffffffffffffffffffffffff1661113461125d565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611181906133c6565b60405180910390fd5b61270f815160085461119c91906135f7565b11156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613486565b60405180910390fd5b60005b8151811015611239576112268282815181106111ff576111fe61392c565b5b602002602001015182600160085461121791906135f7565b61122191906135f7565b6121b4565b808061123190613825565b9150506111e0565b5080516008600082825461124d91906135f7565b9250508190555050565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611295906137c2565b80601f01602080910402602001604051908101604052809291908181526020018280546112c1906137c2565b801561130e5780601f106112e35761010080835404028352916020019161130e565b820191906000526020600020905b8154815290600101906020018083116112f157829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b611333611cf5565b73ffffffffffffffffffffffffffffffffffffffff1661135161125d565b73ffffffffffffffffffffffffffffffffffffffff16146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906133c6565b60405180910390fd5b80600b90805190602001906113bd9291906127f9565b5050565b6113c9611cf5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e906132a6565b60405180910390fd5b8060066000611444611cf5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f1611cf5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153691906131e9565b60405180910390a35050565b60095481565b611559611553611cf5565b83611db6565b611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90613446565b60405180910390fd5b6115a4848484846121d2565b50505050565b60606115b582611c89565b6115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613406565b60405180910390fd5b60006115fe61222e565b9050600081511161161e5760405180602001604052806000815250611649565b80611628846122c0565b60405160200161163992919061315e565b6040516020818303038152906040525b915050919050565b611659611cf5565b73ffffffffffffffffffffffffffffffffffffffff1661167761125d565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906133c6565b60405180910390fd5b8060078190555050565b60011515600a60009054906101000a900460ff1615151461172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906134a6565b60405180910390fd5b60008111611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613466565b60405180910390fd5b600c548111156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906134c6565b60405180910390fd5b61270f816008546117c691906135f7565b1115611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613366565b60405180910390fd5b80600754611815919061367e565b341015611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906132e6565b60405180910390fd5b60005b81811015611898576118853382600160085461187691906135f7565b61188091906135f7565b6121b4565b808061189090613825565b91505061185a565b5080600860008282546118ab91906135f7565b9250508190555050565b60011515600a60019054906101000a900460ff1615151461190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906134a6565b60405180910390fd5b6000811161194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613466565b60405180910390fd5b600c54811115611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906134c6565b60405180910390fd5b600954816008546119a491906135f7565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613366565b60405180910390fd5b806007546119f3919061367e565b341015611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c906132e6565b60405180910390fd5b60005b81811015611a7657611a6333826001600854611a5491906135f7565b611a5e91906135f7565b6121b4565b8080611a6e90613825565b915050611a38565b508060086000828254611a8991906135f7565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2f611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611b4d61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a906133c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613246565b60405180910390fd5b611c1c816120f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7083610e8e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dc182611c89565b611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df7906132c6565b60405180910390fd5b6000611e0b83610e8e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7a57508373ffffffffffffffffffffffffffffffffffffffff16611e62846108ca565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8b5750611e8a8185611a93565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb482610e8e565b73ffffffffffffffffffffffffffffffffffffffff1614611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f01906133e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613286565b60405180910390fd5b611f85838383612421565b611f90600082611cfd565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe091906136d8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203791906135f7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121ce828260405180602001604052806000815250612426565b5050565b6121dd848484611e94565b6121e984848484612481565b612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613226565b60405180910390fd5b50505050565b6060600b805461223d906137c2565b80601f0160208091040260200160405190810160405280929190818152602001828054612269906137c2565b80156122b65780601f1061228b576101008083540402835291602001916122b6565b820191906000526020600020905b81548152906001019060200180831161229957829003601f168201915b5050505050905090565b60606000821415612308576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061241c565b600082905060005b6000821461233a57808061232390613825565b915050600a82612333919061364d565b9150612310565b60008167ffffffffffffffff8111156123565761235561395b565b5b6040519080825280601f01601f1916602001820160405280156123885781602001600182028036833780820191505090505b5090505b60008514612415576001826123a191906136d8565b9150600a856123b0919061386e565b60306123bc91906135f7565b60f81b8183815181106123d2576123d161392c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561240e919061364d565b945061238c565b8093505050505b919050565b505050565b6124308383612618565b61243d6000848484612481565b61247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390613226565b60405180910390fd5b505050565b60006124a28473ffffffffffffffffffffffffffffffffffffffff166127e6565b1561260b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124cb611cf5565b8786866040518563ffffffff1660e01b81526004016124ed949392919061319d565b602060405180830381600087803b15801561250757600080fd5b505af192505050801561253857506040513d601f19601f820116820180604052508101906125359190612ce9565b60015b6125bb573d8060008114612568576040519150601f19603f3d011682016040523d82523d6000602084013e61256d565b606091505b506000815114156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613226565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612610565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613386565b60405180910390fd5b61269181611c89565b156126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890613266565b60405180910390fd5b6126dd60008383612421565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272d91906135f7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612805906137c2565b90600052602060002090601f016020900481019282612827576000855561286e565b82601f1061284057805160ff191683800117855561286e565b8280016001018555821561286e579182015b8281111561286d578251825591602001919060010190612852565b5b50905061287b919061287f565b5090565b5b80821115612898576000816000905550600101612880565b5090565b60006128af6128aa84613526565b613501565b905080838252602082019050828560208602820111156128d2576128d161398f565b5b60005b8581101561290257816128e88882612990565b8452602084019350602083019250506001810190506128d5565b5050509392505050565b600061291f61291a84613552565b613501565b90508281526020810184848401111561293b5761293a613994565b5b612946848285613780565b509392505050565b600061296161295c84613583565b613501565b90508281526020810184848401111561297d5761297c613994565b5b612988848285613780565b509392505050565b60008135905061299f81613f02565b92915050565b600082601f8301126129ba576129b961398a565b5b81356129ca84826020860161289c565b91505092915050565b6000813590506129e281613f19565b92915050565b6000813590506129f781613f30565b92915050565b600081519050612a0c81613f30565b92915050565b600082601f830112612a2757612a2661398a565b5b8135612a3784826020860161290c565b91505092915050565b600082601f830112612a5557612a5461398a565b5b8135612a6584826020860161294e565b91505092915050565b600081359050612a7d81613f47565b92915050565b600060208284031215612a9957612a9861399e565b5b6000612aa784828501612990565b91505092915050565b60008060408385031215612ac757612ac661399e565b5b6000612ad585828601612990565b9250506020612ae685828601612990565b9150509250929050565b600080600060608486031215612b0957612b0861399e565b5b6000612b1786828701612990565b9350506020612b2886828701612990565b9250506040612b3986828701612a6e565b9150509250925092565b60008060008060808587031215612b5d57612b5c61399e565b5b6000612b6b87828801612990565b9450506020612b7c87828801612990565b9350506040612b8d87828801612a6e565b925050606085013567ffffffffffffffff811115612bae57612bad613999565b5b612bba87828801612a12565b91505092959194509250565b60008060408385031215612bdd57612bdc61399e565b5b6000612beb85828601612990565b9250506020612bfc858286016129d3565b9150509250929050565b60008060408385031215612c1d57612c1c61399e565b5b6000612c2b85828601612990565b9250506020612c3c85828601612a6e565b9150509250929050565b600060208284031215612c5c57612c5b61399e565b5b600082013567ffffffffffffffff811115612c7a57612c79613999565b5b612c86848285016129a5565b91505092915050565b600060208284031215612ca557612ca461399e565b5b6000612cb3848285016129d3565b91505092915050565b600060208284031215612cd257612cd161399e565b5b6000612ce0848285016129e8565b91505092915050565b600060208284031215612cff57612cfe61399e565b5b6000612d0d848285016129fd565b91505092915050565b600060208284031215612d2c57612d2b61399e565b5b600082013567ffffffffffffffff811115612d4a57612d49613999565b5b612d5684828501612a40565b91505092915050565b600060208284031215612d7557612d7461399e565b5b6000612d8384828501612a6e565b91505092915050565b612d958161370c565b82525050565b612da48161371e565b82525050565b6000612db5826135b4565b612dbf81856135ca565b9350612dcf81856020860161378f565b612dd8816139a3565b840191505092915050565b6000612dee826135bf565b612df881856135db565b9350612e0881856020860161378f565b612e11816139a3565b840191505092915050565b6000612e27826135bf565b612e3181856135ec565b9350612e4181856020860161378f565b80840191505092915050565b6000612e5a6032836135db565b9150612e65826139b4565b604082019050919050565b6000612e7d6026836135db565b9150612e8882613a03565b604082019050919050565b6000612ea0601c836135db565b9150612eab82613a52565b602082019050919050565b6000612ec36024836135db565b9150612ece82613a7b565b604082019050919050565b6000612ee66019836135db565b9150612ef182613aca565b602082019050919050565b6000612f09602c836135db565b9150612f1482613af3565b604082019050919050565b6000612f2c6016836135db565b9150612f3782613b42565b602082019050919050565b6000612f4f6038836135db565b9150612f5a82613b6b565b604082019050919050565b6000612f72602a836135db565b9150612f7d82613bba565b604082019050919050565b6000612f956029836135db565b9150612fa082613c09565b604082019050919050565b6000612fb86016836135db565b9150612fc382613c58565b602082019050919050565b6000612fdb6020836135db565b9150612fe682613c81565b602082019050919050565b6000612ffe602c836135db565b915061300982613caa565b604082019050919050565b60006130216020836135db565b915061302c82613cf9565b602082019050919050565b60006130446029836135db565b915061304f82613d22565b604082019050919050565b6000613067602f836135db565b915061307282613d71565b604082019050919050565b600061308a6021836135db565b915061309582613dc0565b604082019050919050565b60006130ad6031836135db565b91506130b882613e0f565b604082019050919050565b60006130d06017836135db565b91506130db82613e5e565b602082019050919050565b60006130f36016836135db565b91506130fe82613e87565b602082019050919050565b6000613116600f836135db565b915061312182613eb0565b602082019050919050565b60006131396015836135db565b915061314482613ed9565b602082019050919050565b61315881613776565b82525050565b600061316a8285612e1c565b91506131768284612e1c565b91508190509392505050565b60006020820190506131976000830184612d8c565b92915050565b60006080820190506131b26000830187612d8c565b6131bf6020830186612d8c565b6131cc604083018561314f565b81810360608301526131de8184612daa565b905095945050505050565b60006020820190506131fe6000830184612d9b565b92915050565b6000602082019050818103600083015261321e8184612de3565b905092915050565b6000602082019050818103600083015261323f81612e4d565b9050919050565b6000602082019050818103600083015261325f81612e70565b9050919050565b6000602082019050818103600083015261327f81612e93565b9050919050565b6000602082019050818103600083015261329f81612eb6565b9050919050565b600060208201905081810360008301526132bf81612ed9565b9050919050565b600060208201905081810360008301526132df81612efc565b9050919050565b600060208201905081810360008301526132ff81612f1f565b9050919050565b6000602082019050818103600083015261331f81612f42565b9050919050565b6000602082019050818103600083015261333f81612f65565b9050919050565b6000602082019050818103600083015261335f81612f88565b9050919050565b6000602082019050818103600083015261337f81612fab565b9050919050565b6000602082019050818103600083015261339f81612fce565b9050919050565b600060208201905081810360008301526133bf81612ff1565b9050919050565b600060208201905081810360008301526133df81613014565b9050919050565b600060208201905081810360008301526133ff81613037565b9050919050565b6000602082019050818103600083015261341f8161305a565b9050919050565b6000602082019050818103600083015261343f8161307d565b9050919050565b6000602082019050818103600083015261345f816130a0565b9050919050565b6000602082019050818103600083015261347f816130c3565b9050919050565b6000602082019050818103600083015261349f816130e6565b9050919050565b600060208201905081810360008301526134bf81613109565b9050919050565b600060208201905081810360008301526134df8161312c565b9050919050565b60006020820190506134fb600083018461314f565b92915050565b600061350b61351c565b905061351782826137f4565b919050565b6000604051905090565b600067ffffffffffffffff8211156135415761354061395b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561356d5761356c61395b565b5b613576826139a3565b9050602081019050919050565b600067ffffffffffffffff82111561359e5761359d61395b565b5b6135a7826139a3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061360282613776565b915061360d83613776565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136425761364161389f565b5b828201905092915050565b600061365882613776565b915061366383613776565b925082613673576136726138ce565b5b828204905092915050565b600061368982613776565b915061369483613776565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136cd576136cc61389f565b5b828202905092915050565b60006136e382613776565b91506136ee83613776565b9250828210156137015761370061389f565b5b828203905092915050565b600061371782613756565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ad578082015181840152602081019050613792565b838111156137bc576000848401525b50505050565b600060028204905060018216806137da57607f821691505b602082108114156137ee576137ed6138fd565b5b50919050565b6137fd826139a3565b810181811067ffffffffffffffff8211171561381c5761381b61395b565b5b80604052505050565b600061383082613776565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138635761386261389f565b5b600182019050919050565b600061387982613776565b915061388483613776565b925082613894576138936138ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b7f6d617820706572207472616e73616374696f6e20350000000000000000000000600082015250565b613f0b8161370c565b8114613f1657600080fd5b50565b613f228161371e565b8114613f2d57600080fd5b50565b613f398161372a565b8114613f4457600080fd5b50565b613f5081613776565b8114613f5b57600080fd5b5056fea2646970667358221220bd2f4fbfc3a325ade036d2162397c192945355c5c8f137e591e286265c81766d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063b3a196e911610095578063d96a094a11610064578063d96a094a146106b8578063e6ab1434146106d4578063e985e9c5146106f0578063f2fde38b1461072d576101e3565b8063b3a196e9146105fe578063b88d4fde14610629578063c87b56dd14610652578063d49f0fa51461068f576101e3565b806395d89b41116100d157806395d89b411461055657806395ea5e6714610581578063a0bcfc7f146105ac578063a22cb465146105d5576101e3565b8063715018a6146104c05780637c8255db146104d75780637ff9b596146105005780638da5cb5b1461052b576101e3565b806323b872dd1161017a5780634b980d67116101495780634b980d67146103f05780636352211e1461041b5780636c0360eb1461045857806370a0823114610483576101e3565b806323b872dd1461035e57806324ac79ed146103875780633ccfd60b146103b057806342842e0e146103c7576101e3565b8063145e8cb6116101b6578063145e8cb6146102b6578063154b70b6146102df57806318160ddd1461030a5780631cef37e414610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612cbc565b610756565b60405161021c91906131e9565b60405180910390f35b34801561023157600080fd5b5061023a610838565b6040516102479190613204565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612d5f565b6108ca565b6040516102849190613182565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612c06565b61094f565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612c8f565b610a67565b005b3480156102eb57600080fd5b506102f4610b00565b60405161030191906131e9565b60405180910390f35b34801561031657600080fd5b5061031f610b13565b60405161032c91906134e6565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612c8f565b610b19565b005b34801561036a57600080fd5b5061038560048036038101906103809190612af0565b610bb2565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612d5f565b610c12565b005b3480156103bc57600080fd5b506103c5610c98565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612af0565b610e68565b005b3480156103fc57600080fd5b50610405610e88565b60405161041291906134e6565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612d5f565b610e8e565b60405161044f9190613182565b60405180910390f35b34801561046457600080fd5b5061046d610f40565b60405161047a9190613204565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612a83565b610fce565b6040516104b791906134e6565b60405180910390f35b3480156104cc57600080fd5b506104d5611086565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612c46565b61110e565b005b34801561050c57600080fd5b50610515611257565b60405161052291906134e6565b60405180910390f35b34801561053757600080fd5b5061054061125d565b60405161054d9190613182565b60405180910390f35b34801561056257600080fd5b5061056b611286565b6040516105789190613204565b60405180910390f35b34801561058d57600080fd5b50610596611318565b6040516105a391906131e9565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612d16565b61132b565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190612bc6565b6113c1565b005b34801561060a57600080fd5b50610613611542565b60405161062091906134e6565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190612b43565b611548565b005b34801561065e57600080fd5b5061067960048036038101906106749190612d5f565b6115aa565b6040516106869190613204565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612d5f565b611651565b005b6106d260048036038101906106cd9190612d5f565b6116d7565b005b6106ee60048036038101906106e99190612d5f565b6118b5565b005b3480156106fc57600080fd5b5061071760048036038101906107129190612ab0565b611a93565b60405161072491906131e9565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612a83565b611b27565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610831575061083082611c1f565b5b9050919050565b606060018054610847906137c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610873906137c2565b80156108c05780601f10610895576101008083540402835291602001916108c0565b820191906000526020600020905b8154815290600101906020018083116108a357829003601f168201915b5050505050905090565b60006108d582611c89565b610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906133a6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095a82610e8e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290613426565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ea611cf5565b73ffffffffffffffffffffffffffffffffffffffff161480610a195750610a1881610a13611cf5565b611a93565b5b610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90613306565b60405180910390fd5b610a628383611cfd565b505050565b610a6f611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610a8d61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada906133c6565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b600a60019054906101000a900460ff1681565b60085481565b610b21611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610b3f61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906133c6565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b610bc3610bbd611cf5565b82611db6565b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990613446565b60405180910390fd5b610c0d838383611e94565b505050565b610c1a611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610c3861125d565b73ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c85906133c6565b60405180910390fd5b8060098190555050565b610ca0611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610cbe61125d565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906133c6565b60405180910390fd5b6000479050610d2161125d565b73ffffffffffffffffffffffffffffffffffffffff166108fc6064604484610d49919061367e565b610d53919061364d565b9081150290604051600060405180830381858888f19350505050158015610d7e573d6000803e3d6000fd5b50737c60e48234ffc524993421885a1e8efcb4feb6eb73ffffffffffffffffffffffffffffffffffffffff166108fc6064601e84610dbc919061367e565b610dc6919061364d565b9081150290604051600060405180830381858888f19350505050158015610df1573d6000803e3d6000fd5b50732098145e7d5572828209f89fb972568b765605c773ffffffffffffffffffffffffffffffffffffffff166108fc6064600284610e2f919061367e565b610e39919061364d565b9081150290604051600060405180830381858888f19350505050158015610e64573d6000803e3d6000fd5b5050565b610e8383838360405180602001604052806000815250611548565b505050565b600c5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613346565b60405180910390fd5b80915050919050565b600b8054610f4d906137c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f79906137c2565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690613326565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61108e611cf5565b73ffffffffffffffffffffffffffffffffffffffff166110ac61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906133c6565b60405180910390fd5b61110c60006120f0565b565b611116611cf5565b73ffffffffffffffffffffffffffffffffffffffff1661113461125d565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611181906133c6565b60405180910390fd5b61270f815160085461119c91906135f7565b11156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613486565b60405180910390fd5b60005b8151811015611239576112268282815181106111ff576111fe61392c565b5b602002602001015182600160085461121791906135f7565b61122191906135f7565b6121b4565b808061123190613825565b9150506111e0565b5080516008600082825461124d91906135f7565b9250508190555050565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611295906137c2565b80601f01602080910402602001604051908101604052809291908181526020018280546112c1906137c2565b801561130e5780601f106112e35761010080835404028352916020019161130e565b820191906000526020600020905b8154815290600101906020018083116112f157829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b611333611cf5565b73ffffffffffffffffffffffffffffffffffffffff1661135161125d565b73ffffffffffffffffffffffffffffffffffffffff16146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906133c6565b60405180910390fd5b80600b90805190602001906113bd9291906127f9565b5050565b6113c9611cf5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e906132a6565b60405180910390fd5b8060066000611444611cf5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f1611cf5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153691906131e9565b60405180910390a35050565b60095481565b611559611553611cf5565b83611db6565b611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90613446565b60405180910390fd5b6115a4848484846121d2565b50505050565b60606115b582611c89565b6115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613406565b60405180910390fd5b60006115fe61222e565b9050600081511161161e5760405180602001604052806000815250611649565b80611628846122c0565b60405160200161163992919061315e565b6040516020818303038152906040525b915050919050565b611659611cf5565b73ffffffffffffffffffffffffffffffffffffffff1661167761125d565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906133c6565b60405180910390fd5b8060078190555050565b60011515600a60009054906101000a900460ff1615151461172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906134a6565b60405180910390fd5b60008111611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613466565b60405180910390fd5b600c548111156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906134c6565b60405180910390fd5b61270f816008546117c691906135f7565b1115611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613366565b60405180910390fd5b80600754611815919061367e565b341015611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906132e6565b60405180910390fd5b60005b81811015611898576118853382600160085461187691906135f7565b61188091906135f7565b6121b4565b808061189090613825565b91505061185a565b5080600860008282546118ab91906135f7565b9250508190555050565b60011515600a60019054906101000a900460ff1615151461190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906134a6565b60405180910390fd5b6000811161194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613466565b60405180910390fd5b600c54811115611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906134c6565b60405180910390fd5b600954816008546119a491906135f7565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613366565b60405180910390fd5b806007546119f3919061367e565b341015611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c906132e6565b60405180910390fd5b60005b81811015611a7657611a6333826001600854611a5491906135f7565b611a5e91906135f7565b6121b4565b8080611a6e90613825565b915050611a38565b508060086000828254611a8991906135f7565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2f611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611b4d61125d565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a906133c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613246565b60405180910390fd5b611c1c816120f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7083610e8e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dc182611c89565b611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df7906132c6565b60405180910390fd5b6000611e0b83610e8e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7a57508373ffffffffffffffffffffffffffffffffffffffff16611e62846108ca565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8b5750611e8a8185611a93565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb482610e8e565b73ffffffffffffffffffffffffffffffffffffffff1614611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f01906133e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613286565b60405180910390fd5b611f85838383612421565b611f90600082611cfd565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe091906136d8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203791906135f7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121ce828260405180602001604052806000815250612426565b5050565b6121dd848484611e94565b6121e984848484612481565b612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613226565b60405180910390fd5b50505050565b6060600b805461223d906137c2565b80601f0160208091040260200160405190810160405280929190818152602001828054612269906137c2565b80156122b65780601f1061228b576101008083540402835291602001916122b6565b820191906000526020600020905b81548152906001019060200180831161229957829003601f168201915b5050505050905090565b60606000821415612308576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061241c565b600082905060005b6000821461233a57808061232390613825565b915050600a82612333919061364d565b9150612310565b60008167ffffffffffffffff8111156123565761235561395b565b5b6040519080825280601f01601f1916602001820160405280156123885781602001600182028036833780820191505090505b5090505b60008514612415576001826123a191906136d8565b9150600a856123b0919061386e565b60306123bc91906135f7565b60f81b8183815181106123d2576123d161392c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561240e919061364d565b945061238c565b8093505050505b919050565b505050565b6124308383612618565b61243d6000848484612481565b61247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390613226565b60405180910390fd5b505050565b60006124a28473ffffffffffffffffffffffffffffffffffffffff166127e6565b1561260b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124cb611cf5565b8786866040518563ffffffff1660e01b81526004016124ed949392919061319d565b602060405180830381600087803b15801561250757600080fd5b505af192505050801561253857506040513d601f19601f820116820180604052508101906125359190612ce9565b60015b6125bb573d8060008114612568576040519150601f19603f3d011682016040523d82523d6000602084013e61256d565b606091505b506000815114156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613226565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612610565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613386565b60405180910390fd5b61269181611c89565b156126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890613266565b60405180910390fd5b6126dd60008383612421565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272d91906135f7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612805906137c2565b90600052602060002090601f016020900481019282612827576000855561286e565b82601f1061284057805160ff191683800117855561286e565b8280016001018555821561286e579182015b8281111561286d578251825591602001919060010190612852565b5b50905061287b919061287f565b5090565b5b80821115612898576000816000905550600101612880565b5090565b60006128af6128aa84613526565b613501565b905080838252602082019050828560208602820111156128d2576128d161398f565b5b60005b8581101561290257816128e88882612990565b8452602084019350602083019250506001810190506128d5565b5050509392505050565b600061291f61291a84613552565b613501565b90508281526020810184848401111561293b5761293a613994565b5b612946848285613780565b509392505050565b600061296161295c84613583565b613501565b90508281526020810184848401111561297d5761297c613994565b5b612988848285613780565b509392505050565b60008135905061299f81613f02565b92915050565b600082601f8301126129ba576129b961398a565b5b81356129ca84826020860161289c565b91505092915050565b6000813590506129e281613f19565b92915050565b6000813590506129f781613f30565b92915050565b600081519050612a0c81613f30565b92915050565b600082601f830112612a2757612a2661398a565b5b8135612a3784826020860161290c565b91505092915050565b600082601f830112612a5557612a5461398a565b5b8135612a6584826020860161294e565b91505092915050565b600081359050612a7d81613f47565b92915050565b600060208284031215612a9957612a9861399e565b5b6000612aa784828501612990565b91505092915050565b60008060408385031215612ac757612ac661399e565b5b6000612ad585828601612990565b9250506020612ae685828601612990565b9150509250929050565b600080600060608486031215612b0957612b0861399e565b5b6000612b1786828701612990565b9350506020612b2886828701612990565b9250506040612b3986828701612a6e565b9150509250925092565b60008060008060808587031215612b5d57612b5c61399e565b5b6000612b6b87828801612990565b9450506020612b7c87828801612990565b9350506040612b8d87828801612a6e565b925050606085013567ffffffffffffffff811115612bae57612bad613999565b5b612bba87828801612a12565b91505092959194509250565b60008060408385031215612bdd57612bdc61399e565b5b6000612beb85828601612990565b9250506020612bfc858286016129d3565b9150509250929050565b60008060408385031215612c1d57612c1c61399e565b5b6000612c2b85828601612990565b9250506020612c3c85828601612a6e565b9150509250929050565b600060208284031215612c5c57612c5b61399e565b5b600082013567ffffffffffffffff811115612c7a57612c79613999565b5b612c86848285016129a5565b91505092915050565b600060208284031215612ca557612ca461399e565b5b6000612cb3848285016129d3565b91505092915050565b600060208284031215612cd257612cd161399e565b5b6000612ce0848285016129e8565b91505092915050565b600060208284031215612cff57612cfe61399e565b5b6000612d0d848285016129fd565b91505092915050565b600060208284031215612d2c57612d2b61399e565b5b600082013567ffffffffffffffff811115612d4a57612d49613999565b5b612d5684828501612a40565b91505092915050565b600060208284031215612d7557612d7461399e565b5b6000612d8384828501612a6e565b91505092915050565b612d958161370c565b82525050565b612da48161371e565b82525050565b6000612db5826135b4565b612dbf81856135ca565b9350612dcf81856020860161378f565b612dd8816139a3565b840191505092915050565b6000612dee826135bf565b612df881856135db565b9350612e0881856020860161378f565b612e11816139a3565b840191505092915050565b6000612e27826135bf565b612e3181856135ec565b9350612e4181856020860161378f565b80840191505092915050565b6000612e5a6032836135db565b9150612e65826139b4565b604082019050919050565b6000612e7d6026836135db565b9150612e8882613a03565b604082019050919050565b6000612ea0601c836135db565b9150612eab82613a52565b602082019050919050565b6000612ec36024836135db565b9150612ece82613a7b565b604082019050919050565b6000612ee66019836135db565b9150612ef182613aca565b602082019050919050565b6000612f09602c836135db565b9150612f1482613af3565b604082019050919050565b6000612f2c6016836135db565b9150612f3782613b42565b602082019050919050565b6000612f4f6038836135db565b9150612f5a82613b6b565b604082019050919050565b6000612f72602a836135db565b9150612f7d82613bba565b604082019050919050565b6000612f956029836135db565b9150612fa082613c09565b604082019050919050565b6000612fb86016836135db565b9150612fc382613c58565b602082019050919050565b6000612fdb6020836135db565b9150612fe682613c81565b602082019050919050565b6000612ffe602c836135db565b915061300982613caa565b604082019050919050565b60006130216020836135db565b915061302c82613cf9565b602082019050919050565b60006130446029836135db565b915061304f82613d22565b604082019050919050565b6000613067602f836135db565b915061307282613d71565b604082019050919050565b600061308a6021836135db565b915061309582613dc0565b604082019050919050565b60006130ad6031836135db565b91506130b882613e0f565b604082019050919050565b60006130d06017836135db565b91506130db82613e5e565b602082019050919050565b60006130f36016836135db565b91506130fe82613e87565b602082019050919050565b6000613116600f836135db565b915061312182613eb0565b602082019050919050565b60006131396015836135db565b915061314482613ed9565b602082019050919050565b61315881613776565b82525050565b600061316a8285612e1c565b91506131768284612e1c565b91508190509392505050565b60006020820190506131976000830184612d8c565b92915050565b60006080820190506131b26000830187612d8c565b6131bf6020830186612d8c565b6131cc604083018561314f565b81810360608301526131de8184612daa565b905095945050505050565b60006020820190506131fe6000830184612d9b565b92915050565b6000602082019050818103600083015261321e8184612de3565b905092915050565b6000602082019050818103600083015261323f81612e4d565b9050919050565b6000602082019050818103600083015261325f81612e70565b9050919050565b6000602082019050818103600083015261327f81612e93565b9050919050565b6000602082019050818103600083015261329f81612eb6565b9050919050565b600060208201905081810360008301526132bf81612ed9565b9050919050565b600060208201905081810360008301526132df81612efc565b9050919050565b600060208201905081810360008301526132ff81612f1f565b9050919050565b6000602082019050818103600083015261331f81612f42565b9050919050565b6000602082019050818103600083015261333f81612f65565b9050919050565b6000602082019050818103600083015261335f81612f88565b9050919050565b6000602082019050818103600083015261337f81612fab565b9050919050565b6000602082019050818103600083015261339f81612fce565b9050919050565b600060208201905081810360008301526133bf81612ff1565b9050919050565b600060208201905081810360008301526133df81613014565b9050919050565b600060208201905081810360008301526133ff81613037565b9050919050565b6000602082019050818103600083015261341f8161305a565b9050919050565b6000602082019050818103600083015261343f8161307d565b9050919050565b6000602082019050818103600083015261345f816130a0565b9050919050565b6000602082019050818103600083015261347f816130c3565b9050919050565b6000602082019050818103600083015261349f816130e6565b9050919050565b600060208201905081810360008301526134bf81613109565b9050919050565b600060208201905081810360008301526134df8161312c565b9050919050565b60006020820190506134fb600083018461314f565b92915050565b600061350b61351c565b905061351782826137f4565b919050565b6000604051905090565b600067ffffffffffffffff8211156135415761354061395b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561356d5761356c61395b565b5b613576826139a3565b9050602081019050919050565b600067ffffffffffffffff82111561359e5761359d61395b565b5b6135a7826139a3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061360282613776565b915061360d83613776565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136425761364161389f565b5b828201905092915050565b600061365882613776565b915061366383613776565b925082613673576136726138ce565b5b828204905092915050565b600061368982613776565b915061369483613776565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136cd576136cc61389f565b5b828202905092915050565b60006136e382613776565b91506136ee83613776565b9250828210156137015761370061389f565b5b828203905092915050565b600061371782613756565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ad578082015181840152602081019050613792565b838111156137bc576000848401525b50505050565b600060028204905060018216806137da57607f821691505b602082108114156137ee576137ed6138fd565b5b50919050565b6137fd826139a3565b810181811067ffffffffffffffff8211171561381c5761381b61395b565b5b80604052505050565b600061383082613776565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138635761386261389f565b5b600182019050919050565b600061387982613776565b915061388483613776565b925082613894576138936138ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b7f6d617820706572207472616e73616374696f6e20350000000000000000000000600082015250565b613f0b8161370c565b8114613f1657600080fd5b50565b613f228161371e565b8114613f2d57600080fd5b50565b613f398161372a565b8114613f4457600080fd5b50565b613f5081613776565b8114613f5b57600080fd5b5056fea2646970667358221220bd2f4fbfc3a325ade036d2162397c192945355c5c8f137e591e286265c81766d64736f6c63430008070033

Deployed Bytecode Sourcemap

35056:2860:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22902:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23847:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25406:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24929:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37217:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35301:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35183:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37109:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26296:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37321:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37549:364;;;;;;;;;;;;;:::i;:::-;;26706:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35377:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23541:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35343:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23271:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14749:94;;;;;;;;;;;;;:::i;:::-;;36592:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35105:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14098:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24016:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35256:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37007:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25699:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35217:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26962:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24191:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36917:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35493:539;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36040:544;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26065:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14998:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22902:305;23004:4;23056:25;23041:40;;;:11;:40;;;;:105;;;;23113:33;23098:48;;;:11;:48;;;;23041:105;:158;;;;23163:36;23187:11;23163:23;:36::i;:::-;23041:158;23021:178;;22902:305;;;:::o;23847:100::-;23901:13;23934:5;23927:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23847:100;:::o;25406:221::-;25482:7;25510:16;25518:7;25510;:16::i;:::-;25502:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25595:15;:24;25611:7;25595:24;;;;;;;;;;;;;;;;;;;;;25588:31;;25406:221;;;:::o;24929:411::-;25010:13;25026:23;25041:7;25026:14;:23::i;:::-;25010:39;;25074:5;25068:11;;:2;:11;;;;25060:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25168:5;25152:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25177:37;25194:5;25201:12;:10;:12::i;:::-;25177:16;:37::i;:::-;25152:62;25130:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25311:21;25320:2;25324:7;25311:8;:21::i;:::-;24999:341;24929:411;;:::o;37217:95::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37300:4:::1;37282:15;;:22;;;;;;;;;;;;;;;;;;37217:95:::0;:::o;35301:35::-;;;;;;;;;;;;;:::o;35183:27::-;;;;:::o;37109:101::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37198:4:::1;37177:18;;:25;;;;;;;;;;;;;;;;;;37109:101:::0;:::o;26296:339::-;26491:41;26510:12;:10;:12::i;:::-;26524:7;26491:18;:41::i;:::-;26483:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26599:28;26609:4;26615:2;26619:7;26599:9;:28::i;:::-;26296:339;;;:::o;37321:100::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37409:4:::1;37393:13;:20;;;;37321:100:::0;:::o;37549:364::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37600:13:::1;37616:21;37600:37;;37656:7;:5;:7::i;:::-;37648:25;;:46;37690:3;37685:2;37674:8;:13;;;;:::i;:::-;:19;;;;:::i;:::-;37648:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37727:42;37719:60;;:81;37796:3;37791:2;37780:8;:13;;;;:::i;:::-;:19;;;;:::i;:::-;37719:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37827:42;37819:60;;:80;37895:3;37891:1;37880:8;:12;;;;:::i;:::-;:18;;;;:::i;:::-;37819:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37588:325;37549:364::o:0;26706:185::-;26844:39;26861:4;26867:2;26871:7;26844:39;;;;;;;;;;;;:16;:39::i;:::-;26706:185;;;:::o;35377:34::-;;;;:::o;23541:239::-;23613:7;23633:13;23649:7;:16;23657:7;23649:16;;;;;;;;;;;;;;;;;;;;;23633:32;;23701:1;23684:19;;:5;:19;;;;23676:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23767:5;23760:12;;;23541:239;;;:::o;35343:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23271:208::-;23343:7;23388:1;23371:19;;:5;:19;;;;23363:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23455:9;:16;23465:5;23455:16;;;;;;;;;;;;;;;;23448:23;;23271:208;;;:::o;14749:94::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14814:21:::1;14832:1;14814:9;:21::i;:::-;14749:94::o:0;36592:318::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35172:4:::1;36687:8;:15;36673:11;;:29;;;;:::i;:::-;:42;;36665:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;36757:6;36753:98;36773:8;:15;36769:1;:19;36753:98;;;36808:43;36818:8;36827:1;36818:11;;;;;;;;:::i;:::-;;;;;;;;36849:1;36845;36831:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;36808:9;:43::i;:::-;36790:3;;;;;:::i;:::-;;;;36753:98;;;;36877:8;:15;36862:11;;:30;;;;;;;:::i;:::-;;;;;;;;36592:318:::0;:::o;35105:34::-;;;;:::o;14098:87::-;14144:7;14171:6;;;;;;;;;;;14164:13;;14098:87;:::o;24016:104::-;24072:13;24105:7;24098:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24016:104;:::o;35256:38::-;;;;;;;;;;;;;:::o;37007:92::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37087:4:::1;37077:7;:14;;;;;;;;;;;;:::i;:::-;;37007:92:::0;:::o;25699:295::-;25814:12;:10;:12::i;:::-;25802:24;;:8;:24;;;;25794:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25914:8;25869:18;:32;25888:12;:10;:12::i;:::-;25869:32;;;;;;;;;;;;;;;:42;25902:8;25869:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25967:8;25938:48;;25953:12;:10;:12::i;:::-;25938:48;;;25977:8;25938:48;;;;;;:::i;:::-;;;;;;;;25699:295;;:::o;35217:32::-;;;;:::o;26962:328::-;27137:41;27156:12;:10;:12::i;:::-;27170:7;27137:18;:41::i;:::-;27129:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27243:39;27257:4;27263:2;27267:7;27276:5;27243:13;:39::i;:::-;26962:328;;;;:::o;24191:334::-;24264:13;24298:16;24306:7;24298;:16::i;:::-;24290:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24379:21;24403:10;:8;:10::i;:::-;24379:34;;24455:1;24437:7;24431:21;:25;:86;;;;;;;;;;;;;;;;;24483:7;24492:18;:7;:16;:18::i;:::-;24466:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24431:86;24424:93;;;24191:334;;;:::o;36917:84::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36989:4:::1;36976:10;:17;;;;36917:84:::0;:::o;35493:539::-;35573:4;35551:26;;:18;;;;;;;;;;;:26;;;35543:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;35625:1;35616:6;:10;35608:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35683:17;;35673:6;:27;;35665:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35172:4;35759:6;35745:11;;:20;;;;:::i;:::-;:33;;35737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35850:6;35837:10;;:19;;;;:::i;:::-;35824:9;:32;;35816:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35908:6;35904:88;35924:6;35920:1;:10;35904:88;;;35950:42;35960:10;35990:1;35986;35972:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35950:9;:42::i;:::-;35932:3;;;;;:::i;:::-;;;;35904:88;;;;36018:6;36003:11;;:21;;;;;;;:::i;:::-;;;;;;;;35493:539;:::o;36040:544::-;36121:4;36102:23;;:15;;;;;;;;;;;:23;;;36094:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36173:1;36164:6;:10;36156:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36231:17;;36221:6;:27;;36213:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36317:13;;36307:6;36293:11;;:20;;;;:::i;:::-;:37;;36285:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;36402:6;36389:10;;:19;;;;:::i;:::-;36376:9;:32;;36368:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36460:6;36456:88;36476:6;36472:1;:10;36456:88;;;36502:42;36512:10;36542:1;36538;36524:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;36502:9;:42::i;:::-;36484:3;;;;;:::i;:::-;;;;36456:88;;;;36570:6;36555:11;;:21;;;;;;;:::i;:::-;;;;;;;;36040:544;:::o;26065:164::-;26162:4;26186:18;:25;26205:5;26186:25;;;;;;;;;;;;;;;:35;26212:8;26186:35;;;;;;;;;;;;;;;;;;;;;;;;;26179:42;;26065:164;;;;:::o;14998:192::-;14329:12;:10;:12::i;:::-;14318:23;;:7;:5;:7::i;:::-;:23;;;14310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15107:1:::1;15087:22;;:8;:22;;;;15079:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15163:19;15173:8;15163:9;:19::i;:::-;14998:192:::0;:::o;16103:157::-;16188:4;16227:25;16212:40;;;:11;:40;;;;16205:47;;16103:157;;;:::o;28800:127::-;28865:4;28917:1;28889:30;;:7;:16;28897:7;28889:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28882:37;;28800:127;;;:::o;1238:98::-;1291:7;1318:10;1311:17;;1238:98;:::o;32782:174::-;32884:2;32857:15;:24;32873:7;32857:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32940:7;32936:2;32902:46;;32911:23;32926:7;32911:14;:23::i;:::-;32902:46;;;;;;;;;;;;32782:174;;:::o;29094:348::-;29187:4;29212:16;29220:7;29212;:16::i;:::-;29204:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29288:13;29304:23;29319:7;29304:14;:23::i;:::-;29288:39;;29357:5;29346:16;;:7;:16;;;:51;;;;29390:7;29366:31;;:20;29378:7;29366:11;:20::i;:::-;:31;;;29346:51;:87;;;;29401:32;29418:5;29425:7;29401:16;:32::i;:::-;29346:87;29338:96;;;29094:348;;;;:::o;32086:578::-;32245:4;32218:31;;:23;32233:7;32218:14;:23::i;:::-;:31;;;32210:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32328:1;32314:16;;:2;:16;;;;32306:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32384:39;32405:4;32411:2;32415:7;32384:20;:39::i;:::-;32488:29;32505:1;32509:7;32488:8;:29::i;:::-;32549:1;32530:9;:15;32540:4;32530:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32578:1;32561:9;:13;32571:2;32561:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32609:2;32590:7;:16;32598:7;32590:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32648:7;32644:2;32629:27;;32638:4;32629:27;;;;;;;;;;;;32086:578;;;:::o;15198:173::-;15254:16;15273:6;;;;;;;;;;;15254:25;;15299:8;15290:6;;:17;;;;;;;;;;;;;;;;;;15354:8;15323:40;;15344:8;15323:40;;;;;;;;;;;;15243:128;15198:173;:::o;29784:110::-;29860:26;29870:2;29874:7;29860:26;;;;;;;;;;;;:9;:26::i;:::-;29784:110;;:::o;28172:315::-;28329:28;28339:4;28345:2;28349:7;28329:9;:28::i;:::-;28376:48;28399:4;28405:2;28409:7;28418:5;28376:22;:48::i;:::-;28368:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28172:315;;;;:::o;37433:108::-;37493:13;37526:7;37519:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37433:108;:::o;1703:723::-;1759:13;1989:1;1980:5;:10;1976:53;;;2007:10;;;;;;;;;;;;;;;;;;;;;1976:53;2039:12;2054:5;2039:20;;2070:14;2095:78;2110:1;2102:4;:9;2095:78;;2128:8;;;;;:::i;:::-;;;;2159:2;2151:10;;;;;:::i;:::-;;;2095:78;;;2183:19;2215:6;2205:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2183:39;;2233:154;2249:1;2240:5;:10;2233:154;;2277:1;2267:11;;;;;:::i;:::-;;;2344:2;2336:5;:10;;;;:::i;:::-;2323:2;:24;;;;:::i;:::-;2310:39;;2293:6;2300;2293:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2373:2;2364:11;;;;;:::i;:::-;;;2233:154;;;2411:6;2397:21;;;;;1703:723;;;;:::o;34892:126::-;;;;:::o;30121:321::-;30251:18;30257:2;30261:7;30251:5;:18::i;:::-;30302:54;30333:1;30337:2;30341:7;30350:5;30302:22;:54::i;:::-;30280:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30121:321;;;:::o;33521:799::-;33676:4;33697:15;:2;:13;;;:15::i;:::-;33693:620;;;33749:2;33733:36;;;33770:12;:10;:12::i;:::-;33784:4;33790:7;33799:5;33733:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33729:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33992:1;33975:6;:13;:18;33971:272;;;34018:60;;;;;;;;;;:::i;:::-;;;;;;;;33971:272;34193:6;34187:13;34178:6;34174:2;34170:15;34163:38;33729:529;33866:41;;;33856:51;;;:6;:51;;;;33849:58;;;;;33693:620;34297:4;34290:11;;33521:799;;;;;;;:::o;30778:382::-;30872:1;30858:16;;:2;:16;;;;30850:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30931:16;30939:7;30931;:16::i;:::-;30930:17;30922:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30993:45;31022:1;31026:2;31030:7;30993:20;:45::i;:::-;31068:1;31051:9;:13;31061:2;31051:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31099:2;31080:7;:16;31088:7;31080:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31144:7;31140:2;31119:33;;31136:1;31119:33;;;;;;;;;;;;30778:382;;:::o;4168:387::-;4228:4;4436:12;4503:7;4491:20;4483:28;;4546:1;4539:4;:8;4532:15;;;4168:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:::-;15878:3;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15975:93;16064:3;15975:93;:::i;:::-;16093:2;16088:3;16084:12;16077:19;;15736:366;;;:::o;16108:::-;16250:3;16271:67;16335:2;16330:3;16271:67;:::i;:::-;16264:74;;16347:93;16436:3;16347:93;:::i;:::-;16465:2;16460:3;16456:12;16449:19;;16108:366;;;:::o;16480:::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:::-;16994:3;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17091:93;17180:3;17091:93;:::i;:::-;17209:2;17204:3;17200:12;17193:19;;16852:366;;;:::o;17224:::-;17366:3;17387:67;17451:2;17446:3;17387:67;:::i;:::-;17380:74;;17463:93;17552:3;17463:93;:::i;:::-;17581:2;17576:3;17572:12;17565:19;;17224:366;;;:::o;17596:::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:::-;18110:3;18131:67;18195:2;18190:3;18131:67;:::i;:::-;18124:74;;18207:93;18296:3;18207:93;:::i;:::-;18325:2;18320:3;18316:12;18309:19;;17968:366;;;:::o;18340:::-;18482:3;18503:67;18567:2;18562:3;18503:67;:::i;:::-;18496:74;;18579:93;18668:3;18579:93;:::i;:::-;18697:2;18692:3;18688:12;18681:19;;18340:366;;;:::o;18712:118::-;18799:24;18817:5;18799:24;:::i;:::-;18794:3;18787:37;18712:118;;:::o;18836:435::-;19016:3;19038:95;19129:3;19120:6;19038:95;:::i;:::-;19031:102;;19150:95;19241:3;19232:6;19150:95;:::i;:::-;19143:102;;19262:3;19255:10;;18836:435;;;;;:::o;19277:222::-;19370:4;19408:2;19397:9;19393:18;19385:26;;19421:71;19489:1;19478:9;19474:17;19465:6;19421:71;:::i;:::-;19277:222;;;;:::o;19505:640::-;19700:4;19738:3;19727:9;19723:19;19715:27;;19752:71;19820:1;19809:9;19805:17;19796:6;19752:71;:::i;:::-;19833:72;19901:2;19890:9;19886:18;19877:6;19833:72;:::i;:::-;19915;19983:2;19972:9;19968:18;19959:6;19915:72;:::i;:::-;20034:9;20028:4;20024:20;20019:2;20008:9;20004:18;19997:48;20062:76;20133:4;20124:6;20062:76;:::i;:::-;20054:84;;19505:640;;;;;;;:::o;20151:210::-;20238:4;20276:2;20265:9;20261:18;20253:26;;20289:65;20351:1;20340:9;20336:17;20327:6;20289:65;:::i;:::-;20151:210;;;;:::o;20367:313::-;20480:4;20518:2;20507:9;20503:18;20495:26;;20567:9;20561:4;20557:20;20553:1;20542:9;20538:17;20531:47;20595:78;20668:4;20659:6;20595:78;:::i;:::-;20587:86;;20367:313;;;;:::o;20686:419::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:131;21093:4;20967:131;:::i;:::-;20959:139;;20686:419;;;:::o;21111:::-;21277:4;21315:2;21304:9;21300:18;21292:26;;21364:9;21358:4;21354:20;21350:1;21339:9;21335:17;21328:47;21392:131;21518:4;21392:131;:::i;:::-;21384:139;;21111:419;;;:::o;21536:::-;21702:4;21740:2;21729:9;21725:18;21717:26;;21789:9;21783:4;21779:20;21775:1;21764:9;21760:17;21753:47;21817:131;21943:4;21817:131;:::i;:::-;21809:139;;21536:419;;;:::o;21961:::-;22127:4;22165:2;22154:9;22150:18;22142:26;;22214:9;22208:4;22204:20;22200:1;22189:9;22185:17;22178:47;22242:131;22368:4;22242:131;:::i;:::-;22234:139;;21961:419;;;:::o;22386:::-;22552:4;22590:2;22579:9;22575:18;22567:26;;22639:9;22633:4;22629:20;22625:1;22614:9;22610:17;22603:47;22667:131;22793:4;22667:131;:::i;:::-;22659:139;;22386:419;;;:::o;22811:::-;22977:4;23015:2;23004:9;23000:18;22992:26;;23064:9;23058:4;23054:20;23050:1;23039:9;23035:17;23028:47;23092:131;23218:4;23092:131;:::i;:::-;23084:139;;22811:419;;;:::o;23236:::-;23402:4;23440:2;23429:9;23425:18;23417:26;;23489:9;23483:4;23479:20;23475:1;23464:9;23460:17;23453:47;23517:131;23643:4;23517:131;:::i;:::-;23509:139;;23236:419;;;:::o;23661:::-;23827:4;23865:2;23854:9;23850:18;23842:26;;23914:9;23908:4;23904:20;23900:1;23889:9;23885:17;23878:47;23942:131;24068:4;23942:131;:::i;:::-;23934:139;;23661:419;;;:::o;24086:::-;24252:4;24290:2;24279:9;24275:18;24267:26;;24339:9;24333:4;24329:20;24325:1;24314:9;24310:17;24303:47;24367:131;24493:4;24367:131;:::i;:::-;24359:139;;24086:419;;;:::o;24511:::-;24677:4;24715:2;24704:9;24700:18;24692:26;;24764:9;24758:4;24754:20;24750:1;24739:9;24735:17;24728:47;24792:131;24918:4;24792:131;:::i;:::-;24784:139;;24511:419;;;:::o;24936:::-;25102:4;25140:2;25129:9;25125:18;25117:26;;25189:9;25183:4;25179:20;25175:1;25164:9;25160:17;25153:47;25217:131;25343:4;25217:131;:::i;:::-;25209:139;;24936:419;;;:::o;25361:::-;25527:4;25565:2;25554:9;25550:18;25542:26;;25614:9;25608:4;25604:20;25600:1;25589:9;25585:17;25578:47;25642:131;25768:4;25642:131;:::i;:::-;25634:139;;25361:419;;;:::o;25786:::-;25952:4;25990:2;25979:9;25975:18;25967:26;;26039:9;26033:4;26029:20;26025:1;26014:9;26010:17;26003:47;26067:131;26193:4;26067:131;:::i;:::-;26059:139;;25786:419;;;:::o;26211:::-;26377:4;26415:2;26404:9;26400:18;26392:26;;26464:9;26458:4;26454:20;26450:1;26439:9;26435:17;26428:47;26492:131;26618:4;26492:131;:::i;:::-;26484:139;;26211:419;;;:::o;26636:::-;26802:4;26840:2;26829:9;26825:18;26817:26;;26889:9;26883:4;26879:20;26875:1;26864:9;26860:17;26853:47;26917:131;27043:4;26917:131;:::i;:::-;26909:139;;26636:419;;;:::o;27061:::-;27227:4;27265:2;27254:9;27250:18;27242:26;;27314:9;27308:4;27304:20;27300:1;27289:9;27285:17;27278:47;27342:131;27468:4;27342:131;:::i;:::-;27334:139;;27061:419;;;:::o;27486:::-;27652:4;27690:2;27679:9;27675:18;27667:26;;27739:9;27733:4;27729:20;27725:1;27714:9;27710:17;27703:47;27767:131;27893:4;27767:131;:::i;:::-;27759:139;;27486:419;;;:::o;27911:::-;28077:4;28115:2;28104:9;28100:18;28092:26;;28164:9;28158:4;28154:20;28150:1;28139:9;28135:17;28128:47;28192:131;28318:4;28192:131;:::i;:::-;28184:139;;27911:419;;;:::o;28336:::-;28502:4;28540:2;28529:9;28525:18;28517:26;;28589:9;28583:4;28579:20;28575:1;28564:9;28560:17;28553:47;28617:131;28743:4;28617:131;:::i;:::-;28609:139;;28336:419;;;:::o;28761:::-;28927:4;28965:2;28954:9;28950:18;28942:26;;29014:9;29008:4;29004:20;29000:1;28989:9;28985:17;28978:47;29042:131;29168:4;29042:131;:::i;:::-;29034:139;;28761:419;;;:::o;29186:::-;29352:4;29390:2;29379:9;29375:18;29367:26;;29439:9;29433:4;29429:20;29425:1;29414:9;29410:17;29403:47;29467:131;29593:4;29467:131;:::i;:::-;29459:139;;29186:419;;;:::o;29611:::-;29777:4;29815:2;29804:9;29800:18;29792:26;;29864:9;29858:4;29854:20;29850:1;29839:9;29835:17;29828:47;29892:131;30018:4;29892:131;:::i;:::-;29884:139;;29611:419;;;:::o;30036:222::-;30129:4;30167:2;30156:9;30152:18;30144:26;;30180:71;30248:1;30237:9;30233:17;30224:6;30180:71;:::i;:::-;30036:222;;;;:::o;30264:129::-;30298:6;30325:20;;:::i;:::-;30315:30;;30354:33;30382:4;30374:6;30354:33;:::i;:::-;30264:129;;;:::o;30399:75::-;30432:6;30465:2;30459:9;30449:19;;30399:75;:::o;30480:311::-;30557:4;30647:18;30639:6;30636:30;30633:56;;;30669:18;;:::i;:::-;30633:56;30719:4;30711:6;30707:17;30699:25;;30779:4;30773;30769:15;30761:23;;30480:311;;;:::o;30797:307::-;30858:4;30948:18;30940:6;30937:30;30934:56;;;30970:18;;:::i;:::-;30934:56;31008:29;31030:6;31008:29;:::i;:::-;31000:37;;31092:4;31086;31082:15;31074:23;;30797:307;;;:::o;31110:308::-;31172:4;31262:18;31254:6;31251:30;31248:56;;;31284:18;;:::i;:::-;31248:56;31322:29;31344:6;31322:29;:::i;:::-;31314:37;;31406:4;31400;31396:15;31388:23;;31110:308;;;:::o;31424:98::-;31475:6;31509:5;31503:12;31493:22;;31424:98;;;:::o;31528:99::-;31580:6;31614:5;31608:12;31598:22;;31528:99;;;:::o;31633:168::-;31716:11;31750:6;31745:3;31738:19;31790:4;31785:3;31781:14;31766:29;;31633:168;;;;:::o;31807:169::-;31891:11;31925:6;31920:3;31913:19;31965:4;31960:3;31956:14;31941:29;;31807:169;;;;:::o;31982:148::-;32084:11;32121:3;32106:18;;31982:148;;;;:::o;32136:305::-;32176:3;32195:20;32213:1;32195:20;:::i;:::-;32190:25;;32229:20;32247:1;32229:20;:::i;:::-;32224:25;;32383:1;32315:66;32311:74;32308:1;32305:81;32302:107;;;32389:18;;:::i;:::-;32302:107;32433:1;32430;32426:9;32419:16;;32136:305;;;;:::o;32447:185::-;32487:1;32504:20;32522:1;32504:20;:::i;:::-;32499:25;;32538:20;32556:1;32538:20;:::i;:::-;32533:25;;32577:1;32567:35;;32582:18;;:::i;:::-;32567:35;32624:1;32621;32617:9;32612:14;;32447:185;;;;:::o;32638:348::-;32678:7;32701:20;32719:1;32701:20;:::i;:::-;32696:25;;32735:20;32753:1;32735:20;:::i;:::-;32730:25;;32923:1;32855:66;32851:74;32848:1;32845:81;32840:1;32833:9;32826:17;32822:105;32819:131;;;32930:18;;:::i;:::-;32819:131;32978:1;32975;32971:9;32960:20;;32638:348;;;;:::o;32992:191::-;33032:4;33052:20;33070:1;33052:20;:::i;:::-;33047:25;;33086:20;33104:1;33086:20;:::i;:::-;33081:25;;33125:1;33122;33119:8;33116:34;;;33130:18;;:::i;:::-;33116:34;33175:1;33172;33168:9;33160:17;;32992:191;;;;:::o;33189:96::-;33226:7;33255:24;33273:5;33255:24;:::i;:::-;33244:35;;33189:96;;;:::o;33291:90::-;33325:7;33368:5;33361:13;33354:21;33343:32;;33291:90;;;:::o;33387:149::-;33423:7;33463:66;33456:5;33452:78;33441:89;;33387:149;;;:::o;33542:126::-;33579:7;33619:42;33612:5;33608:54;33597:65;;33542:126;;;:::o;33674:77::-;33711:7;33740:5;33729:16;;33674:77;;;:::o;33757:154::-;33841:6;33836:3;33831;33818:30;33903:1;33894:6;33889:3;33885:16;33878:27;33757:154;;;:::o;33917:307::-;33985:1;33995:113;34009:6;34006:1;34003:13;33995:113;;;34094:1;34089:3;34085:11;34079:18;34075:1;34070:3;34066:11;34059:39;34031:2;34028:1;34024:10;34019:15;;33995:113;;;34126:6;34123:1;34120:13;34117:101;;;34206:1;34197:6;34192:3;34188:16;34181:27;34117:101;33966:258;33917:307;;;:::o;34230:320::-;34274:6;34311:1;34305:4;34301:12;34291:22;;34358:1;34352:4;34348:12;34379:18;34369:81;;34435:4;34427:6;34423:17;34413:27;;34369:81;34497:2;34489:6;34486:14;34466:18;34463:38;34460:84;;;34516:18;;:::i;:::-;34460:84;34281:269;34230:320;;;:::o;34556:281::-;34639:27;34661:4;34639:27;:::i;:::-;34631:6;34627:40;34769:6;34757:10;34754:22;34733:18;34721:10;34718:34;34715:62;34712:88;;;34780:18;;:::i;:::-;34712:88;34820:10;34816:2;34809:22;34599:238;34556:281;;:::o;34843:233::-;34882:3;34905:24;34923:5;34905:24;:::i;:::-;34896:33;;34951:66;34944:5;34941:77;34938:103;;;35021:18;;:::i;:::-;34938:103;35068:1;35061:5;35057:13;35050:20;;34843:233;;;:::o;35082:176::-;35114:1;35131:20;35149:1;35131:20;:::i;:::-;35126:25;;35165:20;35183:1;35165:20;:::i;:::-;35160:25;;35204:1;35194:35;;35209:18;;:::i;:::-;35194:35;35250:1;35247;35243:9;35238:14;;35082:176;;;;:::o;35264:180::-;35312:77;35309:1;35302:88;35409:4;35406:1;35399:15;35433:4;35430:1;35423:15;35450:180;35498:77;35495:1;35488:88;35595:4;35592:1;35585:15;35619:4;35616:1;35609:15;35636:180;35684:77;35681:1;35674:88;35781:4;35778:1;35771:15;35805:4;35802:1;35795:15;35822:180;35870:77;35867:1;35860:88;35967:4;35964:1;35957:15;35991:4;35988:1;35981:15;36008:180;36056:77;36053:1;36046:88;36153:4;36150:1;36143:15;36177:4;36174:1;36167:15;36194:117;36303:1;36300;36293:12;36317:117;36426:1;36423;36416:12;36440:117;36549:1;36546;36539:12;36563:117;36672:1;36669;36662:12;36686:117;36795:1;36792;36785:12;36809:102;36850:6;36901:2;36897:7;36892:2;36885:5;36881:14;36877:28;36867:38;;36809:102;;;:::o;36917:237::-;37057:34;37053:1;37045:6;37041:14;37034:58;37126:20;37121:2;37113:6;37109:15;37102:45;36917:237;:::o;37160:225::-;37300:34;37296:1;37288:6;37284:14;37277:58;37369:8;37364:2;37356:6;37352:15;37345:33;37160:225;:::o;37391:178::-;37531:30;37527:1;37519:6;37515:14;37508:54;37391:178;:::o;37575:223::-;37715:34;37711:1;37703:6;37699:14;37692:58;37784:6;37779:2;37771:6;37767:15;37760:31;37575:223;:::o;37804:175::-;37944:27;37940:1;37932:6;37928:14;37921:51;37804:175;:::o;37985:231::-;38125:34;38121:1;38113:6;38109:14;38102:58;38194:14;38189:2;38181:6;38177:15;38170:39;37985:231;:::o;38222:172::-;38362:24;38358:1;38350:6;38346:14;38339:48;38222:172;:::o;38400:243::-;38540:34;38536:1;38528:6;38524:14;38517:58;38609:26;38604:2;38596:6;38592:15;38585:51;38400:243;:::o;38649:229::-;38789:34;38785:1;38777:6;38773:14;38766:58;38858:12;38853:2;38845:6;38841:15;38834:37;38649:229;:::o;38884:228::-;39024:34;39020:1;39012:6;39008:14;39001:58;39093:11;39088:2;39080:6;39076:15;39069:36;38884:228;:::o;39118:172::-;39258:24;39254:1;39246:6;39242:14;39235:48;39118:172;:::o;39296:182::-;39436:34;39432:1;39424:6;39420:14;39413:58;39296:182;:::o;39484:231::-;39624:34;39620:1;39612:6;39608:14;39601:58;39693:14;39688:2;39680:6;39676:15;39669:39;39484:231;:::o;39721:182::-;39861:34;39857:1;39849:6;39845:14;39838:58;39721:182;:::o;39909:228::-;40049:34;40045:1;40037:6;40033:14;40026:58;40118:11;40113:2;40105:6;40101:15;40094:36;39909:228;:::o;40143:234::-;40283:34;40279:1;40271:6;40267:14;40260:58;40352:17;40347:2;40339:6;40335:15;40328:42;40143:234;:::o;40383:220::-;40523:34;40519:1;40511:6;40507:14;40500:58;40592:3;40587:2;40579:6;40575:15;40568:28;40383:220;:::o;40609:236::-;40749:34;40745:1;40737:6;40733:14;40726:58;40818:19;40813:2;40805:6;40801:15;40794:44;40609:236;:::o;40851:173::-;40991:25;40987:1;40979:6;40975:14;40968:49;40851:173;:::o;41030:172::-;41170:24;41166:1;41158:6;41154:14;41147:48;41030:172;:::o;41208:165::-;41348:17;41344:1;41336:6;41332:14;41325:41;41208:165;:::o;41379:171::-;41519:23;41515:1;41507:6;41503:14;41496:47;41379:171;:::o;41556:122::-;41629:24;41647:5;41629:24;:::i;:::-;41622:5;41619:35;41609:63;;41668:1;41665;41658:12;41609:63;41556:122;:::o;41684:116::-;41754:21;41769:5;41754:21;:::i;:::-;41747:5;41744:32;41734:60;;41790:1;41787;41780:12;41734:60;41684:116;:::o;41806:120::-;41878:23;41895:5;41878:23;:::i;:::-;41871:5;41868:34;41858:62;;41916:1;41913;41906:12;41858:62;41806:120;:::o;41932:122::-;42005:24;42023:5;42005:24;:::i;:::-;41998:5;41995:35;41985:63;;42044:1;42041;42034:12;41985:63;41932:122;:::o

Swarm Source

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