ETH Price: $3,360.89 (-1.63%)
Gas: 8 Gwei

Token

Halloween Bears (HB)
 

Overview

Max Total Supply

9,500 HB

Holders

264

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 HB
0xaBF107de3E01c7c257e64E0a18d60A733Aad395d
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-13
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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




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

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




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

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

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

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

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













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

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

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

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

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

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

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

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

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

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

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

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





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







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

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

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





/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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









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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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





/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 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);
    }
}





// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}





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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


contract NFT is ERC721, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;
  using SafeMath for uint256;
  Counters.Counter private _tokenIds;
  uint256 private _mintCost;
  uint256 private _maxSupply;
  bool private _isPublicMintEnabled;
  
  /**
  * @dev Initializes the contract setting the `tokenName` and `symbol` of the nft, `cost` of each mint call, and maximum `supply` of the nft.
  * Note: `cost` is in wei. 
  */
  constructor(string memory tokenName, string memory symbol, uint256 cost, uint256 supply) ERC721(tokenName, symbol) Ownable() {
    _mintCost = cost;
    _maxSupply = supply;
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Changes contract state to enable public access to `mintTokens` function
  * Can only be called by the current owner.
  */
  function allowPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = true;
  }

  /**
  * @dev Changes contract state to disable public access to `mintTokens` function
  * Can only be called by the current owner.
  */
  function denyPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Mint `count` tokens if requirements are satisfied.
  * 
  */
  function mintTokens(uint256 count)
  public
  payable
  nonReentrant{
    require(_isPublicMintEnabled, "Mint disabled");
    require(count > 0 && count <= 100, "You can drop minimum 1, maximum 100 NFTs");
    require(count.add(_tokenIds.current()) < _maxSupply, "Exceeds max supply");
    require(owner() == msg.sender || msg.value >= _mintCost.mul(count),
           "Ether value sent is below the price");
    for(uint i=0; i<count; i++){
        _mint(msg.sender);
     }
  }

  /**
  * @dev Mint a token to each Address of `recipients`.
  * Can only be called if requirements are satisfied.
  */
  function mintTokens(address[] calldata recipients)
  public
  payable
  nonReentrant{
    require(recipients.length>0,"Missing recipient addresses");
    require(owner() == msg.sender || _isPublicMintEnabled, "Mint disabled");
    require(recipients.length > 0 && recipients.length <= 100, "You can drop minimum 1, maximum 100 NFTs");
    require(recipients.length.add(_tokenIds.current()) < _maxSupply, "Exceeds max supply");
    require(owner() == msg.sender || msg.value >= _mintCost.mul(recipients.length),
           "Ether value sent is below the price");
    for(uint i=0; i<recipients.length; i++){
        _mint(recipients[i]);
     }
  }

  /**
  * @dev Update the cost to mint a token.
  * Can only be called by the current owner.
  */
  function setCost(uint256 cost) public onlyOwner{
    _mintCost = cost;
  }

  /**
  * @dev Update the max supply.
  * Can only be called by the current owner.
  */
  function setMaxSupply(uint256 max) public onlyOwner{
    _maxSupply = max;
  }

  /**
  * @dev Transfers contract balance to contract owner.
  * Can only be called by the current owner.
  */
  function withdraw() public onlyOwner{
    payable(owner()).transfer(address(this).balance);
  }

  /**
  * @dev Used by public mint functions and by owner functions.
  * Can only be called internally by other functions.
  */
  function _mint(address to) internal virtual returns (uint256){
    _tokenIds.increment();
    uint256 id = _tokenIds.current();
    _safeMint(to, id);

    return id;
  }

  function getCost() public view returns (uint256){
    return _mintCost;
  }
  function totalSupply() public view returns (uint256){
    return _maxSupply;
  }
  function getCurrentSupply() public view returns (uint256){
    return _tokenIds.current();
  }
  function getMintStatus() public view returns (bool) {
    return _isPublicMintEnabled;
  }
  function _baseURI() override internal pure returns (string memory) {
    return "https://mw9spidhbc.execute-api.us-east-1.amazonaws.com/dev/token/halloween-bears/";
  }
  function contractURI() public pure returns (string memory) {
    return "https://mw9spidhbc.execute-api.us-east-1.amazonaws.com/dev/contract/halloween-bears";
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"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":[],"name":"allowPublicMint","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"denyPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60806040523480156200001157600080fd5b506040516200408b3803806200408b8339818101604052810190620000379190620002db565b838381600090805190602001906200005192919062000196565b5080600190805190602001906200006a92919062000196565b5050506200008d62000081620000c860201b60201c565b620000d060201b60201c565b60016007819055508160098190555080600a819055506000600b60006101000a81548160ff0219169083151502179055505050505062000533565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a4906200042a565b90600052602060002090601f016020900481019282620001c8576000855562000214565b82601f10620001e357805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000213578251825591602001919060010190620001f6565b5b50905062000223919062000227565b5090565b5b808211156200024257600081600090555060010162000228565b5090565b60006200025d6200025784620003b4565b6200038b565b9050828152602081018484840111156200027c576200027b620004f9565b5b62000289848285620003f4565b509392505050565b600082601f830112620002a957620002a8620004f4565b5b8151620002bb84826020860162000246565b91505092915050565b600081519050620002d58162000519565b92915050565b60008060008060808587031215620002f857620002f762000503565b5b600085015167ffffffffffffffff811115620003195762000318620004fe565b5b620003278782880162000291565b945050602085015167ffffffffffffffff8111156200034b576200034a620004fe565b5b620003598782880162000291565b93505060406200036c87828801620002c4565b92505060606200037f87828801620002c4565b91505092959194509250565b600062000397620003aa565b9050620003a5828262000460565b919050565b6000604051905090565b600067ffffffffffffffff821115620003d257620003d1620004c5565b5b620003dd8262000508565b9050602081019050919050565b6000819050919050565b60005b8381101562000414578082015181840152602081019050620003f7565b8381111562000424576000848401525b50505050565b600060028204905060018216806200044357607f821691505b602082108114156200045a576200045962000496565b5b50919050565b6200046b8262000508565b810181811067ffffffffffffffff821117156200048d576200048c620004c5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200052481620003ea565b81146200053057600080fd5b50565b613b4880620005436000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610590578063e8a3d485146105cd578063e985e9c5146105f8578063f2fde38b14610635576101b7565b8063a22cb46514610513578063b88d4fde1461053c578063bd3e19d414610565576101b7565b8063941ada0e116100c6578063941ada0e1461048a57806395d89b41146104b557806397304ced146104e05780639edcc310146104fc576101b7565b806370a082311461040b578063715018a6146104485780638da5cb5b1461045f576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a146103515780634f3e1efc1461037a5780636352211e146103a55780636f8b44b0146103e2576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610328576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612821565b61065e565b6040516101f09190612d05565b60405180910390f35b34801561020557600080fd5b5061020e610740565b60405161021b9190612d20565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061287b565b6107d2565b6040516102589190612c9e565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612794565b610857565b005b34801561029657600080fd5b5061029f61096f565b6040516102ac9190613002565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061267e565b610979565b005b3480156102ea57600080fd5b506102f36109d9565b005b34801561030157600080fd5b5061030a610a72565b005b610326600480360381019061032191906127d4565b610b3e565b005b34801561033457600080fd5b5061034f600480360381019061034a919061267e565b610e0c565b005b34801561035d57600080fd5b506103786004803603810190610373919061287b565b610e2c565b005b34801561038657600080fd5b5061038f610eb2565b60405161039c9190613002565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c7919061287b565b610ec3565b6040516103d99190612c9e565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061287b565b610f75565b005b34801561041757600080fd5b50610432600480360381019061042d9190612611565b610ffb565b60405161043f9190613002565b60405180910390f35b34801561045457600080fd5b5061045d6110b3565b005b34801561046b57600080fd5b5061047461113b565b6040516104819190612c9e565b60405180910390f35b34801561049657600080fd5b5061049f611165565b6040516104ac9190612d05565b60405180910390f35b3480156104c157600080fd5b506104ca61117c565b6040516104d79190612d20565b60405180910390f35b6104fa60048036038101906104f5919061287b565b61120e565b005b34801561050857600080fd5b50610511611422565b005b34801561051f57600080fd5b5061053a60048036038101906105359190612754565b6114bb565b005b34801561054857600080fd5b50610563600480360381019061055e91906126d1565b61163c565b005b34801561057157600080fd5b5061057a61169e565b6040516105879190613002565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061287b565b6116a8565b6040516105c49190612d20565b60405180910390f35b3480156105d957600080fd5b506105e261174f565b6040516105ef9190612d20565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061263e565b61176f565b60405161062c9190612d05565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612611565b611803565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107395750610738826118fb565b5b9050919050565b60606000805461074f90613281565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613281565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd82611965565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612ee2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612f62565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26119d1565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b6119d1565b61176f565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612e02565b60405180910390fd5b61096a83836119d9565b505050565b6000600a54905090565b61098a6109846119d1565b82611a92565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612fa2565b60405180910390fd5b6109d4838383611b70565b505050565b6109e16119d1565b73ffffffffffffffffffffffffffffffffffffffff166109ff61113b565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612f02565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a7a6119d1565b73ffffffffffffffffffffffffffffffffffffffff16610a9861113b565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612f02565b60405180910390fd5b610af661113b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b3b573d6000803e3d6000fd5b50565b60026007541415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90612fe2565b60405180910390fd5b600260078190555060008282905011610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990612f82565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610bf161113b565b73ffffffffffffffffffffffffffffffffffffffff161480610c1f5750600b60009054906101000a900460ff165b610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590612fc2565b60405180910390fd5b600082829050118015610c75575060648282905011155b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612e22565b60405180910390fd5b600a54610cd6610cc46008611dcc565b84849050611dda90919063ffffffff16565b10610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90612e82565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610d3561113b565b73ffffffffffffffffffffffffffffffffffffffff161480610d6e5750610d6a82829050600954611df090919063ffffffff16565b3410155b610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612ea2565b60405180910390fd5b60005b82829050811015610dff57610deb838383818110610dd157610dd06133eb565b5b9050602002016020810190610de69190612611565b611e06565b508080610df7906132e4565b915050610db0565b5060016007819055505050565b610e278383836040518060200160405280600081525061163c565b505050565b610e346119d1565b73ffffffffffffffffffffffffffffffffffffffff16610e5261113b565b73ffffffffffffffffffffffffffffffffffffffff1614610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612f02565b60405180910390fd5b8060098190555050565b6000610ebe6008611dcc565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390612e62565b60405180910390fd5b80915050919050565b610f7d6119d1565b73ffffffffffffffffffffffffffffffffffffffff16610f9b61113b565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612f02565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612e42565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110bb6119d1565b73ffffffffffffffffffffffffffffffffffffffff166110d961113b565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690612f02565b60405180910390fd5b6111396000611e33565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b60606001805461118b90613281565b80601f01602080910402602001604051908101604052809291908181526020018280546111b790613281565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b5050505050905090565b60026007541415611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90612fe2565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290612fc2565b60405180910390fd5b6000811180156112bc575060648111155b6112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612e22565b60405180910390fd5b600a5461131a61130b6008611dcc565b83611dda90919063ffffffff16565b1061135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612e82565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661137961113b565b73ffffffffffffffffffffffffffffffffffffffff1614806113af57506113ab81600954611df090919063ffffffff16565b3410155b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590612ea2565b60405180910390fd5b60005b818110156114165761140233611e06565b50808061140e906132e4565b9150506113f1565b50600160078190555050565b61142a6119d1565b73ffffffffffffffffffffffffffffffffffffffff1661144861113b565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590612f02565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6114c36119d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890612dc2565b60405180910390fd5b806005600061153e6119d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115eb6119d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116309190612d05565b60405180910390a35050565b61164d6116476119d1565b83611a92565b61168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390612fa2565b60405180910390fd5b61169884848484611ef9565b50505050565b6000600954905090565b60606116b382611965565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612f42565b60405180910390fd5b60006116fc611f55565b9050600081511161171c5760405180602001604052806000815250611747565b8061172684611f75565b604051602001611737929190612c7a565b6040516020818303038152906040525b915050919050565b6060604051806080016040528060538152602001613ac060539139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61180b6119d1565b73ffffffffffffffffffffffffffffffffffffffff1661182961113b565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690612f02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612d62565b60405180910390fd5b6118f881611e33565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a4c83610ec3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a9d82611965565b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390612de2565b60405180910390fd5b6000611ae783610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5657508373ffffffffffffffffffffffffffffffffffffffff16611b3e846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b675750611b66818561176f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b9082610ec3565b73ffffffffffffffffffffffffffffffffffffffff1614611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612f22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90612da2565b60405180910390fd5b611c618383836120d6565b611c6c6000826119d9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbc9190613197565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1391906130b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60008183611de891906130b6565b905092915050565b60008183611dfe919061313d565b905092915050565b6000611e1260086120db565b6000611e1e6008611dcc565b9050611e2a83826120f1565b80915050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f04848484611b70565b611f108484848461210f565b611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690612d42565b60405180910390fd5b50505050565b6060604051806080016040528060518152602001613a6f60519139905090565b60606000821415611fbd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120d1565b600082905060005b60008214611fef578080611fd8906132e4565b915050600a82611fe8919061310c565b9150611fc5565b60008167ffffffffffffffff81111561200b5761200a61341a565b5b6040519080825280601f01601f19166020018201604052801561203d5781602001600182028036833780820191505090505b5090505b600085146120ca576001826120569190613197565b9150600a85612065919061332d565b603061207191906130b6565b60f81b818381518110612087576120866133eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120c3919061310c565b9450612041565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b61210b8282604051806020016040528060008152506122a6565b5050565b60006121308473ffffffffffffffffffffffffffffffffffffffff16612301565b15612299578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121596119d1565b8786866040518563ffffffff1660e01b815260040161217b9493929190612cb9565b602060405180830381600087803b15801561219557600080fd5b505af19250505080156121c657506040513d601f19601f820116820180604052508101906121c3919061284e565b60015b612249573d80600081146121f6576040519150601f19603f3d011682016040523d82523d6000602084013e6121fb565b606091505b50600081511415612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890612d42565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061229e565b600190505b949350505050565b6122b08383612314565b6122bd600084848461210f565b6122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390612d42565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90612ec2565b60405180910390fd5b61238d81611965565b156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490612d82565b60405180910390fd5b6123d9600083836120d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242991906130b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006124f56124f084613042565b61301d565b90508281526020810184848401111561251157612510613458565b5b61251c84828561323f565b509392505050565b60008135905061253381613a12565b92915050565b60008083601f84011261254f5761254e61344e565b5b8235905067ffffffffffffffff81111561256c5761256b613449565b5b60208301915083602082028301111561258857612587613453565b5b9250929050565b60008135905061259e81613a29565b92915050565b6000813590506125b381613a40565b92915050565b6000815190506125c881613a40565b92915050565b600082601f8301126125e3576125e261344e565b5b81356125f38482602086016124e2565b91505092915050565b60008135905061260b81613a57565b92915050565b60006020828403121561262757612626613462565b5b600061263584828501612524565b91505092915050565b6000806040838503121561265557612654613462565b5b600061266385828601612524565b925050602061267485828601612524565b9150509250929050565b60008060006060848603121561269757612696613462565b5b60006126a586828701612524565b93505060206126b686828701612524565b92505060406126c7868287016125fc565b9150509250925092565b600080600080608085870312156126eb576126ea613462565b5b60006126f987828801612524565b945050602061270a87828801612524565b935050604061271b878288016125fc565b925050606085013567ffffffffffffffff81111561273c5761273b61345d565b5b612748878288016125ce565b91505092959194509250565b6000806040838503121561276b5761276a613462565b5b600061277985828601612524565b925050602061278a8582860161258f565b9150509250929050565b600080604083850312156127ab576127aa613462565b5b60006127b985828601612524565b92505060206127ca858286016125fc565b9150509250929050565b600080602083850312156127eb576127ea613462565b5b600083013567ffffffffffffffff8111156128095761280861345d565b5b61281585828601612539565b92509250509250929050565b60006020828403121561283757612836613462565b5b6000612845848285016125a4565b91505092915050565b60006020828403121561286457612863613462565b5b6000612872848285016125b9565b91505092915050565b60006020828403121561289157612890613462565b5b600061289f848285016125fc565b91505092915050565b6128b1816131cb565b82525050565b6128c0816131dd565b82525050565b60006128d182613073565b6128db8185613089565b93506128eb81856020860161324e565b6128f481613467565b840191505092915050565b600061290a8261307e565b612914818561309a565b935061292481856020860161324e565b61292d81613467565b840191505092915050565b60006129438261307e565b61294d81856130ab565b935061295d81856020860161324e565b80840191505092915050565b600061297660328361309a565b915061298182613478565b604082019050919050565b600061299960268361309a565b91506129a4826134c7565b604082019050919050565b60006129bc601c8361309a565b91506129c782613516565b602082019050919050565b60006129df60248361309a565b91506129ea8261353f565b604082019050919050565b6000612a0260198361309a565b9150612a0d8261358e565b602082019050919050565b6000612a25602c8361309a565b9150612a30826135b7565b604082019050919050565b6000612a4860388361309a565b9150612a5382613606565b604082019050919050565b6000612a6b60288361309a565b9150612a7682613655565b604082019050919050565b6000612a8e602a8361309a565b9150612a99826136a4565b604082019050919050565b6000612ab160298361309a565b9150612abc826136f3565b604082019050919050565b6000612ad460128361309a565b9150612adf82613742565b602082019050919050565b6000612af760238361309a565b9150612b028261376b565b604082019050919050565b6000612b1a60208361309a565b9150612b25826137ba565b602082019050919050565b6000612b3d602c8361309a565b9150612b48826137e3565b604082019050919050565b6000612b6060208361309a565b9150612b6b82613832565b602082019050919050565b6000612b8360298361309a565b9150612b8e8261385b565b604082019050919050565b6000612ba6602f8361309a565b9150612bb1826138aa565b604082019050919050565b6000612bc960218361309a565b9150612bd4826138f9565b604082019050919050565b6000612bec601b8361309a565b9150612bf782613948565b602082019050919050565b6000612c0f60318361309a565b9150612c1a82613971565b604082019050919050565b6000612c32600d8361309a565b9150612c3d826139c0565b602082019050919050565b6000612c55601f8361309a565b9150612c60826139e9565b602082019050919050565b612c7481613235565b82525050565b6000612c868285612938565b9150612c928284612938565b91508190509392505050565b6000602082019050612cb360008301846128a8565b92915050565b6000608082019050612cce60008301876128a8565b612cdb60208301866128a8565b612ce86040830185612c6b565b8181036060830152612cfa81846128c6565b905095945050505050565b6000602082019050612d1a60008301846128b7565b92915050565b60006020820190508181036000830152612d3a81846128ff565b905092915050565b60006020820190508181036000830152612d5b81612969565b9050919050565b60006020820190508181036000830152612d7b8161298c565b9050919050565b60006020820190508181036000830152612d9b816129af565b9050919050565b60006020820190508181036000830152612dbb816129d2565b9050919050565b60006020820190508181036000830152612ddb816129f5565b9050919050565b60006020820190508181036000830152612dfb81612a18565b9050919050565b60006020820190508181036000830152612e1b81612a3b565b9050919050565b60006020820190508181036000830152612e3b81612a5e565b9050919050565b60006020820190508181036000830152612e5b81612a81565b9050919050565b60006020820190508181036000830152612e7b81612aa4565b9050919050565b60006020820190508181036000830152612e9b81612ac7565b9050919050565b60006020820190508181036000830152612ebb81612aea565b9050919050565b60006020820190508181036000830152612edb81612b0d565b9050919050565b60006020820190508181036000830152612efb81612b30565b9050919050565b60006020820190508181036000830152612f1b81612b53565b9050919050565b60006020820190508181036000830152612f3b81612b76565b9050919050565b60006020820190508181036000830152612f5b81612b99565b9050919050565b60006020820190508181036000830152612f7b81612bbc565b9050919050565b60006020820190508181036000830152612f9b81612bdf565b9050919050565b60006020820190508181036000830152612fbb81612c02565b9050919050565b60006020820190508181036000830152612fdb81612c25565b9050919050565b60006020820190508181036000830152612ffb81612c48565b9050919050565b60006020820190506130176000830184612c6b565b92915050565b6000613027613038565b905061303382826132b3565b919050565b6000604051905090565b600067ffffffffffffffff82111561305d5761305c61341a565b5b61306682613467565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130c182613235565b91506130cc83613235565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131015761310061335e565b5b828201905092915050565b600061311782613235565b915061312283613235565b9250826131325761313161338d565b5b828204905092915050565b600061314882613235565b915061315383613235565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561318c5761318b61335e565b5b828202905092915050565b60006131a282613235565b91506131ad83613235565b9250828210156131c0576131bf61335e565b5b828203905092915050565b60006131d682613215565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561326c578082015181840152602081019050613251565b8381111561327b576000848401525b50505050565b6000600282049050600182168061329957607f821691505b602082108114156132ad576132ac6133bc565b5b50919050565b6132bc82613467565b810181811067ffffffffffffffff821117156132db576132da61341a565b5b80604052505050565b60006132ef82613235565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133225761332161335e565b5b600182019050919050565b600061333882613235565b915061334383613235565b9250826133535761335261338d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d697373696e6720726563697069656e74206164647265737365730000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613a1b816131cb565b8114613a2657600080fd5b50565b613a32816131dd565b8114613a3d57600080fd5b50565b613a49816131e9565b8114613a5457600080fd5b50565b613a6081613235565b8114613a6b57600080fd5b5056fe68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68616c6c6f7765656e2d62656172732f68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e74726163742f68616c6c6f7765656e2d6265617273a2646970667358221220c33d9fa7d1c27476124d12154d18a164ddba0a44370cc50964a5fd2affc5b74a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000251c000000000000000000000000000000000000000000000000000000000000000f48616c6c6f7765656e204265617273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024842000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610590578063e8a3d485146105cd578063e985e9c5146105f8578063f2fde38b14610635576101b7565b8063a22cb46514610513578063b88d4fde1461053c578063bd3e19d414610565576101b7565b8063941ada0e116100c6578063941ada0e1461048a57806395d89b41146104b557806397304ced146104e05780639edcc310146104fc576101b7565b806370a082311461040b578063715018a6146104485780638da5cb5b1461045f576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a146103515780634f3e1efc1461037a5780636352211e146103a55780636f8b44b0146103e2576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610328576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612821565b61065e565b6040516101f09190612d05565b60405180910390f35b34801561020557600080fd5b5061020e610740565b60405161021b9190612d20565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061287b565b6107d2565b6040516102589190612c9e565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612794565b610857565b005b34801561029657600080fd5b5061029f61096f565b6040516102ac9190613002565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061267e565b610979565b005b3480156102ea57600080fd5b506102f36109d9565b005b34801561030157600080fd5b5061030a610a72565b005b610326600480360381019061032191906127d4565b610b3e565b005b34801561033457600080fd5b5061034f600480360381019061034a919061267e565b610e0c565b005b34801561035d57600080fd5b506103786004803603810190610373919061287b565b610e2c565b005b34801561038657600080fd5b5061038f610eb2565b60405161039c9190613002565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c7919061287b565b610ec3565b6040516103d99190612c9e565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061287b565b610f75565b005b34801561041757600080fd5b50610432600480360381019061042d9190612611565b610ffb565b60405161043f9190613002565b60405180910390f35b34801561045457600080fd5b5061045d6110b3565b005b34801561046b57600080fd5b5061047461113b565b6040516104819190612c9e565b60405180910390f35b34801561049657600080fd5b5061049f611165565b6040516104ac9190612d05565b60405180910390f35b3480156104c157600080fd5b506104ca61117c565b6040516104d79190612d20565b60405180910390f35b6104fa60048036038101906104f5919061287b565b61120e565b005b34801561050857600080fd5b50610511611422565b005b34801561051f57600080fd5b5061053a60048036038101906105359190612754565b6114bb565b005b34801561054857600080fd5b50610563600480360381019061055e91906126d1565b61163c565b005b34801561057157600080fd5b5061057a61169e565b6040516105879190613002565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061287b565b6116a8565b6040516105c49190612d20565b60405180910390f35b3480156105d957600080fd5b506105e261174f565b6040516105ef9190612d20565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061263e565b61176f565b60405161062c9190612d05565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612611565b611803565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107395750610738826118fb565b5b9050919050565b60606000805461074f90613281565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613281565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd82611965565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612ee2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612f62565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26119d1565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b6119d1565b61176f565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612e02565b60405180910390fd5b61096a83836119d9565b505050565b6000600a54905090565b61098a6109846119d1565b82611a92565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612fa2565b60405180910390fd5b6109d4838383611b70565b505050565b6109e16119d1565b73ffffffffffffffffffffffffffffffffffffffff166109ff61113b565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612f02565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a7a6119d1565b73ffffffffffffffffffffffffffffffffffffffff16610a9861113b565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612f02565b60405180910390fd5b610af661113b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b3b573d6000803e3d6000fd5b50565b60026007541415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90612fe2565b60405180910390fd5b600260078190555060008282905011610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990612f82565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610bf161113b565b73ffffffffffffffffffffffffffffffffffffffff161480610c1f5750600b60009054906101000a900460ff165b610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590612fc2565b60405180910390fd5b600082829050118015610c75575060648282905011155b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612e22565b60405180910390fd5b600a54610cd6610cc46008611dcc565b84849050611dda90919063ffffffff16565b10610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90612e82565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610d3561113b565b73ffffffffffffffffffffffffffffffffffffffff161480610d6e5750610d6a82829050600954611df090919063ffffffff16565b3410155b610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612ea2565b60405180910390fd5b60005b82829050811015610dff57610deb838383818110610dd157610dd06133eb565b5b9050602002016020810190610de69190612611565b611e06565b508080610df7906132e4565b915050610db0565b5060016007819055505050565b610e278383836040518060200160405280600081525061163c565b505050565b610e346119d1565b73ffffffffffffffffffffffffffffffffffffffff16610e5261113b565b73ffffffffffffffffffffffffffffffffffffffff1614610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612f02565b60405180910390fd5b8060098190555050565b6000610ebe6008611dcc565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390612e62565b60405180910390fd5b80915050919050565b610f7d6119d1565b73ffffffffffffffffffffffffffffffffffffffff16610f9b61113b565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612f02565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612e42565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110bb6119d1565b73ffffffffffffffffffffffffffffffffffffffff166110d961113b565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690612f02565b60405180910390fd5b6111396000611e33565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b60606001805461118b90613281565b80601f01602080910402602001604051908101604052809291908181526020018280546111b790613281565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b5050505050905090565b60026007541415611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90612fe2565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290612fc2565b60405180910390fd5b6000811180156112bc575060648111155b6112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612e22565b60405180910390fd5b600a5461131a61130b6008611dcc565b83611dda90919063ffffffff16565b1061135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612e82565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661137961113b565b73ffffffffffffffffffffffffffffffffffffffff1614806113af57506113ab81600954611df090919063ffffffff16565b3410155b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590612ea2565b60405180910390fd5b60005b818110156114165761140233611e06565b50808061140e906132e4565b9150506113f1565b50600160078190555050565b61142a6119d1565b73ffffffffffffffffffffffffffffffffffffffff1661144861113b565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590612f02565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6114c36119d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890612dc2565b60405180910390fd5b806005600061153e6119d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115eb6119d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116309190612d05565b60405180910390a35050565b61164d6116476119d1565b83611a92565b61168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390612fa2565b60405180910390fd5b61169884848484611ef9565b50505050565b6000600954905090565b60606116b382611965565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612f42565b60405180910390fd5b60006116fc611f55565b9050600081511161171c5760405180602001604052806000815250611747565b8061172684611f75565b604051602001611737929190612c7a565b6040516020818303038152906040525b915050919050565b6060604051806080016040528060538152602001613ac060539139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61180b6119d1565b73ffffffffffffffffffffffffffffffffffffffff1661182961113b565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690612f02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612d62565b60405180910390fd5b6118f881611e33565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a4c83610ec3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a9d82611965565b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390612de2565b60405180910390fd5b6000611ae783610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5657508373ffffffffffffffffffffffffffffffffffffffff16611b3e846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b675750611b66818561176f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b9082610ec3565b73ffffffffffffffffffffffffffffffffffffffff1614611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612f22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90612da2565b60405180910390fd5b611c618383836120d6565b611c6c6000826119d9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbc9190613197565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1391906130b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60008183611de891906130b6565b905092915050565b60008183611dfe919061313d565b905092915050565b6000611e1260086120db565b6000611e1e6008611dcc565b9050611e2a83826120f1565b80915050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f04848484611b70565b611f108484848461210f565b611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690612d42565b60405180910390fd5b50505050565b6060604051806080016040528060518152602001613a6f60519139905090565b60606000821415611fbd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120d1565b600082905060005b60008214611fef578080611fd8906132e4565b915050600a82611fe8919061310c565b9150611fc5565b60008167ffffffffffffffff81111561200b5761200a61341a565b5b6040519080825280601f01601f19166020018201604052801561203d5781602001600182028036833780820191505090505b5090505b600085146120ca576001826120569190613197565b9150600a85612065919061332d565b603061207191906130b6565b60f81b818381518110612087576120866133eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120c3919061310c565b9450612041565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b61210b8282604051806020016040528060008152506122a6565b5050565b60006121308473ffffffffffffffffffffffffffffffffffffffff16612301565b15612299578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121596119d1565b8786866040518563ffffffff1660e01b815260040161217b9493929190612cb9565b602060405180830381600087803b15801561219557600080fd5b505af19250505080156121c657506040513d601f19601f820116820180604052508101906121c3919061284e565b60015b612249573d80600081146121f6576040519150601f19603f3d011682016040523d82523d6000602084013e6121fb565b606091505b50600081511415612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890612d42565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061229e565b600190505b949350505050565b6122b08383612314565b6122bd600084848461210f565b6122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390612d42565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90612ec2565b60405180910390fd5b61238d81611965565b156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490612d82565b60405180910390fd5b6123d9600083836120d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242991906130b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006124f56124f084613042565b61301d565b90508281526020810184848401111561251157612510613458565b5b61251c84828561323f565b509392505050565b60008135905061253381613a12565b92915050565b60008083601f84011261254f5761254e61344e565b5b8235905067ffffffffffffffff81111561256c5761256b613449565b5b60208301915083602082028301111561258857612587613453565b5b9250929050565b60008135905061259e81613a29565b92915050565b6000813590506125b381613a40565b92915050565b6000815190506125c881613a40565b92915050565b600082601f8301126125e3576125e261344e565b5b81356125f38482602086016124e2565b91505092915050565b60008135905061260b81613a57565b92915050565b60006020828403121561262757612626613462565b5b600061263584828501612524565b91505092915050565b6000806040838503121561265557612654613462565b5b600061266385828601612524565b925050602061267485828601612524565b9150509250929050565b60008060006060848603121561269757612696613462565b5b60006126a586828701612524565b93505060206126b686828701612524565b92505060406126c7868287016125fc565b9150509250925092565b600080600080608085870312156126eb576126ea613462565b5b60006126f987828801612524565b945050602061270a87828801612524565b935050604061271b878288016125fc565b925050606085013567ffffffffffffffff81111561273c5761273b61345d565b5b612748878288016125ce565b91505092959194509250565b6000806040838503121561276b5761276a613462565b5b600061277985828601612524565b925050602061278a8582860161258f565b9150509250929050565b600080604083850312156127ab576127aa613462565b5b60006127b985828601612524565b92505060206127ca858286016125fc565b9150509250929050565b600080602083850312156127eb576127ea613462565b5b600083013567ffffffffffffffff8111156128095761280861345d565b5b61281585828601612539565b92509250509250929050565b60006020828403121561283757612836613462565b5b6000612845848285016125a4565b91505092915050565b60006020828403121561286457612863613462565b5b6000612872848285016125b9565b91505092915050565b60006020828403121561289157612890613462565b5b600061289f848285016125fc565b91505092915050565b6128b1816131cb565b82525050565b6128c0816131dd565b82525050565b60006128d182613073565b6128db8185613089565b93506128eb81856020860161324e565b6128f481613467565b840191505092915050565b600061290a8261307e565b612914818561309a565b935061292481856020860161324e565b61292d81613467565b840191505092915050565b60006129438261307e565b61294d81856130ab565b935061295d81856020860161324e565b80840191505092915050565b600061297660328361309a565b915061298182613478565b604082019050919050565b600061299960268361309a565b91506129a4826134c7565b604082019050919050565b60006129bc601c8361309a565b91506129c782613516565b602082019050919050565b60006129df60248361309a565b91506129ea8261353f565b604082019050919050565b6000612a0260198361309a565b9150612a0d8261358e565b602082019050919050565b6000612a25602c8361309a565b9150612a30826135b7565b604082019050919050565b6000612a4860388361309a565b9150612a5382613606565b604082019050919050565b6000612a6b60288361309a565b9150612a7682613655565b604082019050919050565b6000612a8e602a8361309a565b9150612a99826136a4565b604082019050919050565b6000612ab160298361309a565b9150612abc826136f3565b604082019050919050565b6000612ad460128361309a565b9150612adf82613742565b602082019050919050565b6000612af760238361309a565b9150612b028261376b565b604082019050919050565b6000612b1a60208361309a565b9150612b25826137ba565b602082019050919050565b6000612b3d602c8361309a565b9150612b48826137e3565b604082019050919050565b6000612b6060208361309a565b9150612b6b82613832565b602082019050919050565b6000612b8360298361309a565b9150612b8e8261385b565b604082019050919050565b6000612ba6602f8361309a565b9150612bb1826138aa565b604082019050919050565b6000612bc960218361309a565b9150612bd4826138f9565b604082019050919050565b6000612bec601b8361309a565b9150612bf782613948565b602082019050919050565b6000612c0f60318361309a565b9150612c1a82613971565b604082019050919050565b6000612c32600d8361309a565b9150612c3d826139c0565b602082019050919050565b6000612c55601f8361309a565b9150612c60826139e9565b602082019050919050565b612c7481613235565b82525050565b6000612c868285612938565b9150612c928284612938565b91508190509392505050565b6000602082019050612cb360008301846128a8565b92915050565b6000608082019050612cce60008301876128a8565b612cdb60208301866128a8565b612ce86040830185612c6b565b8181036060830152612cfa81846128c6565b905095945050505050565b6000602082019050612d1a60008301846128b7565b92915050565b60006020820190508181036000830152612d3a81846128ff565b905092915050565b60006020820190508181036000830152612d5b81612969565b9050919050565b60006020820190508181036000830152612d7b8161298c565b9050919050565b60006020820190508181036000830152612d9b816129af565b9050919050565b60006020820190508181036000830152612dbb816129d2565b9050919050565b60006020820190508181036000830152612ddb816129f5565b9050919050565b60006020820190508181036000830152612dfb81612a18565b9050919050565b60006020820190508181036000830152612e1b81612a3b565b9050919050565b60006020820190508181036000830152612e3b81612a5e565b9050919050565b60006020820190508181036000830152612e5b81612a81565b9050919050565b60006020820190508181036000830152612e7b81612aa4565b9050919050565b60006020820190508181036000830152612e9b81612ac7565b9050919050565b60006020820190508181036000830152612ebb81612aea565b9050919050565b60006020820190508181036000830152612edb81612b0d565b9050919050565b60006020820190508181036000830152612efb81612b30565b9050919050565b60006020820190508181036000830152612f1b81612b53565b9050919050565b60006020820190508181036000830152612f3b81612b76565b9050919050565b60006020820190508181036000830152612f5b81612b99565b9050919050565b60006020820190508181036000830152612f7b81612bbc565b9050919050565b60006020820190508181036000830152612f9b81612bdf565b9050919050565b60006020820190508181036000830152612fbb81612c02565b9050919050565b60006020820190508181036000830152612fdb81612c25565b9050919050565b60006020820190508181036000830152612ffb81612c48565b9050919050565b60006020820190506130176000830184612c6b565b92915050565b6000613027613038565b905061303382826132b3565b919050565b6000604051905090565b600067ffffffffffffffff82111561305d5761305c61341a565b5b61306682613467565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130c182613235565b91506130cc83613235565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131015761310061335e565b5b828201905092915050565b600061311782613235565b915061312283613235565b9250826131325761313161338d565b5b828204905092915050565b600061314882613235565b915061315383613235565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561318c5761318b61335e565b5b828202905092915050565b60006131a282613235565b91506131ad83613235565b9250828210156131c0576131bf61335e565b5b828203905092915050565b60006131d682613215565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561326c578082015181840152602081019050613251565b8381111561327b576000848401525b50505050565b6000600282049050600182168061329957607f821691505b602082108114156132ad576132ac6133bc565b5b50919050565b6132bc82613467565b810181811067ffffffffffffffff821117156132db576132da61341a565b5b80604052505050565b60006132ef82613235565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133225761332161335e565b5b600182019050919050565b600061333882613235565b915061334383613235565b9250826133535761335261338d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d697373696e6720726563697069656e74206164647265737365730000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613a1b816131cb565b8114613a2657600080fd5b50565b613a32816131dd565b8114613a3d57600080fd5b50565b613a49816131e9565b8114613a5457600080fd5b50565b613a6081613235565b8114613a6b57600080fd5b5056fe68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68616c6c6f7765656e2d62656172732f68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e74726163742f68616c6c6f7765656e2d6265617273a2646970667358221220c33d9fa7d1c27476124d12154d18a164ddba0a44370cc50964a5fd2affc5b74a64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000251c000000000000000000000000000000000000000000000000000000000000000f48616c6c6f7765656e204265617273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024842000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): Halloween Bears
Arg [1] : symbol (string): HB
Arg [2] : cost (uint256): 80000000000000000
Arg [3] : supply (uint256): 9500

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000011c37937e080000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000251c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 48616c6c6f7765656e2042656172730000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4842000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44846:4112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19705:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22209:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21732:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48335:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23099:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45898:89;;;;;;;;;;;;;:::i;:::-;;47837:97;;;;;;;;;;;;;:::i;:::-;;46694:660;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23509:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47462:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48421:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20344:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47636:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20074:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34737:94;;;;;;;;;;;;;:::i;:::-;;34086:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48521:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20819:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46073:491;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45661:89;;;;;;;;;;;;;:::i;:::-;;22502:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23765:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48254:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20994:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48791:164;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22868;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34986:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19705:305;19807:4;19859:25;19844:40;;;:11;:40;;;;:105;;;;19916:33;19901:48;;;:11;:48;;;;19844:105;:158;;;;19966:36;19990:11;19966:23;:36::i;:::-;19844:158;19824:178;;19705:305;;;:::o;20650:100::-;20704:13;20737:5;20730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20650:100;:::o;22209:221::-;22285:7;22313:16;22321:7;22313;:16::i;:::-;22305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22398:15;:24;22414:7;22398:24;;;;;;;;;;;;;;;;;;;;;22391:31;;22209:221;;;:::o;21732:411::-;21813:13;21829:23;21844:7;21829:14;:23::i;:::-;21813:39;;21877:5;21871:11;;:2;:11;;;;21863:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21971:5;21955:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21980:37;21997:5;22004:12;:10;:12::i;:::-;21980:16;:37::i;:::-;21955:62;21933:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22114:21;22123:2;22127:7;22114:8;:21::i;:::-;21802:341;21732:411;;:::o;48335:82::-;48379:7;48401:10;;48394:17;;48335:82;:::o;23099:339::-;23294:41;23313:12;:10;:12::i;:::-;23327:7;23294:18;:41::i;:::-;23286:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23402:28;23412:4;23418:2;23422:7;23402:9;:28::i;:::-;23099:339;;;:::o;45898:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45976:5:::1;45953:20;;:28;;;;;;;;;;;;;;;;;;45898:89::o:0;47837:97::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47888:7:::1;:5;:7::i;:::-;47880:25;;:48;47906:21;47880:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47837:97::o:0;46694:660::-;43899:1;44495:7;;:19;;44487:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43899:1;44628:7;:18;;;;46814:1:::1;46796:10;;:17;;:19;46788:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46872:10;46861:21;;:7;:5;:7::i;:::-;:21;;;:45;;;;46886:20;;;;;;;;;;;46861:45;46853:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;46959:1;46939:10;;:17;;:21;:49;;;;;46985:3;46964:10;;:17;;:24;;46939:49;46931:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;47093:10;;47048:42;47070:19;:9;:17;:19::i;:::-;47048:10;;:17;;:21;;:42;;;;:::i;:::-;:55;47040:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;47152:10;47141:21;;:7;:5;:7::i;:::-;:21;;;:70;;;;47179:32;47193:10;;:17;;47179:9;;:13;;:32;;;;:::i;:::-;47166:9;:45;;47141:70;47133:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;47274:6;47270:79;47286:10;;:17;;47284:1;:19;47270:79;;;47320:20;47326:10;;47337:1;47326:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47320:5;:20::i;:::-;;47305:3;;;;;:::i;:::-;;;;47270:79;;;;43855:1:::0;44807:7;:22;;;;46694:660;;:::o;23509:185::-;23647:39;23664:4;23670:2;23674:7;23647:39;;;;;;;;;;;;:16;:39::i;:::-;23509:185;;;:::o;47462:76::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47528:4:::1;47516:9;:16;;;;47462:76:::0;:::o;48421:96::-;48470:7;48492:19;:9;:17;:19::i;:::-;48485:26;;48421:96;:::o;20344:239::-;20416:7;20436:13;20452:7;:16;20460:7;20452:16;;;;;;;;;;;;;;;;;;;;;20436:32;;20504:1;20487:19;;:5;:19;;;;20479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20570:5;20563:12;;;20344:239;;;:::o;47636:80::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47707:3:::1;47694:10;:16;;;;47636:80:::0;:::o;20074:208::-;20146:7;20191:1;20174:19;;:5;:19;;;;20166:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20258:9;:16;20268:5;20258:16;;;;;;;;;;;;;;;;20251:23;;20074:208;;;:::o;34737:94::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34802:21:::1;34820:1;34802:9;:21::i;:::-;34737:94::o:0;34086:87::-;34132:7;34159:6;;;;;;;;;;;34152:13;;34086:87;:::o;48521:92::-;48567:4;48587:20;;;;;;;;;;;48580:27;;48521:92;:::o;20819:104::-;20875:13;20908:7;20901:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20819:104;:::o;46073:491::-;43899:1;44495:7;;:19;;44487:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43899:1;44628:7;:18;;;;46159:20:::1;;;;;;;;;;;46151:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;46220:1;46212:5;:9;:25;;;;;46234:3;46225:5;:12;;46212:25;46204:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46330:10;;46297:30;46307:19;:9;:17;:19::i;:::-;46297:5;:9;;:30;;;;:::i;:::-;:43;46289:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46389:10;46378:21;;:7;:5;:7::i;:::-;:21;;;:58;;;;46416:20;46430:5;46416:9;;:13;;:20;;;;:::i;:::-;46403:9;:33;;46378:58;46370:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;46499:6;46495:64;46511:5;46509:1;:7;46495:64;;;46533:17;46539:10;46533:5;:17::i;:::-;;46518:3;;;;;:::i;:::-;;;;46495:64;;;;43855:1:::0;44807:7;:22;;;;46073:491;:::o;45661:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45740:4:::1;45717:20;;:27;;;;;;;;;;;;;;;;;;45661:89::o:0;22502:295::-;22617:12;:10;:12::i;:::-;22605:24;;:8;:24;;;;22597:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22717:8;22672:18;:32;22691:12;:10;:12::i;:::-;22672:32;;;;;;;;;;;;;;;:42;22705:8;22672:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22770:8;22741:48;;22756:12;:10;:12::i;:::-;22741:48;;;22780:8;22741:48;;;;;;:::i;:::-;;;;;;;;22502:295;;:::o;23765:328::-;23940:41;23959:12;:10;:12::i;:::-;23973:7;23940:18;:41::i;:::-;23932:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24046:39;24060:4;24066:2;24070:7;24079:5;24046:13;:39::i;:::-;23765:328;;;;:::o;48254:77::-;48294:7;48316:9;;48309:16;;48254:77;:::o;20994:334::-;21067:13;21101:16;21109:7;21101;:16::i;:::-;21093:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21182:21;21206:10;:8;:10::i;:::-;21182:34;;21258:1;21240:7;21234:21;:25;:86;;;;;;;;;;;;;;;;;21286:7;21295:18;:7;:16;:18::i;:::-;21269:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21234:86;21227:93;;;20994:334;;;:::o;48791:164::-;48835:13;48857:92;;;;;;;;;;;;;;;;;;;48791:164;:::o;22868:::-;22965:4;22989:18;:25;23008:5;22989:25;;;;;;;;;;;;;;;:35;23015:8;22989:35;;;;;;;;;;;;;;;;;;;;;;;;;22982:42;;22868:164;;;;:::o;34986:192::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35095:1:::1;35075:22;;:8;:22;;;;35067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:19;35161:8;35151:9;:19::i;:::-;34986:192:::0;:::o;18312:157::-;18397:4;18436:25;18421:40;;;:11;:40;;;;18414:47;;18312:157;;;:::o;25603:127::-;25668:4;25720:1;25692:30;;:7;:16;25700:7;25692:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25685:37;;25603:127;;;:::o;1357:98::-;1410:7;1437:10;1430:17;;1357:98;:::o;29585:174::-;29687:2;29660:15;:24;29676:7;29660:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29743:7;29739:2;29705:46;;29714:23;29729:7;29714:14;:23::i;:::-;29705:46;;;;;;;;;;;;29585:174;;:::o;25897:348::-;25990:4;26015:16;26023:7;26015;:16::i;:::-;26007:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26091:13;26107:23;26122:7;26107:14;:23::i;:::-;26091:39;;26160:5;26149:16;;:7;:16;;;:51;;;;26193:7;26169:31;;:20;26181:7;26169:11;:20::i;:::-;:31;;;26149:51;:87;;;;26204:32;26221:5;26228:7;26204:16;:32::i;:::-;26149:87;26141:96;;;25897:348;;;;:::o;28889:578::-;29048:4;29021:31;;:23;29036:7;29021:14;:23::i;:::-;:31;;;29013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:1;29117:16;;:2;:16;;;;29109:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29187:39;29208:4;29214:2;29218:7;29187:20;:39::i;:::-;29291:29;29308:1;29312:7;29291:8;:29::i;:::-;29352:1;29333:9;:15;29343:4;29333:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29381:1;29364:9;:13;29374:2;29364:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29412:2;29393:7;:16;29401:7;29393:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29451:7;29447:2;29432:27;;29441:4;29432:27;;;;;;;;;;;;28889:578;;;:::o;32571:114::-;32636:7;32663;:14;;;32656:21;;32571:114;;;:::o;38075:98::-;38133:7;38164:1;38160;:5;;;;:::i;:::-;38153:12;;38075:98;;;;:::o;38813:::-;38871:7;38902:1;38898;:5;;;;:::i;:::-;38891:12;;38813:98;;;;:::o;48072:176::-;48125:7;48140:21;:9;:19;:21::i;:::-;48168:10;48181:19;:9;:17;:19::i;:::-;48168:32;;48207:17;48217:2;48221;48207:9;:17::i;:::-;48240:2;48233:9;;;48072:176;;;:::o;35186:173::-;35242:16;35261:6;;;;;;;;;;;35242:25;;35287:8;35278:6;;:17;;;;;;;;;;;;;;;;;;35342:8;35311:40;;35332:8;35311:40;;;;;;;;;;;;35231:128;35186:173;:::o;24975:315::-;25132:28;25142:4;25148:2;25152:7;25132:9;:28::i;:::-;25179:48;25202:4;25208:2;25212:7;25221:5;25179:22;:48::i;:::-;25171:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24975:315;;;;:::o;48617:170::-;48669:13;48691:90;;;;;;;;;;;;;;;;;;;48617:170;:::o;1803:723::-;1859:13;2089:1;2080:5;:10;2076:53;;;2107:10;;;;;;;;;;;;;;;;;;;;;2076:53;2139:12;2154:5;2139:20;;2170:14;2195:78;2210:1;2202:4;:9;2195:78;;2228:8;;;;;:::i;:::-;;;;2259:2;2251:10;;;;;:::i;:::-;;;2195:78;;;2283:19;2315:6;2305:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:39;;2333:154;2349:1;2340:5;:10;2333:154;;2377:1;2367:11;;;;;:::i;:::-;;;2444:2;2436:5;:10;;;;:::i;:::-;2423:2;:24;;;;:::i;:::-;2410:39;;2393:6;2400;2393:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2473:2;2464:11;;;;;:::i;:::-;;;2333:154;;;2511:6;2497:21;;;;;1803:723;;;;:::o;31699:126::-;;;;:::o;32693:127::-;32800:1;32782:7;:14;;;:19;;;;;;;;;;;32693:127;:::o;26587:110::-;26663:26;26673:2;26677:7;26663:26;;;;;;;;;;;;:9;:26::i;:::-;26587:110;;:::o;30324:803::-;30479:4;30500:15;:2;:13;;;:15::i;:::-;30496:624;;;30552:2;30536:36;;;30573:12;:10;:12::i;:::-;30587:4;30593:7;30602:5;30536:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30532:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30799:1;30782:6;:13;:18;30778:272;;;30825:60;;;;;;;;;;:::i;:::-;;;;;;;;30778:272;31000:6;30994:13;30985:6;30981:2;30977:15;30970:38;30532:533;30669:45;;;30659:55;;;:6;:55;;;;30652:62;;;;;30496:624;31104:4;31097:11;;30324:803;;;;;;;:::o;26924:321::-;27054:18;27060:2;27064:7;27054:5;:18::i;:::-;27105:54;27136:1;27140:2;27144:7;27153:5;27105:22;:54::i;:::-;27083:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26924:321;;;:::o;10484:387::-;10544:4;10752:12;10819:7;10807:20;10799:28;;10862:1;10855:4;:8;10848:15;;;10484:387;;;:::o;27581:382::-;27675:1;27661:16;;:2;:16;;;;27653:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27734:16;27742:7;27734;:16::i;:::-;27733:17;27725:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27796:45;27825:1;27829:2;27833:7;27796:20;:45::i;:::-;27871:1;27854:9;:13;27864:2;27854:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27902:2;27883:7;:16;27891:7;27883:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27947:7;27943:2;27922:33;;27939:1;27922:33;;;;;;;;;;;;27581:382;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1945:139::-;1991:5;2029:6;2016:20;2007:29;;2045:33;2072:5;2045:33;:::i;:::-;1945:139;;;;:::o;2090:329::-;2149:6;2198:2;2186:9;2177:7;2173:23;2169:32;2166:119;;;2204:79;;:::i;:::-;2166:119;2324:1;2349:53;2394:7;2385:6;2374:9;2370:22;2349:53;:::i;:::-;2339:63;;2295:117;2090:329;;;;:::o;2425:474::-;2493:6;2501;2550:2;2538:9;2529:7;2525:23;2521:32;2518:119;;;2556:79;;:::i;:::-;2518:119;2676:1;2701:53;2746:7;2737:6;2726:9;2722:22;2701:53;:::i;:::-;2691:63;;2647:117;2803:2;2829:53;2874:7;2865:6;2854:9;2850:22;2829:53;:::i;:::-;2819:63;;2774:118;2425:474;;;;;:::o;2905:619::-;2982:6;2990;2998;3047:2;3035:9;3026:7;3022:23;3018:32;3015:119;;;3053:79;;:::i;:::-;3015:119;3173:1;3198:53;3243:7;3234:6;3223:9;3219:22;3198:53;:::i;:::-;3188:63;;3144:117;3300:2;3326:53;3371:7;3362:6;3351:9;3347:22;3326:53;:::i;:::-;3316:63;;3271:118;3428:2;3454:53;3499:7;3490:6;3479:9;3475:22;3454:53;:::i;:::-;3444:63;;3399:118;2905:619;;;;;:::o;3530:943::-;3625:6;3633;3641;3649;3698:3;3686:9;3677:7;3673:23;3669:33;3666:120;;;3705:79;;:::i;:::-;3666:120;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;4236:2;4225:9;4221:18;4208:32;4267:18;4259:6;4256:30;4253:117;;;4289:79;;:::i;:::-;4253:117;4394:62;4448:7;4439:6;4428:9;4424:22;4394:62;:::i;:::-;4384:72;;4179:287;3530:943;;;;;;;:::o;4479:468::-;4544:6;4552;4601:2;4589:9;4580:7;4576:23;4572:32;4569:119;;;4607:79;;:::i;:::-;4569:119;4727:1;4752:53;4797:7;4788:6;4777:9;4773:22;4752:53;:::i;:::-;4742:63;;4698:117;4854:2;4880:50;4922:7;4913:6;4902:9;4898:22;4880:50;:::i;:::-;4870:60;;4825:115;4479:468;;;;;:::o;4953:474::-;5021:6;5029;5078:2;5066:9;5057:7;5053:23;5049:32;5046:119;;;5084:79;;:::i;:::-;5046:119;5204:1;5229:53;5274:7;5265:6;5254:9;5250:22;5229:53;:::i;:::-;5219:63;;5175:117;5331:2;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5302:118;4953:474;;;;;:::o;5433:559::-;5519:6;5527;5576:2;5564:9;5555:7;5551:23;5547:32;5544:119;;;5582:79;;:::i;:::-;5544:119;5730:1;5719:9;5715:17;5702:31;5760:18;5752:6;5749:30;5746:117;;;5782:79;;:::i;:::-;5746:117;5895:80;5967:7;5958:6;5947:9;5943:22;5895:80;:::i;:::-;5877:98;;;;5673:312;5433:559;;;;;:::o;5998:327::-;6056:6;6105:2;6093:9;6084:7;6080:23;6076:32;6073:119;;;6111:79;;:::i;:::-;6073:119;6231:1;6256:52;6300:7;6291:6;6280:9;6276:22;6256:52;:::i;:::-;6246:62;;6202:116;5998:327;;;;:::o;6331:349::-;6400:6;6449:2;6437:9;6428:7;6424:23;6420:32;6417:119;;;6455:79;;:::i;:::-;6417:119;6575:1;6600:63;6655:7;6646:6;6635:9;6631:22;6600:63;:::i;:::-;6590:73;;6546:127;6331:349;;;;:::o;6686:329::-;6745:6;6794:2;6782:9;6773:7;6769:23;6765:32;6762:119;;;6800:79;;:::i;:::-;6762:119;6920:1;6945:53;6990:7;6981:6;6970:9;6966:22;6945:53;:::i;:::-;6935:63;;6891:117;6686:329;;;;:::o;7021:118::-;7108:24;7126:5;7108:24;:::i;:::-;7103:3;7096:37;7021:118;;:::o;7145:109::-;7226:21;7241:5;7226:21;:::i;:::-;7221:3;7214:34;7145:109;;:::o;7260:360::-;7346:3;7374:38;7406:5;7374:38;:::i;:::-;7428:70;7491:6;7486:3;7428:70;:::i;:::-;7421:77;;7507:52;7552:6;7547:3;7540:4;7533:5;7529:16;7507:52;:::i;:::-;7584:29;7606:6;7584:29;:::i;:::-;7579:3;7575:39;7568:46;;7350:270;7260:360;;;;:::o;7626:364::-;7714:3;7742:39;7775:5;7742:39;:::i;:::-;7797:71;7861:6;7856:3;7797:71;:::i;:::-;7790:78;;7877:52;7922:6;7917:3;7910:4;7903:5;7899:16;7877:52;:::i;:::-;7954:29;7976:6;7954:29;:::i;:::-;7949:3;7945:39;7938:46;;7718:272;7626:364;;;;:::o;7996:377::-;8102:3;8130:39;8163:5;8130:39;:::i;:::-;8185:89;8267:6;8262:3;8185:89;:::i;:::-;8178:96;;8283:52;8328:6;8323:3;8316:4;8309:5;8305:16;8283:52;:::i;:::-;8360:6;8355:3;8351:16;8344:23;;8106:267;7996:377;;;;:::o;8379:366::-;8521:3;8542:67;8606:2;8601:3;8542:67;:::i;:::-;8535:74;;8618:93;8707:3;8618:93;:::i;:::-;8736:2;8731:3;8727:12;8720:19;;8379:366;;;:::o;8751:::-;8893:3;8914:67;8978:2;8973:3;8914:67;:::i;:::-;8907:74;;8990:93;9079:3;8990:93;:::i;:::-;9108:2;9103:3;9099:12;9092:19;;8751:366;;;:::o;9123:::-;9265:3;9286:67;9350:2;9345:3;9286:67;:::i;:::-;9279:74;;9362:93;9451:3;9362:93;:::i;:::-;9480:2;9475:3;9471:12;9464:19;;9123:366;;;:::o;9495:::-;9637:3;9658:67;9722:2;9717:3;9658:67;:::i;:::-;9651:74;;9734:93;9823:3;9734:93;:::i;:::-;9852:2;9847:3;9843:12;9836:19;;9495:366;;;:::o;9867:::-;10009:3;10030:67;10094:2;10089:3;10030:67;:::i;:::-;10023:74;;10106:93;10195:3;10106:93;:::i;:::-;10224:2;10219:3;10215:12;10208:19;;9867:366;;;:::o;10239:::-;10381:3;10402:67;10466:2;10461:3;10402:67;:::i;:::-;10395:74;;10478:93;10567:3;10478:93;:::i;:::-;10596:2;10591:3;10587:12;10580:19;;10239:366;;;:::o;10611:::-;10753:3;10774:67;10838:2;10833:3;10774:67;:::i;:::-;10767:74;;10850:93;10939:3;10850:93;:::i;:::-;10968:2;10963:3;10959:12;10952:19;;10611:366;;;:::o;10983:::-;11125:3;11146:67;11210:2;11205:3;11146:67;:::i;:::-;11139:74;;11222:93;11311:3;11222:93;:::i;:::-;11340:2;11335:3;11331:12;11324:19;;10983:366;;;:::o;11355:::-;11497:3;11518:67;11582:2;11577:3;11518:67;:::i;:::-;11511:74;;11594:93;11683:3;11594:93;:::i;:::-;11712:2;11707:3;11703:12;11696:19;;11355:366;;;:::o;11727:::-;11869:3;11890:67;11954:2;11949:3;11890:67;:::i;:::-;11883:74;;11966:93;12055:3;11966:93;:::i;:::-;12084:2;12079:3;12075:12;12068:19;;11727:366;;;:::o;12099:::-;12241:3;12262:67;12326:2;12321:3;12262:67;:::i;:::-;12255:74;;12338:93;12427:3;12338:93;:::i;:::-;12456:2;12451:3;12447:12;12440:19;;12099:366;;;:::o;12471:::-;12613:3;12634:67;12698:2;12693:3;12634:67;:::i;:::-;12627:74;;12710:93;12799:3;12710:93;:::i;:::-;12828:2;12823:3;12819:12;12812:19;;12471:366;;;:::o;12843:::-;12985:3;13006:67;13070:2;13065:3;13006:67;:::i;:::-;12999:74;;13082:93;13171:3;13082:93;:::i;:::-;13200:2;13195:3;13191:12;13184:19;;12843:366;;;:::o;13215:::-;13357:3;13378:67;13442:2;13437:3;13378:67;:::i;:::-;13371:74;;13454:93;13543:3;13454:93;:::i;:::-;13572:2;13567:3;13563:12;13556:19;;13215:366;;;:::o;13587:::-;13729:3;13750:67;13814:2;13809:3;13750:67;:::i;:::-;13743:74;;13826:93;13915:3;13826:93;:::i;:::-;13944:2;13939:3;13935:12;13928:19;;13587:366;;;:::o;13959:::-;14101:3;14122:67;14186:2;14181:3;14122:67;:::i;:::-;14115:74;;14198:93;14287:3;14198:93;:::i;:::-;14316:2;14311:3;14307:12;14300:19;;13959:366;;;:::o;14331:::-;14473:3;14494:67;14558:2;14553:3;14494:67;:::i;:::-;14487:74;;14570:93;14659:3;14570:93;:::i;:::-;14688:2;14683:3;14679:12;14672:19;;14331:366;;;:::o;14703:::-;14845:3;14866:67;14930:2;14925:3;14866:67;:::i;:::-;14859:74;;14942:93;15031:3;14942:93;:::i;:::-;15060:2;15055:3;15051:12;15044:19;;14703:366;;;:::o;15075:::-;15217:3;15238:67;15302:2;15297:3;15238:67;:::i;:::-;15231:74;;15314:93;15403:3;15314:93;:::i;:::-;15432:2;15427:3;15423:12;15416:19;;15075:366;;;:::o;15447:::-;15589:3;15610:67;15674:2;15669:3;15610:67;:::i;:::-;15603:74;;15686:93;15775:3;15686:93;:::i;:::-;15804:2;15799:3;15795:12;15788:19;;15447:366;;;:::o;15819:::-;15961:3;15982:67;16046:2;16041:3;15982:67;:::i;:::-;15975:74;;16058:93;16147:3;16058:93;:::i;:::-;16176:2;16171:3;16167:12;16160:19;;15819:366;;;:::o;16191:::-;16333:3;16354:67;16418:2;16413:3;16354:67;:::i;:::-;16347:74;;16430:93;16519:3;16430:93;:::i;:::-;16548:2;16543:3;16539:12;16532:19;;16191:366;;;:::o;16563:118::-;16650:24;16668:5;16650:24;:::i;:::-;16645:3;16638:37;16563:118;;:::o;16687:435::-;16867:3;16889:95;16980:3;16971:6;16889:95;:::i;:::-;16882:102;;17001:95;17092:3;17083:6;17001:95;:::i;:::-;16994:102;;17113:3;17106:10;;16687:435;;;;;:::o;17128:222::-;17221:4;17259:2;17248:9;17244:18;17236:26;;17272:71;17340:1;17329:9;17325:17;17316:6;17272:71;:::i;:::-;17128:222;;;;:::o;17356:640::-;17551:4;17589:3;17578:9;17574:19;17566:27;;17603:71;17671:1;17660:9;17656:17;17647:6;17603:71;:::i;:::-;17684:72;17752:2;17741:9;17737:18;17728:6;17684:72;:::i;:::-;17766;17834:2;17823:9;17819:18;17810:6;17766:72;:::i;:::-;17885:9;17879:4;17875:20;17870:2;17859:9;17855:18;17848:48;17913:76;17984:4;17975:6;17913:76;:::i;:::-;17905:84;;17356:640;;;;;;;:::o;18002:210::-;18089:4;18127:2;18116:9;18112:18;18104:26;;18140:65;18202:1;18191:9;18187:17;18178:6;18140:65;:::i;:::-;18002:210;;;;:::o;18218:313::-;18331:4;18369:2;18358:9;18354:18;18346:26;;18418:9;18412:4;18408:20;18404:1;18393:9;18389:17;18382:47;18446:78;18519:4;18510:6;18446:78;:::i;:::-;18438:86;;18218:313;;;;:::o;18537:419::-;18703:4;18741:2;18730:9;18726:18;18718:26;;18790:9;18784:4;18780:20;18776:1;18765:9;18761:17;18754:47;18818:131;18944:4;18818:131;:::i;:::-;18810:139;;18537:419;;;:::o;18962:::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19215:9;19209:4;19205:20;19201:1;19190:9;19186:17;19179:47;19243:131;19369:4;19243:131;:::i;:::-;19235:139;;18962:419;;;:::o;19387:::-;19553:4;19591:2;19580:9;19576:18;19568:26;;19640:9;19634:4;19630:20;19626:1;19615:9;19611:17;19604:47;19668:131;19794:4;19668:131;:::i;:::-;19660:139;;19387:419;;;:::o;19812:::-;19978:4;20016:2;20005:9;20001:18;19993:26;;20065:9;20059:4;20055:20;20051:1;20040:9;20036:17;20029:47;20093:131;20219:4;20093:131;:::i;:::-;20085:139;;19812:419;;;:::o;20237:::-;20403:4;20441:2;20430:9;20426:18;20418:26;;20490:9;20484:4;20480:20;20476:1;20465:9;20461:17;20454:47;20518:131;20644:4;20518:131;:::i;:::-;20510:139;;20237:419;;;:::o;20662:::-;20828:4;20866:2;20855:9;20851:18;20843:26;;20915:9;20909:4;20905:20;20901:1;20890:9;20886:17;20879:47;20943:131;21069:4;20943:131;:::i;:::-;20935:139;;20662:419;;;:::o;21087:::-;21253:4;21291:2;21280:9;21276:18;21268:26;;21340:9;21334:4;21330:20;21326:1;21315:9;21311:17;21304:47;21368:131;21494:4;21368:131;:::i;:::-;21360:139;;21087:419;;;:::o;21512:::-;21678:4;21716:2;21705:9;21701:18;21693:26;;21765:9;21759:4;21755:20;21751:1;21740:9;21736:17;21729:47;21793:131;21919:4;21793:131;:::i;:::-;21785:139;;21512:419;;;:::o;21937:::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:::-;22528:4;22566:2;22555:9;22551:18;22543:26;;22615:9;22609:4;22605:20;22601:1;22590:9;22586:17;22579:47;22643:131;22769:4;22643:131;:::i;:::-;22635:139;;22362:419;;;:::o;22787:::-;22953:4;22991:2;22980:9;22976:18;22968:26;;23040:9;23034:4;23030:20;23026:1;23015:9;23011:17;23004:47;23068:131;23194:4;23068:131;:::i;:::-;23060:139;;22787:419;;;:::o;23212:::-;23378:4;23416:2;23405:9;23401:18;23393:26;;23465:9;23459:4;23455:20;23451:1;23440:9;23436:17;23429:47;23493:131;23619:4;23493:131;:::i;:::-;23485:139;;23212:419;;;:::o;23637:::-;23803:4;23841:2;23830:9;23826:18;23818:26;;23890:9;23884:4;23880:20;23876:1;23865:9;23861:17;23854:47;23918:131;24044:4;23918:131;:::i;:::-;23910:139;;23637:419;;;:::o;24062:::-;24228:4;24266:2;24255:9;24251:18;24243:26;;24315:9;24309:4;24305:20;24301:1;24290:9;24286:17;24279:47;24343:131;24469:4;24343:131;:::i;:::-;24335:139;;24062:419;;;:::o;24487:::-;24653:4;24691:2;24680:9;24676:18;24668:26;;24740:9;24734:4;24730:20;24726:1;24715:9;24711:17;24704:47;24768:131;24894:4;24768:131;:::i;:::-;24760:139;;24487:419;;;:::o;24912:::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25165:9;25159:4;25155:20;25151:1;25140:9;25136:17;25129:47;25193:131;25319:4;25193:131;:::i;:::-;25185:139;;24912:419;;;:::o;25337:::-;25503:4;25541:2;25530:9;25526:18;25518:26;;25590:9;25584:4;25580:20;25576:1;25565:9;25561:17;25554:47;25618:131;25744:4;25618:131;:::i;:::-;25610:139;;25337:419;;;:::o;25762:::-;25928:4;25966:2;25955:9;25951:18;25943:26;;26015:9;26009:4;26005:20;26001:1;25990:9;25986:17;25979:47;26043:131;26169:4;26043:131;:::i;:::-;26035:139;;25762:419;;;:::o;26187:::-;26353:4;26391:2;26380:9;26376:18;26368:26;;26440:9;26434:4;26430:20;26426:1;26415:9;26411:17;26404:47;26468:131;26594:4;26468:131;:::i;:::-;26460:139;;26187:419;;;:::o;26612:::-;26778:4;26816:2;26805:9;26801:18;26793:26;;26865:9;26859:4;26855:20;26851:1;26840:9;26836:17;26829:47;26893:131;27019:4;26893:131;:::i;:::-;26885:139;;26612:419;;;:::o;27037:::-;27203:4;27241:2;27230:9;27226:18;27218:26;;27290:9;27284:4;27280:20;27276:1;27265:9;27261:17;27254:47;27318:131;27444:4;27318:131;:::i;:::-;27310:139;;27037:419;;;:::o;27462:::-;27628:4;27666:2;27655:9;27651:18;27643:26;;27715:9;27709:4;27705:20;27701:1;27690:9;27686:17;27679:47;27743:131;27869:4;27743:131;:::i;:::-;27735:139;;27462:419;;;:::o;27887:222::-;27980:4;28018:2;28007:9;28003:18;27995:26;;28031:71;28099:1;28088:9;28084:17;28075:6;28031:71;:::i;:::-;27887:222;;;;:::o;28115:129::-;28149:6;28176:20;;:::i;:::-;28166:30;;28205:33;28233:4;28225:6;28205:33;:::i;:::-;28115:129;;;:::o;28250:75::-;28283:6;28316:2;28310:9;28300:19;;28250:75;:::o;28331:307::-;28392:4;28482:18;28474:6;28471:30;28468:56;;;28504:18;;:::i;:::-;28468:56;28542:29;28564:6;28542:29;:::i;:::-;28534:37;;28626:4;28620;28616:15;28608:23;;28331:307;;;:::o;28644:98::-;28695:6;28729:5;28723:12;28713:22;;28644:98;;;:::o;28748:99::-;28800:6;28834:5;28828:12;28818:22;;28748:99;;;:::o;28853:168::-;28936:11;28970:6;28965:3;28958:19;29010:4;29005:3;29001:14;28986:29;;28853:168;;;;:::o;29027:169::-;29111:11;29145:6;29140:3;29133:19;29185:4;29180:3;29176:14;29161:29;;29027:169;;;;:::o;29202:148::-;29304:11;29341:3;29326:18;;29202:148;;;;:::o;29356:305::-;29396:3;29415:20;29433:1;29415:20;:::i;:::-;29410:25;;29449:20;29467:1;29449:20;:::i;:::-;29444:25;;29603:1;29535:66;29531:74;29528:1;29525:81;29522:107;;;29609:18;;:::i;:::-;29522:107;29653:1;29650;29646:9;29639:16;;29356:305;;;;:::o;29667:185::-;29707:1;29724:20;29742:1;29724:20;:::i;:::-;29719:25;;29758:20;29776:1;29758:20;:::i;:::-;29753:25;;29797:1;29787:35;;29802:18;;:::i;:::-;29787:35;29844:1;29841;29837:9;29832:14;;29667:185;;;;:::o;29858:348::-;29898:7;29921:20;29939:1;29921:20;:::i;:::-;29916:25;;29955:20;29973:1;29955:20;:::i;:::-;29950:25;;30143:1;30075:66;30071:74;30068:1;30065:81;30060:1;30053:9;30046:17;30042:105;30039:131;;;30150:18;;:::i;:::-;30039:131;30198:1;30195;30191:9;30180:20;;29858:348;;;;:::o;30212:191::-;30252:4;30272:20;30290:1;30272:20;:::i;:::-;30267:25;;30306:20;30324:1;30306:20;:::i;:::-;30301:25;;30345:1;30342;30339:8;30336:34;;;30350:18;;:::i;:::-;30336:34;30395:1;30392;30388:9;30380:17;;30212:191;;;;:::o;30409:96::-;30446:7;30475:24;30493:5;30475:24;:::i;:::-;30464:35;;30409:96;;;:::o;30511:90::-;30545:7;30588:5;30581:13;30574:21;30563:32;;30511:90;;;:::o;30607:149::-;30643:7;30683:66;30676:5;30672:78;30661:89;;30607:149;;;:::o;30762:126::-;30799:7;30839:42;30832:5;30828:54;30817:65;;30762:126;;;:::o;30894:77::-;30931:7;30960:5;30949:16;;30894:77;;;:::o;30977:154::-;31061:6;31056:3;31051;31038:30;31123:1;31114:6;31109:3;31105:16;31098:27;30977:154;;;:::o;31137:307::-;31205:1;31215:113;31229:6;31226:1;31223:13;31215:113;;;31314:1;31309:3;31305:11;31299:18;31295:1;31290:3;31286:11;31279:39;31251:2;31248:1;31244:10;31239:15;;31215:113;;;31346:6;31343:1;31340:13;31337:101;;;31426:1;31417:6;31412:3;31408:16;31401:27;31337:101;31186:258;31137:307;;;:::o;31450:320::-;31494:6;31531:1;31525:4;31521:12;31511:22;;31578:1;31572:4;31568:12;31599:18;31589:81;;31655:4;31647:6;31643:17;31633:27;;31589:81;31717:2;31709:6;31706:14;31686:18;31683:38;31680:84;;;31736:18;;:::i;:::-;31680:84;31501:269;31450:320;;;:::o;31776:281::-;31859:27;31881:4;31859:27;:::i;:::-;31851:6;31847:40;31989:6;31977:10;31974:22;31953:18;31941:10;31938:34;31935:62;31932:88;;;32000:18;;:::i;:::-;31932:88;32040:10;32036:2;32029:22;31819:238;31776:281;;:::o;32063:233::-;32102:3;32125:24;32143:5;32125:24;:::i;:::-;32116:33;;32171:66;32164:5;32161:77;32158:103;;;32241:18;;:::i;:::-;32158:103;32288:1;32281:5;32277:13;32270:20;;32063:233;;;:::o;32302:176::-;32334:1;32351:20;32369:1;32351:20;:::i;:::-;32346:25;;32385:20;32403:1;32385:20;:::i;:::-;32380:25;;32424:1;32414:35;;32429:18;;:::i;:::-;32414:35;32470:1;32467;32463:9;32458:14;;32302:176;;;;:::o;32484:180::-;32532:77;32529:1;32522:88;32629:4;32626:1;32619:15;32653:4;32650:1;32643:15;32670:180;32718:77;32715:1;32708:88;32815:4;32812:1;32805:15;32839:4;32836:1;32829:15;32856:180;32904:77;32901:1;32894:88;33001:4;32998:1;32991:15;33025:4;33022:1;33015:15;33042:180;33090:77;33087:1;33080:88;33187:4;33184:1;33177:15;33211:4;33208:1;33201:15;33228:180;33276:77;33273:1;33266:88;33373:4;33370:1;33363:15;33397:4;33394:1;33387:15;33414:117;33523:1;33520;33513:12;33537:117;33646:1;33643;33636:12;33660:117;33769:1;33766;33759:12;33783:117;33892:1;33889;33882:12;33906:117;34015:1;34012;34005:12;34029:117;34138:1;34135;34128:12;34152:102;34193:6;34244:2;34240:7;34235:2;34228:5;34224:14;34220:28;34210:38;;34152:102;;;:::o;34260:237::-;34400:34;34396:1;34388:6;34384:14;34377:58;34469:20;34464:2;34456:6;34452:15;34445:45;34260:237;:::o;34503:225::-;34643:34;34639:1;34631:6;34627:14;34620:58;34712:8;34707:2;34699:6;34695:15;34688:33;34503:225;:::o;34734:178::-;34874:30;34870:1;34862:6;34858:14;34851:54;34734:178;:::o;34918:223::-;35058:34;35054:1;35046:6;35042:14;35035:58;35127:6;35122:2;35114:6;35110:15;35103:31;34918:223;:::o;35147:175::-;35287:27;35283:1;35275:6;35271:14;35264:51;35147:175;:::o;35328:231::-;35468:34;35464:1;35456:6;35452:14;35445:58;35537:14;35532:2;35524:6;35520:15;35513:39;35328:231;:::o;35565:243::-;35705:34;35701:1;35693:6;35689:14;35682:58;35774:26;35769:2;35761:6;35757:15;35750:51;35565:243;:::o;35814:227::-;35954:34;35950:1;35942:6;35938:14;35931:58;36023:10;36018:2;36010:6;36006:15;35999:35;35814:227;:::o;36047:229::-;36187:34;36183:1;36175:6;36171:14;36164:58;36256:12;36251:2;36243:6;36239:15;36232:37;36047:229;:::o;36282:228::-;36422:34;36418:1;36410:6;36406:14;36399:58;36491:11;36486:2;36478:6;36474:15;36467:36;36282:228;:::o;36516:168::-;36656:20;36652:1;36644:6;36640:14;36633:44;36516:168;:::o;36690:222::-;36830:34;36826:1;36818:6;36814:14;36807:58;36899:5;36894:2;36886:6;36882:15;36875:30;36690:222;:::o;36918:182::-;37058:34;37054:1;37046:6;37042:14;37035:58;36918:182;:::o;37106:231::-;37246:34;37242:1;37234:6;37230:14;37223:58;37315:14;37310:2;37302:6;37298:15;37291:39;37106:231;:::o;37343:182::-;37483:34;37479:1;37471:6;37467:14;37460:58;37343:182;:::o;37531:228::-;37671:34;37667:1;37659:6;37655:14;37648:58;37740:11;37735:2;37727:6;37723:15;37716:36;37531:228;:::o;37765:234::-;37905:34;37901:1;37893:6;37889:14;37882:58;37974:17;37969:2;37961:6;37957:15;37950:42;37765:234;:::o;38005:220::-;38145:34;38141:1;38133:6;38129:14;38122:58;38214:3;38209:2;38201:6;38197:15;38190:28;38005:220;:::o;38231:177::-;38371:29;38367:1;38359:6;38355:14;38348:53;38231:177;:::o;38414:236::-;38554:34;38550:1;38542:6;38538:14;38531:58;38623:19;38618:2;38610:6;38606:15;38599:44;38414:236;:::o;38656:163::-;38796:15;38792:1;38784:6;38780:14;38773:39;38656:163;:::o;38825:181::-;38965:33;38961:1;38953:6;38949:14;38942:57;38825:181;:::o;39012:122::-;39085:24;39103:5;39085:24;:::i;:::-;39078:5;39075:35;39065:63;;39124:1;39121;39114:12;39065:63;39012:122;:::o;39140:116::-;39210:21;39225:5;39210:21;:::i;:::-;39203:5;39200:32;39190:60;;39246:1;39243;39236:12;39190:60;39140:116;:::o;39262:120::-;39334:23;39351:5;39334:23;:::i;:::-;39327:5;39324:34;39314:62;;39372:1;39369;39362:12;39314:62;39262:120;:::o;39388:122::-;39461:24;39479:5;39461:24;:::i;:::-;39454:5;39451:35;39441:63;;39500:1;39497;39490:12;39441:63;39388:122;:::o

Swarm Source

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