ETH Price: $2,833.79 (-10.33%)
Gas: 11 Gwei

Token

Mad Lads (ML)
 

Overview

Max Total Supply

8,888 ML

Holders

551

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
s1nghara.eth
Balance
3 ML
0xbdc48feac848d0d1d3714ef61dc3e15637248a40
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.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 by the current owner.
  */
  function mintTokens(address[] calldata recipients)
  public
  onlyOwner{
    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://kirp0foijh.execute-api.us-east-1.amazonaws.com/dev/token/";
  }
  function contractURI() public pure returns (string memory) {
    return "https://kirp0foijh.execute-api.us-east-1.amazonaws.com/dev/contract";
  }
}

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":"nonpayable","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"}]

60806040523480156200001157600080fd5b5060405162003dc038038062003dc08339818101604052810190620000379190620002cf565b838381600090805190602001906200005192919062000196565b5080600190805190602001906200006a92919062000196565b5050506200008d62000081620000c860201b60201c565b620000d060201b60201c565b60016007819055508160098190555080600a819055506000600b60006101000a81548160ff0219169083151502179055505050505062000501565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a4906200040c565b90600052602060002090601f016020900481019282620001c8576000855562000214565b82601f10620001e357805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000213578251825591602001919060010190620001f6565b5b50905062000223919062000227565b5090565b5b808211156200024257600081600090555060010162000228565b5090565b60006200025d620002578462000396565b6200036d565b9050828152602081018484840111156200027657600080fd5b62000283848285620003d6565b509392505050565b600082601f8301126200029d57600080fd5b8151620002af84826020860162000246565b91505092915050565b600081519050620002c981620004e7565b92915050565b60008060008060808587031215620002e657600080fd5b600085015167ffffffffffffffff8111156200030157600080fd5b6200030f878288016200028b565b945050602085015167ffffffffffffffff8111156200032d57600080fd5b6200033b878288016200028b565b93505060406200034e87828801620002b8565b92505060606200036187828801620002b8565b91505092959194509250565b6000620003796200038c565b905062000387828262000442565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b457620003b3620004a7565b5b620003bf82620004d6565b9050602081019050919050565b6000819050919050565b60005b83811015620003f6578082015181840152602081019050620003d9565b8381111562000406576000848401525b50505050565b600060028204905060018216806200042557607f821691505b602082108114156200043c576200043b62000478565b5b50919050565b6200044d82620004d6565b810181811067ffffffffffffffff821117156200046f576200046e620004a7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620004f281620003cc565b8114620004fe57600080fd5b50565b6138af80620005116000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461059d578063e8a3d485146105da578063e985e9c514610605578063f2fde38b14610642576101b7565b8063a22cb46514610520578063b88d4fde14610549578063bd3e19d414610572576101b7565b8063941ada0e116100c6578063941ada0e1461049757806395d89b41146104c257806397304ced146104ed5780639edcc31014610509576101b7565b806370a0823114610418578063715018a6146104555780638da5cb5b1461046c576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a1461035e5780634f3e1efc146103875780636352211e146103b25780636f8b44b0146103ef576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610335576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061266d565b61066b565b6040516101f09190612b22565b60405180910390f35b34801561020557600080fd5b5061020e61074d565b60405161021b9190612b3d565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126bf565b6107df565b6040516102589190612abb565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125ec565b610864565b005b34801561029657600080fd5b5061029f61097c565b6040516102ac9190612dff565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906124e6565b610986565b005b3480156102ea57600080fd5b506102f36109e6565b005b34801561030157600080fd5b5061030a610a7f565b005b34801561031857600080fd5b50610333600480360381019061032e9190612628565b610b4b565b005b34801561034157600080fd5b5061035c600480360381019061035791906124e6565b610c44565b005b34801561036a57600080fd5b50610385600480360381019061038091906126bf565b610c64565b005b34801561039357600080fd5b5061039c610cea565b6040516103a99190612dff565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d491906126bf565b610cfb565b6040516103e69190612abb565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906126bf565b610dad565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612481565b610e33565b60405161044c9190612dff565b60405180910390f35b34801561046157600080fd5b5061046a610eeb565b005b34801561047857600080fd5b50610481610f73565b60405161048e9190612abb565b60405180910390f35b3480156104a357600080fd5b506104ac610f9d565b6040516104b99190612b22565b60405180910390f35b3480156104ce57600080fd5b506104d7610fb4565b6040516104e49190612b3d565b60405180910390f35b610507600480360381019061050291906126bf565b611046565b005b34801561051557600080fd5b5061051e61125a565b005b34801561052c57600080fd5b50610547600480360381019061054291906125b0565b6112f3565b005b34801561055557600080fd5b50610570600480360381019061056b9190612535565b611474565b005b34801561057e57600080fd5b506105876114d6565b6040516105949190612dff565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf91906126bf565b6114e0565b6040516105d19190612b3d565b60405180910390f35b3480156105e657600080fd5b506105ef611587565b6040516105fc9190612b3d565b60405180910390f35b34801561061157600080fd5b5061062c600480360381019061062791906124aa565b6115a7565b6040516106399190612b22565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612481565b61163b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610746575061074582611733565b5b9050919050565b60606000805461075c9061307e565b80601f01602080910402602001604051908101604052809291908181526020018280546107889061307e565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ea8261179d565b610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090612cff565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086f82610cfb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790612d7f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ff611809565b73ffffffffffffffffffffffffffffffffffffffff16148061092e575061092d81610928611809565b6115a7565b5b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490612c1f565b60405180910390fd5b6109778383611811565b505050565b6000600a54905090565b610997610991611809565b826118ca565b6109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90612d9f565b60405180910390fd5b6109e18383836119a8565b505050565b6109ee611809565b73ffffffffffffffffffffffffffffffffffffffff16610a0c610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612d1f565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a87611809565b73ffffffffffffffffffffffffffffffffffffffff16610aa5610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290612d1f565b60405180910390fd5b610b03610f73565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b48573d6000803e3d6000fd5b50565b610b53611809565b73ffffffffffffffffffffffffffffffffffffffff16610b71610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612d1f565b60405180910390fd5b60005b82829050811015610c3f57610c2b838383818110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c269190612481565b611c04565b508080610c37906130e1565b915050610bca565b505050565b610c5f83838360405180602001604052806000815250611474565b505050565b610c6c611809565b73ffffffffffffffffffffffffffffffffffffffff16610c8a610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790612d1f565b60405180910390fd5b8060098190555050565b6000610cf66008611c31565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90612c7f565b60405180910390fd5b80915050919050565b610db5611809565b73ffffffffffffffffffffffffffffffffffffffff16610dd3610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090612d1f565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90612c5f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef3611809565b73ffffffffffffffffffffffffffffffffffffffff16610f11610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90612d1f565b60405180910390fd5b610f716000611c3f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b606060018054610fc39061307e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef9061307e565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b5050505050905090565b6002600754141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612ddf565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90612dbf565b60405180910390fd5b6000811180156110f4575060648111155b611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612c3f565b60405180910390fd5b600a546111526111436008611c31565b83611d0590919063ffffffff16565b10611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990612c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166111b1610f73565b73ffffffffffffffffffffffffffffffffffffffff1614806111e757506111e381600954611d1b90919063ffffffff16565b3410155b611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612cbf565b60405180910390fd5b60005b8181101561124e5761123a33611c04565b508080611246906130e1565b915050611229565b50600160078190555050565b611262611809565b73ffffffffffffffffffffffffffffffffffffffff16611280610f73565b73ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612d1f565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6112fb611809565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090612bdf565b60405180910390fd5b8060056000611376611809565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611423611809565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114689190612b22565b60405180910390a35050565b61148561147f611809565b836118ca565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90612d9f565b60405180910390fd5b6114d084848484611d31565b50505050565b6000600954905090565b60606114eb8261179d565b61152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190612d5f565b60405180910390fd5b6000611534611d8d565b90506000815111611554576040518060200160405280600081525061157f565b8061155e84611dad565b60405160200161156f929190612a97565b6040516020818303038152906040525b915050919050565b606060405180608001604052806043815260200161383760439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611643611809565b73ffffffffffffffffffffffffffffffffffffffff16611661610f73565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90612b7f565b60405180910390fd5b61173081611c3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661188483610cfb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118d58261179d565b611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90612bff565b60405180910390fd5b600061191f83610cfb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061198e57508373ffffffffffffffffffffffffffffffffffffffff16611976846107df565b73ffffffffffffffffffffffffffffffffffffffff16145b8061199f575061199e81856115a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119c882610cfb565b73ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8590612bbf565b60405180910390fd5b611a99838383611f5a565b611aa4600082611811565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af49190612f94565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4b9190612eb3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c106008611f5f565b6000611c1c6008611c31565b9050611c288382611f75565b80915050919050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d139190612eb3565b905092915050565b60008183611d299190612f3a565b905092915050565b611d3c8484846119a8565b611d4884848484611f93565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90612b5f565b60405180910390fd5b50505050565b60606040518060800160405280604181526020016137f660419139905090565b60606000821415611df5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f55565b600082905060005b60008214611e27578080611e10906130e1565b915050600a82611e209190612f09565b9150611dfd565b60008167ffffffffffffffff811115611e69577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e9b5781602001600182028036833780820191505090505b5090505b60008514611f4e57600182611eb49190612f94565b9150600a85611ec3919061312a565b6030611ecf9190612eb3565b60f81b818381518110611f0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f479190612f09565b9450611e9f565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f8f82826040518060200160405280600081525061212a565b5050565b6000611fb48473ffffffffffffffffffffffffffffffffffffffff16612185565b1561211d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdd611809565b8786866040518563ffffffff1660e01b8152600401611fff9493929190612ad6565b602060405180830381600087803b15801561201957600080fd5b505af192505050801561204a57506040513d601f19601f820116820180604052508101906120479190612696565b60015b6120cd573d806000811461207a576040519150601f19603f3d011682016040523d82523d6000602084013e61207f565b606091505b506000815114156120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90612b5f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612122565b600190505b949350505050565b6121348383612198565b6121416000848484611f93565b612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790612b5f565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90612cdf565b60405180910390fd5b6122118161179d565b15612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890612b9f565b60405180910390fd5b61225d60008383611f5a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ad9190612eb3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061237961237484612e3f565b612e1a565b90508281526020810184848401111561239157600080fd5b61239c84828561303c565b509392505050565b6000813590506123b381613799565b92915050565b60008083601f8401126123cb57600080fd5b8235905067ffffffffffffffff8111156123e457600080fd5b6020830191508360208202830111156123fc57600080fd5b9250929050565b600081359050612412816137b0565b92915050565b600081359050612427816137c7565b92915050565b60008151905061243c816137c7565b92915050565b600082601f83011261245357600080fd5b8135612463848260208601612366565b91505092915050565b60008135905061247b816137de565b92915050565b60006020828403121561249357600080fd5b60006124a1848285016123a4565b91505092915050565b600080604083850312156124bd57600080fd5b60006124cb858286016123a4565b92505060206124dc858286016123a4565b9150509250929050565b6000806000606084860312156124fb57600080fd5b6000612509868287016123a4565b935050602061251a868287016123a4565b925050604061252b8682870161246c565b9150509250925092565b6000806000806080858703121561254b57600080fd5b6000612559878288016123a4565b945050602061256a878288016123a4565b935050604061257b8782880161246c565b925050606085013567ffffffffffffffff81111561259857600080fd5b6125a487828801612442565b91505092959194509250565b600080604083850312156125c357600080fd5b60006125d1858286016123a4565b92505060206125e285828601612403565b9150509250929050565b600080604083850312156125ff57600080fd5b600061260d858286016123a4565b925050602061261e8582860161246c565b9150509250929050565b6000806020838503121561263b57600080fd5b600083013567ffffffffffffffff81111561265557600080fd5b612661858286016123b9565b92509250509250929050565b60006020828403121561267f57600080fd5b600061268d84828501612418565b91505092915050565b6000602082840312156126a857600080fd5b60006126b68482850161242d565b91505092915050565b6000602082840312156126d157600080fd5b60006126df8482850161246c565b91505092915050565b6126f181612fc8565b82525050565b61270081612fda565b82525050565b600061271182612e70565b61271b8185612e86565b935061272b81856020860161304b565b61273481613217565b840191505092915050565b600061274a82612e7b565b6127548185612e97565b935061276481856020860161304b565b61276d81613217565b840191505092915050565b600061278382612e7b565b61278d8185612ea8565b935061279d81856020860161304b565b80840191505092915050565b60006127b6603283612e97565b91506127c182613228565b604082019050919050565b60006127d9602683612e97565b91506127e482613277565b604082019050919050565b60006127fc601c83612e97565b9150612807826132c6565b602082019050919050565b600061281f602483612e97565b915061282a826132ef565b604082019050919050565b6000612842601983612e97565b915061284d8261333e565b602082019050919050565b6000612865602c83612e97565b915061287082613367565b604082019050919050565b6000612888603883612e97565b9150612893826133b6565b604082019050919050565b60006128ab602883612e97565b91506128b682613405565b604082019050919050565b60006128ce602a83612e97565b91506128d982613454565b604082019050919050565b60006128f1602983612e97565b91506128fc826134a3565b604082019050919050565b6000612914601283612e97565b915061291f826134f2565b602082019050919050565b6000612937602383612e97565b91506129428261351b565b604082019050919050565b600061295a602083612e97565b91506129658261356a565b602082019050919050565b600061297d602c83612e97565b915061298882613593565b604082019050919050565b60006129a0602083612e97565b91506129ab826135e2565b602082019050919050565b60006129c3602983612e97565b91506129ce8261360b565b604082019050919050565b60006129e6602f83612e97565b91506129f18261365a565b604082019050919050565b6000612a09602183612e97565b9150612a14826136a9565b604082019050919050565b6000612a2c603183612e97565b9150612a37826136f8565b604082019050919050565b6000612a4f600d83612e97565b9150612a5a82613747565b602082019050919050565b6000612a72601f83612e97565b9150612a7d82613770565b602082019050919050565b612a9181613032565b82525050565b6000612aa38285612778565b9150612aaf8284612778565b91508190509392505050565b6000602082019050612ad060008301846126e8565b92915050565b6000608082019050612aeb60008301876126e8565b612af860208301866126e8565b612b056040830185612a88565b8181036060830152612b178184612706565b905095945050505050565b6000602082019050612b3760008301846126f7565b92915050565b60006020820190508181036000830152612b57818461273f565b905092915050565b60006020820190508181036000830152612b78816127a9565b9050919050565b60006020820190508181036000830152612b98816127cc565b9050919050565b60006020820190508181036000830152612bb8816127ef565b9050919050565b60006020820190508181036000830152612bd881612812565b9050919050565b60006020820190508181036000830152612bf881612835565b9050919050565b60006020820190508181036000830152612c1881612858565b9050919050565b60006020820190508181036000830152612c388161287b565b9050919050565b60006020820190508181036000830152612c588161289e565b9050919050565b60006020820190508181036000830152612c78816128c1565b9050919050565b60006020820190508181036000830152612c98816128e4565b9050919050565b60006020820190508181036000830152612cb881612907565b9050919050565b60006020820190508181036000830152612cd88161292a565b9050919050565b60006020820190508181036000830152612cf88161294d565b9050919050565b60006020820190508181036000830152612d1881612970565b9050919050565b60006020820190508181036000830152612d3881612993565b9050919050565b60006020820190508181036000830152612d58816129b6565b9050919050565b60006020820190508181036000830152612d78816129d9565b9050919050565b60006020820190508181036000830152612d98816129fc565b9050919050565b60006020820190508181036000830152612db881612a1f565b9050919050565b60006020820190508181036000830152612dd881612a42565b9050919050565b60006020820190508181036000830152612df881612a65565b9050919050565b6000602082019050612e146000830184612a88565b92915050565b6000612e24612e35565b9050612e3082826130b0565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5a57612e596131e8565b5b612e6382613217565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ebe82613032565b9150612ec983613032565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efe57612efd61315b565b5b828201905092915050565b6000612f1482613032565b9150612f1f83613032565b925082612f2f57612f2e61318a565b5b828204905092915050565b6000612f4582613032565b9150612f5083613032565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f8957612f8861315b565b5b828202905092915050565b6000612f9f82613032565b9150612faa83613032565b925082821015612fbd57612fbc61315b565b5b828203905092915050565b6000612fd382613012565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561306957808201518184015260208101905061304e565b83811115613078576000848401525b50505050565b6000600282049050600182168061309657607f821691505b602082108114156130aa576130a96131b9565b5b50919050565b6130b982613217565b810181811067ffffffffffffffff821117156130d8576130d76131e8565b5b80604052505050565b60006130ec82613032565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561311f5761311e61315b565b5b600182019050919050565b600061313582613032565b915061314083613032565b9250826131505761314f61318a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6137a281612fc8565b81146137ad57600080fd5b50565b6137b981612fda565b81146137c457600080fd5b50565b6137d081612fe6565b81146137db57600080fd5b50565b6137e781613032565b81146137f257600080fd5b5056fe68747470733a2f2f6b69727030666f696a682e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68747470733a2f2f6b69727030666f696a682e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e7472616374a26469706673582212206b71d7ab5c2d0517dbed207aa22dca0000786bb77512c105f9791bbcb968033064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000022b800000000000000000000000000000000000000000000000000000000000000084d6164204c61647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d4c000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461059d578063e8a3d485146105da578063e985e9c514610605578063f2fde38b14610642576101b7565b8063a22cb46514610520578063b88d4fde14610549578063bd3e19d414610572576101b7565b8063941ada0e116100c6578063941ada0e1461049757806395d89b41146104c257806397304ced146104ed5780639edcc31014610509576101b7565b806370a0823114610418578063715018a6146104555780638da5cb5b1461046c576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a1461035e5780634f3e1efc146103875780636352211e146103b25780636f8b44b0146103ef576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610335576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061266d565b61066b565b6040516101f09190612b22565b60405180910390f35b34801561020557600080fd5b5061020e61074d565b60405161021b9190612b3d565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126bf565b6107df565b6040516102589190612abb565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125ec565b610864565b005b34801561029657600080fd5b5061029f61097c565b6040516102ac9190612dff565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906124e6565b610986565b005b3480156102ea57600080fd5b506102f36109e6565b005b34801561030157600080fd5b5061030a610a7f565b005b34801561031857600080fd5b50610333600480360381019061032e9190612628565b610b4b565b005b34801561034157600080fd5b5061035c600480360381019061035791906124e6565b610c44565b005b34801561036a57600080fd5b50610385600480360381019061038091906126bf565b610c64565b005b34801561039357600080fd5b5061039c610cea565b6040516103a99190612dff565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d491906126bf565b610cfb565b6040516103e69190612abb565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906126bf565b610dad565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612481565b610e33565b60405161044c9190612dff565b60405180910390f35b34801561046157600080fd5b5061046a610eeb565b005b34801561047857600080fd5b50610481610f73565b60405161048e9190612abb565b60405180910390f35b3480156104a357600080fd5b506104ac610f9d565b6040516104b99190612b22565b60405180910390f35b3480156104ce57600080fd5b506104d7610fb4565b6040516104e49190612b3d565b60405180910390f35b610507600480360381019061050291906126bf565b611046565b005b34801561051557600080fd5b5061051e61125a565b005b34801561052c57600080fd5b50610547600480360381019061054291906125b0565b6112f3565b005b34801561055557600080fd5b50610570600480360381019061056b9190612535565b611474565b005b34801561057e57600080fd5b506105876114d6565b6040516105949190612dff565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf91906126bf565b6114e0565b6040516105d19190612b3d565b60405180910390f35b3480156105e657600080fd5b506105ef611587565b6040516105fc9190612b3d565b60405180910390f35b34801561061157600080fd5b5061062c600480360381019061062791906124aa565b6115a7565b6040516106399190612b22565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612481565b61163b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610746575061074582611733565b5b9050919050565b60606000805461075c9061307e565b80601f01602080910402602001604051908101604052809291908181526020018280546107889061307e565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ea8261179d565b610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090612cff565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086f82610cfb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790612d7f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ff611809565b73ffffffffffffffffffffffffffffffffffffffff16148061092e575061092d81610928611809565b6115a7565b5b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490612c1f565b60405180910390fd5b6109778383611811565b505050565b6000600a54905090565b610997610991611809565b826118ca565b6109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90612d9f565b60405180910390fd5b6109e18383836119a8565b505050565b6109ee611809565b73ffffffffffffffffffffffffffffffffffffffff16610a0c610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612d1f565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a87611809565b73ffffffffffffffffffffffffffffffffffffffff16610aa5610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290612d1f565b60405180910390fd5b610b03610f73565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b48573d6000803e3d6000fd5b50565b610b53611809565b73ffffffffffffffffffffffffffffffffffffffff16610b71610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612d1f565b60405180910390fd5b60005b82829050811015610c3f57610c2b838383818110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c269190612481565b611c04565b508080610c37906130e1565b915050610bca565b505050565b610c5f83838360405180602001604052806000815250611474565b505050565b610c6c611809565b73ffffffffffffffffffffffffffffffffffffffff16610c8a610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790612d1f565b60405180910390fd5b8060098190555050565b6000610cf66008611c31565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90612c7f565b60405180910390fd5b80915050919050565b610db5611809565b73ffffffffffffffffffffffffffffffffffffffff16610dd3610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090612d1f565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90612c5f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef3611809565b73ffffffffffffffffffffffffffffffffffffffff16610f11610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90612d1f565b60405180910390fd5b610f716000611c3f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b606060018054610fc39061307e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef9061307e565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b5050505050905090565b6002600754141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612ddf565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90612dbf565b60405180910390fd5b6000811180156110f4575060648111155b611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612c3f565b60405180910390fd5b600a546111526111436008611c31565b83611d0590919063ffffffff16565b10611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990612c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166111b1610f73565b73ffffffffffffffffffffffffffffffffffffffff1614806111e757506111e381600954611d1b90919063ffffffff16565b3410155b611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612cbf565b60405180910390fd5b60005b8181101561124e5761123a33611c04565b508080611246906130e1565b915050611229565b50600160078190555050565b611262611809565b73ffffffffffffffffffffffffffffffffffffffff16611280610f73565b73ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612d1f565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6112fb611809565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090612bdf565b60405180910390fd5b8060056000611376611809565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611423611809565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114689190612b22565b60405180910390a35050565b61148561147f611809565b836118ca565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90612d9f565b60405180910390fd5b6114d084848484611d31565b50505050565b6000600954905090565b60606114eb8261179d565b61152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190612d5f565b60405180910390fd5b6000611534611d8d565b90506000815111611554576040518060200160405280600081525061157f565b8061155e84611dad565b60405160200161156f929190612a97565b6040516020818303038152906040525b915050919050565b606060405180608001604052806043815260200161383760439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611643611809565b73ffffffffffffffffffffffffffffffffffffffff16611661610f73565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90612b7f565b60405180910390fd5b61173081611c3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661188483610cfb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118d58261179d565b611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90612bff565b60405180910390fd5b600061191f83610cfb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061198e57508373ffffffffffffffffffffffffffffffffffffffff16611976846107df565b73ffffffffffffffffffffffffffffffffffffffff16145b8061199f575061199e81856115a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119c882610cfb565b73ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8590612bbf565b60405180910390fd5b611a99838383611f5a565b611aa4600082611811565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af49190612f94565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4b9190612eb3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c106008611f5f565b6000611c1c6008611c31565b9050611c288382611f75565b80915050919050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d139190612eb3565b905092915050565b60008183611d299190612f3a565b905092915050565b611d3c8484846119a8565b611d4884848484611f93565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90612b5f565b60405180910390fd5b50505050565b60606040518060800160405280604181526020016137f660419139905090565b60606000821415611df5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f55565b600082905060005b60008214611e27578080611e10906130e1565b915050600a82611e209190612f09565b9150611dfd565b60008167ffffffffffffffff811115611e69577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e9b5781602001600182028036833780820191505090505b5090505b60008514611f4e57600182611eb49190612f94565b9150600a85611ec3919061312a565b6030611ecf9190612eb3565b60f81b818381518110611f0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f479190612f09565b9450611e9f565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f8f82826040518060200160405280600081525061212a565b5050565b6000611fb48473ffffffffffffffffffffffffffffffffffffffff16612185565b1561211d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdd611809565b8786866040518563ffffffff1660e01b8152600401611fff9493929190612ad6565b602060405180830381600087803b15801561201957600080fd5b505af192505050801561204a57506040513d601f19601f820116820180604052508101906120479190612696565b60015b6120cd573d806000811461207a576040519150601f19603f3d011682016040523d82523d6000602084013e61207f565b606091505b506000815114156120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90612b5f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612122565b600190505b949350505050565b6121348383612198565b6121416000848484611f93565b612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790612b5f565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90612cdf565b60405180910390fd5b6122118161179d565b15612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890612b9f565b60405180910390fd5b61225d60008383611f5a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ad9190612eb3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061237961237484612e3f565b612e1a565b90508281526020810184848401111561239157600080fd5b61239c84828561303c565b509392505050565b6000813590506123b381613799565b92915050565b60008083601f8401126123cb57600080fd5b8235905067ffffffffffffffff8111156123e457600080fd5b6020830191508360208202830111156123fc57600080fd5b9250929050565b600081359050612412816137b0565b92915050565b600081359050612427816137c7565b92915050565b60008151905061243c816137c7565b92915050565b600082601f83011261245357600080fd5b8135612463848260208601612366565b91505092915050565b60008135905061247b816137de565b92915050565b60006020828403121561249357600080fd5b60006124a1848285016123a4565b91505092915050565b600080604083850312156124bd57600080fd5b60006124cb858286016123a4565b92505060206124dc858286016123a4565b9150509250929050565b6000806000606084860312156124fb57600080fd5b6000612509868287016123a4565b935050602061251a868287016123a4565b925050604061252b8682870161246c565b9150509250925092565b6000806000806080858703121561254b57600080fd5b6000612559878288016123a4565b945050602061256a878288016123a4565b935050604061257b8782880161246c565b925050606085013567ffffffffffffffff81111561259857600080fd5b6125a487828801612442565b91505092959194509250565b600080604083850312156125c357600080fd5b60006125d1858286016123a4565b92505060206125e285828601612403565b9150509250929050565b600080604083850312156125ff57600080fd5b600061260d858286016123a4565b925050602061261e8582860161246c565b9150509250929050565b6000806020838503121561263b57600080fd5b600083013567ffffffffffffffff81111561265557600080fd5b612661858286016123b9565b92509250509250929050565b60006020828403121561267f57600080fd5b600061268d84828501612418565b91505092915050565b6000602082840312156126a857600080fd5b60006126b68482850161242d565b91505092915050565b6000602082840312156126d157600080fd5b60006126df8482850161246c565b91505092915050565b6126f181612fc8565b82525050565b61270081612fda565b82525050565b600061271182612e70565b61271b8185612e86565b935061272b81856020860161304b565b61273481613217565b840191505092915050565b600061274a82612e7b565b6127548185612e97565b935061276481856020860161304b565b61276d81613217565b840191505092915050565b600061278382612e7b565b61278d8185612ea8565b935061279d81856020860161304b565b80840191505092915050565b60006127b6603283612e97565b91506127c182613228565b604082019050919050565b60006127d9602683612e97565b91506127e482613277565b604082019050919050565b60006127fc601c83612e97565b9150612807826132c6565b602082019050919050565b600061281f602483612e97565b915061282a826132ef565b604082019050919050565b6000612842601983612e97565b915061284d8261333e565b602082019050919050565b6000612865602c83612e97565b915061287082613367565b604082019050919050565b6000612888603883612e97565b9150612893826133b6565b604082019050919050565b60006128ab602883612e97565b91506128b682613405565b604082019050919050565b60006128ce602a83612e97565b91506128d982613454565b604082019050919050565b60006128f1602983612e97565b91506128fc826134a3565b604082019050919050565b6000612914601283612e97565b915061291f826134f2565b602082019050919050565b6000612937602383612e97565b91506129428261351b565b604082019050919050565b600061295a602083612e97565b91506129658261356a565b602082019050919050565b600061297d602c83612e97565b915061298882613593565b604082019050919050565b60006129a0602083612e97565b91506129ab826135e2565b602082019050919050565b60006129c3602983612e97565b91506129ce8261360b565b604082019050919050565b60006129e6602f83612e97565b91506129f18261365a565b604082019050919050565b6000612a09602183612e97565b9150612a14826136a9565b604082019050919050565b6000612a2c603183612e97565b9150612a37826136f8565b604082019050919050565b6000612a4f600d83612e97565b9150612a5a82613747565b602082019050919050565b6000612a72601f83612e97565b9150612a7d82613770565b602082019050919050565b612a9181613032565b82525050565b6000612aa38285612778565b9150612aaf8284612778565b91508190509392505050565b6000602082019050612ad060008301846126e8565b92915050565b6000608082019050612aeb60008301876126e8565b612af860208301866126e8565b612b056040830185612a88565b8181036060830152612b178184612706565b905095945050505050565b6000602082019050612b3760008301846126f7565b92915050565b60006020820190508181036000830152612b57818461273f565b905092915050565b60006020820190508181036000830152612b78816127a9565b9050919050565b60006020820190508181036000830152612b98816127cc565b9050919050565b60006020820190508181036000830152612bb8816127ef565b9050919050565b60006020820190508181036000830152612bd881612812565b9050919050565b60006020820190508181036000830152612bf881612835565b9050919050565b60006020820190508181036000830152612c1881612858565b9050919050565b60006020820190508181036000830152612c388161287b565b9050919050565b60006020820190508181036000830152612c588161289e565b9050919050565b60006020820190508181036000830152612c78816128c1565b9050919050565b60006020820190508181036000830152612c98816128e4565b9050919050565b60006020820190508181036000830152612cb881612907565b9050919050565b60006020820190508181036000830152612cd88161292a565b9050919050565b60006020820190508181036000830152612cf88161294d565b9050919050565b60006020820190508181036000830152612d1881612970565b9050919050565b60006020820190508181036000830152612d3881612993565b9050919050565b60006020820190508181036000830152612d58816129b6565b9050919050565b60006020820190508181036000830152612d78816129d9565b9050919050565b60006020820190508181036000830152612d98816129fc565b9050919050565b60006020820190508181036000830152612db881612a1f565b9050919050565b60006020820190508181036000830152612dd881612a42565b9050919050565b60006020820190508181036000830152612df881612a65565b9050919050565b6000602082019050612e146000830184612a88565b92915050565b6000612e24612e35565b9050612e3082826130b0565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5a57612e596131e8565b5b612e6382613217565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ebe82613032565b9150612ec983613032565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efe57612efd61315b565b5b828201905092915050565b6000612f1482613032565b9150612f1f83613032565b925082612f2f57612f2e61318a565b5b828204905092915050565b6000612f4582613032565b9150612f5083613032565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f8957612f8861315b565b5b828202905092915050565b6000612f9f82613032565b9150612faa83613032565b925082821015612fbd57612fbc61315b565b5b828203905092915050565b6000612fd382613012565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561306957808201518184015260208101905061304e565b83811115613078576000848401525b50505050565b6000600282049050600182168061309657607f821691505b602082108114156130aa576130a96131b9565b5b50919050565b6130b982613217565b810181811067ffffffffffffffff821117156130d8576130d76131e8565b5b80604052505050565b60006130ec82613032565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561311f5761311e61315b565b5b600182019050919050565b600061313582613032565b915061314083613032565b9250826131505761314f61318a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6137a281612fc8565b81146137ad57600080fd5b50565b6137b981612fda565b81146137c457600080fd5b50565b6137d081612fe6565b81146137db57600080fd5b50565b6137e781613032565b81146137f257600080fd5b5056fe68747470733a2f2f6b69727030666f696a682e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68747470733a2f2f6b69727030666f696a682e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e7472616374a26469706673582212206b71d7ab5c2d0517dbed207aa22dca0000786bb77512c105f9791bbcb968033064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000022b800000000000000000000000000000000000000000000000000000000000000084d6164204c61647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d4c000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): Mad Lads
Arg [1] : symbol (string): ML
Arg [2] : cost (uint256): 20000000000000000
Arg [3] : supply (uint256): 8888

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4d6164204c616473000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4d4c000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44846:3575:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19705:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22209:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21732:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47830:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23099:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45898:89;;;;;;;;;;;;;:::i;:::-;;47332:97;;;;;;;;;;;;;:::i;:::-;;46685:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23509:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46957:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47916:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20344:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47131:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20074:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34737:94;;;;;;;;;;;;;:::i;:::-;;34086:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48016:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20819:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46073:491;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45661:89;;;;;;;;;;;;;:::i;:::-;;22502:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23765:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47749:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20994:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48270:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22868:164;;;;;;;;;;;;;;;;;;;;;;;:::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;:::-;21732:411;;;:::o;47830:82::-;47874:7;47896:10;;47889:17;;47830: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;47332:97::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47383:7:::1;:5;:7::i;:::-;47375:25;;:48;47401:21;47375:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47332:97::o:0;46685:164::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46769:6:::1;46765:79;46781:10;;:17;;46779:1;:19;46765:79;;;46815:20;46821:10;;46832:1;46821:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46815:5;:20::i;:::-;;46800:3;;;;;:::i;:::-;;;;46765:79;;;;46685:164:::0;;:::o;23509:185::-;23647:39;23664:4;23670:2;23674:7;23647:39;;;;;;;;;;;;:16;:39::i;:::-;23509:185;;;:::o;46957:76::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47023:4:::1;47011:9;:16;;;;46957:76:::0;:::o;47916:96::-;47965:7;47987:19;:9;:17;:19::i;:::-;47980:26;;47916: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;47131:80::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47202:3:::1;47189:10;:16;;;;47131: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;48016:92::-;48062:4;48082:20;;;;;;;;;;;48075:27;;48016: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;47749:77::-;47789:7;47811:9;;47804:16;;47749: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;48270:148::-;48314:13;48336:76;;;;;;;;;;;;;;;;;;;48270:148;:::o;22868:164::-;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;47567:176::-;47620:7;47635:21;:9;:19;:21::i;:::-;47663:10;47676:19;:9;:17;:19::i;:::-;47663:32;;47702:17;47712:2;47716;47702:9;:17::i;:::-;47735:2;47728:9;;;47567:176;;;:::o;32571:114::-;32636:7;32663;:14;;;32656:21;;32571:114;;;:::o;35186:173::-;35242:16;35261:6;;;;;;;;;;;35242:25;;35287:8;35278:6;;:17;;;;;;;;;;;;;;;;;;35342:8;35311:40;;35332:8;35311:40;;;;;;;;;;;;35186:173;;:::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;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;48112:154::-;48164:13;48186:74;;;;;;;;;;;;;;;;;;;48112:154;:::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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;: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:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:137::-;1075:5;1113:6;1100:20;1091:29;;1129:32;1155:5;1129:32;:::i;:::-;1081:86;;;;:::o;1173:141::-;1229:5;1260:6;1254:13;1245:22;;1276:32;1302:5;1276:32;:::i;:::-;1235:79;;;;:::o;1333:271::-;1388:5;1437:3;1430:4;1422:6;1418:17;1414:27;1404:2;;1455:1;1452;1445:12;1404:2;1495:6;1482:20;1520:78;1594:3;1586:6;1579:4;1571:6;1567:17;1520:78;:::i;:::-;1511:87;;1394:210;;;;;:::o;1610:139::-;1656:5;1694:6;1681:20;1672:29;;1710:33;1737:5;1710:33;:::i;:::-;1662:87;;;;:::o;1755:262::-;1814:6;1863:2;1851:9;1842:7;1838:23;1834:32;1831:2;;;1879:1;1876;1869:12;1831:2;1922:1;1947:53;1992:7;1983:6;1972:9;1968:22;1947:53;:::i;:::-;1937:63;;1893:117;1821:196;;;;:::o;2023:407::-;2091:6;2099;2148:2;2136:9;2127:7;2123:23;2119:32;2116:2;;;2164:1;2161;2154:12;2116:2;2207:1;2232:53;2277:7;2268:6;2257:9;2253:22;2232:53;:::i;:::-;2222:63;;2178:117;2334:2;2360:53;2405:7;2396:6;2385:9;2381:22;2360:53;:::i;:::-;2350:63;;2305:118;2106:324;;;;;:::o;2436:552::-;2513:6;2521;2529;2578:2;2566:9;2557:7;2553:23;2549:32;2546:2;;;2594:1;2591;2584:12;2546:2;2637:1;2662:53;2707:7;2698:6;2687:9;2683:22;2662:53;:::i;:::-;2652:63;;2608:117;2764:2;2790:53;2835:7;2826:6;2815:9;2811:22;2790:53;:::i;:::-;2780:63;;2735:118;2892:2;2918:53;2963:7;2954:6;2943:9;2939:22;2918:53;:::i;:::-;2908:63;;2863:118;2536:452;;;;;:::o;2994:809::-;3089:6;3097;3105;3113;3162:3;3150:9;3141:7;3137:23;3133:33;3130:2;;;3179:1;3176;3169:12;3130:2;3222:1;3247:53;3292:7;3283:6;3272:9;3268:22;3247:53;:::i;:::-;3237:63;;3193:117;3349:2;3375:53;3420:7;3411:6;3400:9;3396:22;3375:53;:::i;:::-;3365:63;;3320:118;3477:2;3503:53;3548:7;3539:6;3528:9;3524:22;3503:53;:::i;:::-;3493:63;;3448:118;3633:2;3622:9;3618:18;3605:32;3664:18;3656:6;3653:30;3650:2;;;3696:1;3693;3686:12;3650:2;3724:62;3778:7;3769:6;3758:9;3754:22;3724:62;:::i;:::-;3714:72;;3576:220;3120:683;;;;;;;:::o;3809:401::-;3874:6;3882;3931:2;3919:9;3910:7;3906:23;3902:32;3899:2;;;3947:1;3944;3937:12;3899:2;3990:1;4015:53;4060:7;4051:6;4040:9;4036:22;4015:53;:::i;:::-;4005:63;;3961:117;4117:2;4143:50;4185:7;4176:6;4165:9;4161:22;4143:50;:::i;:::-;4133:60;;4088:115;3889:321;;;;;:::o;4216:407::-;4284:6;4292;4341:2;4329:9;4320:7;4316:23;4312:32;4309:2;;;4357:1;4354;4347:12;4309:2;4400:1;4425:53;4470:7;4461:6;4450:9;4446:22;4425:53;:::i;:::-;4415:63;;4371:117;4527:2;4553:53;4598:7;4589:6;4578:9;4574:22;4553:53;:::i;:::-;4543:63;;4498:118;4299:324;;;;;:::o;4629:425::-;4715:6;4723;4772:2;4760:9;4751:7;4747:23;4743:32;4740:2;;;4788:1;4785;4778:12;4740:2;4859:1;4848:9;4844:17;4831:31;4889:18;4881:6;4878:30;4875:2;;;4921:1;4918;4911:12;4875:2;4957:80;5029:7;5020:6;5009:9;5005:22;4957:80;:::i;:::-;4939:98;;;;4802:245;4730:324;;;;;:::o;5060:260::-;5118:6;5167:2;5155:9;5146:7;5142:23;5138:32;5135:2;;;5183:1;5180;5173:12;5135:2;5226:1;5251:52;5295:7;5286:6;5275:9;5271:22;5251:52;:::i;:::-;5241:62;;5197:116;5125:195;;;;:::o;5326:282::-;5395:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:2;;;5460:1;5457;5450:12;5412:2;5503:1;5528:63;5583:7;5574:6;5563:9;5559:22;5528:63;:::i;:::-;5518:73;;5474:127;5402:206;;;;:::o;5614:262::-;5673:6;5722:2;5710:9;5701:7;5697:23;5693:32;5690:2;;;5738:1;5735;5728:12;5690:2;5781:1;5806:53;5851:7;5842:6;5831:9;5827:22;5806:53;:::i;:::-;5796:63;;5752:117;5680:196;;;;:::o;5882:118::-;5969:24;5987:5;5969:24;:::i;:::-;5964:3;5957:37;5947:53;;:::o;6006:109::-;6087:21;6102:5;6087:21;:::i;:::-;6082:3;6075:34;6065:50;;:::o;6121:360::-;6207:3;6235:38;6267:5;6235:38;:::i;:::-;6289:70;6352:6;6347:3;6289:70;:::i;:::-;6282:77;;6368:52;6413:6;6408:3;6401:4;6394:5;6390:16;6368:52;:::i;:::-;6445:29;6467:6;6445:29;:::i;:::-;6440:3;6436:39;6429:46;;6211:270;;;;;:::o;6487:364::-;6575:3;6603:39;6636:5;6603:39;:::i;:::-;6658:71;6722:6;6717:3;6658:71;:::i;:::-;6651:78;;6738:52;6783:6;6778:3;6771:4;6764:5;6760:16;6738:52;:::i;:::-;6815:29;6837:6;6815:29;:::i;:::-;6810:3;6806:39;6799:46;;6579:272;;;;;:::o;6857:377::-;6963:3;6991:39;7024:5;6991:39;:::i;:::-;7046:89;7128:6;7123:3;7046:89;:::i;:::-;7039:96;;7144:52;7189:6;7184:3;7177:4;7170:5;7166:16;7144:52;:::i;:::-;7221:6;7216:3;7212:16;7205:23;;6967:267;;;;;:::o;7240:366::-;7382:3;7403:67;7467:2;7462:3;7403:67;:::i;:::-;7396:74;;7479:93;7568:3;7479:93;:::i;:::-;7597:2;7592:3;7588:12;7581:19;;7386:220;;;:::o;7612:366::-;7754:3;7775:67;7839:2;7834:3;7775:67;:::i;:::-;7768:74;;7851:93;7940:3;7851:93;:::i;:::-;7969:2;7964:3;7960:12;7953:19;;7758:220;;;:::o;7984:366::-;8126:3;8147:67;8211:2;8206:3;8147:67;:::i;:::-;8140:74;;8223:93;8312:3;8223:93;:::i;:::-;8341:2;8336:3;8332:12;8325:19;;8130:220;;;:::o;8356:366::-;8498:3;8519:67;8583:2;8578:3;8519:67;:::i;:::-;8512:74;;8595:93;8684:3;8595:93;:::i;:::-;8713:2;8708:3;8704:12;8697:19;;8502:220;;;:::o;8728:366::-;8870:3;8891:67;8955:2;8950:3;8891:67;:::i;:::-;8884:74;;8967:93;9056:3;8967:93;:::i;:::-;9085:2;9080:3;9076:12;9069:19;;8874:220;;;:::o;9100:366::-;9242:3;9263:67;9327:2;9322:3;9263:67;:::i;:::-;9256:74;;9339:93;9428:3;9339:93;:::i;:::-;9457:2;9452:3;9448:12;9441:19;;9246:220;;;:::o;9472:366::-;9614:3;9635:67;9699:2;9694:3;9635:67;:::i;:::-;9628:74;;9711:93;9800:3;9711:93;:::i;:::-;9829:2;9824:3;9820:12;9813:19;;9618:220;;;:::o;9844:366::-;9986:3;10007:67;10071:2;10066:3;10007:67;:::i;:::-;10000:74;;10083:93;10172:3;10083:93;:::i;:::-;10201:2;10196:3;10192:12;10185:19;;9990:220;;;:::o;10216:366::-;10358:3;10379:67;10443:2;10438:3;10379:67;:::i;:::-;10372:74;;10455:93;10544:3;10455:93;:::i;:::-;10573:2;10568:3;10564:12;10557:19;;10362:220;;;:::o;10588:366::-;10730:3;10751:67;10815:2;10810:3;10751:67;:::i;:::-;10744:74;;10827:93;10916:3;10827:93;:::i;:::-;10945:2;10940:3;10936:12;10929:19;;10734:220;;;:::o;10960:366::-;11102:3;11123:67;11187:2;11182:3;11123:67;:::i;:::-;11116:74;;11199:93;11288:3;11199:93;:::i;:::-;11317:2;11312:3;11308:12;11301:19;;11106:220;;;:::o;11332:366::-;11474:3;11495:67;11559:2;11554:3;11495:67;:::i;:::-;11488:74;;11571:93;11660:3;11571:93;:::i;:::-;11689:2;11684:3;11680:12;11673:19;;11478:220;;;:::o;11704:366::-;11846:3;11867:67;11931:2;11926:3;11867:67;:::i;:::-;11860:74;;11943:93;12032:3;11943:93;:::i;:::-;12061:2;12056:3;12052:12;12045:19;;11850:220;;;:::o;12076:366::-;12218:3;12239:67;12303:2;12298:3;12239:67;:::i;:::-;12232:74;;12315:93;12404:3;12315:93;:::i;:::-;12433:2;12428:3;12424:12;12417:19;;12222:220;;;:::o;12448:366::-;12590:3;12611:67;12675:2;12670:3;12611:67;:::i;:::-;12604:74;;12687:93;12776:3;12687:93;:::i;:::-;12805:2;12800:3;12796:12;12789:19;;12594:220;;;:::o;12820:366::-;12962:3;12983:67;13047:2;13042:3;12983:67;:::i;:::-;12976:74;;13059:93;13148:3;13059:93;:::i;:::-;13177:2;13172:3;13168:12;13161:19;;12966:220;;;:::o;13192:366::-;13334:3;13355:67;13419:2;13414:3;13355:67;:::i;:::-;13348:74;;13431:93;13520:3;13431:93;:::i;:::-;13549:2;13544:3;13540:12;13533:19;;13338:220;;;:::o;13564:366::-;13706:3;13727:67;13791:2;13786:3;13727:67;:::i;:::-;13720:74;;13803:93;13892:3;13803:93;:::i;:::-;13921:2;13916:3;13912:12;13905:19;;13710:220;;;:::o;13936:366::-;14078:3;14099:67;14163:2;14158:3;14099:67;:::i;:::-;14092:74;;14175:93;14264:3;14175:93;:::i;:::-;14293:2;14288:3;14284:12;14277:19;;14082:220;;;:::o;14308:366::-;14450:3;14471:67;14535:2;14530:3;14471:67;:::i;:::-;14464:74;;14547:93;14636:3;14547:93;:::i;:::-;14665:2;14660:3;14656:12;14649:19;;14454:220;;;:::o;14680:366::-;14822:3;14843:67;14907:2;14902:3;14843:67;:::i;:::-;14836:74;;14919:93;15008:3;14919:93;:::i;:::-;15037:2;15032:3;15028:12;15021:19;;14826:220;;;:::o;15052:118::-;15139:24;15157:5;15139:24;:::i;:::-;15134:3;15127:37;15117:53;;:::o;15176:435::-;15356:3;15378:95;15469:3;15460:6;15378:95;:::i;:::-;15371:102;;15490:95;15581:3;15572:6;15490:95;:::i;:::-;15483:102;;15602:3;15595:10;;15360:251;;;;;:::o;15617:222::-;15710:4;15748:2;15737:9;15733:18;15725:26;;15761:71;15829:1;15818:9;15814:17;15805:6;15761:71;:::i;:::-;15715:124;;;;:::o;15845:640::-;16040:4;16078:3;16067:9;16063:19;16055:27;;16092:71;16160:1;16149:9;16145:17;16136:6;16092:71;:::i;:::-;16173:72;16241:2;16230:9;16226:18;16217:6;16173:72;:::i;:::-;16255;16323:2;16312:9;16308:18;16299:6;16255:72;:::i;:::-;16374:9;16368:4;16364:20;16359:2;16348:9;16344:18;16337:48;16402:76;16473:4;16464:6;16402:76;:::i;:::-;16394:84;;16045:440;;;;;;;:::o;16491:210::-;16578:4;16616:2;16605:9;16601:18;16593:26;;16629:65;16691:1;16680:9;16676:17;16667:6;16629:65;:::i;:::-;16583:118;;;;:::o;16707:313::-;16820:4;16858:2;16847:9;16843:18;16835:26;;16907:9;16901:4;16897:20;16893:1;16882:9;16878:17;16871:47;16935:78;17008:4;16999:6;16935:78;:::i;:::-;16927:86;;16825:195;;;;:::o;17026:419::-;17192:4;17230:2;17219:9;17215:18;17207:26;;17279:9;17273:4;17269:20;17265:1;17254:9;17250:17;17243:47;17307:131;17433:4;17307:131;:::i;:::-;17299:139;;17197:248;;;:::o;17451:419::-;17617:4;17655:2;17644:9;17640:18;17632:26;;17704:9;17698:4;17694:20;17690:1;17679:9;17675:17;17668:47;17732:131;17858:4;17732:131;:::i;:::-;17724:139;;17622:248;;;:::o;17876:419::-;18042:4;18080:2;18069:9;18065:18;18057:26;;18129:9;18123:4;18119:20;18115:1;18104:9;18100:17;18093:47;18157:131;18283:4;18157:131;:::i;:::-;18149:139;;18047:248;;;:::o;18301:419::-;18467:4;18505:2;18494:9;18490:18;18482:26;;18554:9;18548:4;18544:20;18540:1;18529:9;18525:17;18518:47;18582:131;18708:4;18582:131;:::i;:::-;18574:139;;18472:248;;;:::o;18726:419::-;18892:4;18930:2;18919:9;18915:18;18907:26;;18979:9;18973:4;18969:20;18965:1;18954:9;18950:17;18943:47;19007:131;19133:4;19007:131;:::i;:::-;18999:139;;18897:248;;;:::o;19151:419::-;19317:4;19355:2;19344:9;19340:18;19332:26;;19404:9;19398:4;19394:20;19390:1;19379:9;19375:17;19368:47;19432:131;19558:4;19432:131;:::i;:::-;19424:139;;19322:248;;;:::o;19576:419::-;19742:4;19780:2;19769:9;19765:18;19757:26;;19829:9;19823:4;19819:20;19815:1;19804:9;19800:17;19793:47;19857:131;19983:4;19857:131;:::i;:::-;19849:139;;19747:248;;;:::o;20001:419::-;20167:4;20205:2;20194:9;20190:18;20182:26;;20254:9;20248:4;20244:20;20240:1;20229:9;20225:17;20218:47;20282:131;20408:4;20282:131;:::i;:::-;20274:139;;20172:248;;;:::o;20426:419::-;20592:4;20630:2;20619:9;20615:18;20607:26;;20679:9;20673:4;20669:20;20665:1;20654:9;20650:17;20643:47;20707:131;20833:4;20707:131;:::i;:::-;20699:139;;20597:248;;;:::o;20851:419::-;21017:4;21055:2;21044:9;21040:18;21032:26;;21104:9;21098:4;21094:20;21090:1;21079:9;21075:17;21068:47;21132:131;21258:4;21132:131;:::i;:::-;21124:139;;21022:248;;;:::o;21276:419::-;21442:4;21480:2;21469:9;21465:18;21457:26;;21529:9;21523:4;21519:20;21515:1;21504:9;21500:17;21493:47;21557:131;21683:4;21557:131;:::i;:::-;21549:139;;21447:248;;;:::o;21701:419::-;21867:4;21905:2;21894:9;21890:18;21882:26;;21954:9;21948:4;21944:20;21940:1;21929:9;21925:17;21918:47;21982:131;22108:4;21982:131;:::i;:::-;21974:139;;21872:248;;;:::o;22126:419::-;22292:4;22330:2;22319:9;22315:18;22307:26;;22379:9;22373:4;22369:20;22365:1;22354:9;22350:17;22343:47;22407:131;22533:4;22407:131;:::i;:::-;22399:139;;22297:248;;;:::o;22551:419::-;22717:4;22755:2;22744:9;22740:18;22732:26;;22804:9;22798:4;22794:20;22790:1;22779:9;22775:17;22768:47;22832:131;22958:4;22832:131;:::i;:::-;22824:139;;22722:248;;;:::o;22976:419::-;23142:4;23180:2;23169:9;23165:18;23157:26;;23229:9;23223:4;23219:20;23215:1;23204:9;23200:17;23193:47;23257:131;23383:4;23257:131;:::i;:::-;23249:139;;23147:248;;;:::o;23401:419::-;23567:4;23605:2;23594:9;23590:18;23582:26;;23654:9;23648:4;23644:20;23640:1;23629:9;23625:17;23618:47;23682:131;23808:4;23682:131;:::i;:::-;23674:139;;23572:248;;;:::o;23826:419::-;23992:4;24030:2;24019:9;24015:18;24007:26;;24079:9;24073:4;24069:20;24065:1;24054:9;24050:17;24043:47;24107:131;24233:4;24107:131;:::i;:::-;24099:139;;23997:248;;;:::o;24251:419::-;24417:4;24455:2;24444:9;24440:18;24432:26;;24504:9;24498:4;24494:20;24490:1;24479:9;24475:17;24468:47;24532:131;24658:4;24532:131;:::i;:::-;24524:139;;24422:248;;;:::o;24676:419::-;24842:4;24880:2;24869:9;24865:18;24857:26;;24929:9;24923:4;24919:20;24915:1;24904:9;24900:17;24893:47;24957:131;25083:4;24957:131;:::i;:::-;24949:139;;24847:248;;;:::o;25101:419::-;25267:4;25305:2;25294:9;25290:18;25282:26;;25354:9;25348:4;25344:20;25340:1;25329:9;25325:17;25318:47;25382:131;25508:4;25382:131;:::i;:::-;25374:139;;25272:248;;;:::o;25526:419::-;25692:4;25730:2;25719:9;25715:18;25707:26;;25779:9;25773:4;25769:20;25765:1;25754:9;25750:17;25743:47;25807:131;25933:4;25807:131;:::i;:::-;25799:139;;25697:248;;;:::o;25951:222::-;26044:4;26082:2;26071:9;26067:18;26059:26;;26095:71;26163:1;26152:9;26148:17;26139:6;26095:71;:::i;:::-;26049:124;;;;:::o;26179:129::-;26213:6;26240:20;;:::i;:::-;26230:30;;26269:33;26297:4;26289:6;26269:33;:::i;:::-;26220:88;;;:::o;26314:75::-;26347:6;26380:2;26374:9;26364:19;;26354:35;:::o;26395:307::-;26456:4;26546:18;26538:6;26535:30;26532:2;;;26568:18;;:::i;:::-;26532:2;26606:29;26628:6;26606:29;:::i;:::-;26598:37;;26690:4;26684;26680:15;26672:23;;26461:241;;;:::o;26708:98::-;26759:6;26793:5;26787:12;26777:22;;26766:40;;;:::o;26812:99::-;26864:6;26898:5;26892:12;26882:22;;26871:40;;;:::o;26917:168::-;27000:11;27034:6;27029:3;27022:19;27074:4;27069:3;27065:14;27050:29;;27012:73;;;;:::o;27091:169::-;27175:11;27209:6;27204:3;27197:19;27249:4;27244:3;27240:14;27225:29;;27187:73;;;;:::o;27266:148::-;27368:11;27405:3;27390:18;;27380:34;;;;:::o;27420:305::-;27460:3;27479:20;27497:1;27479:20;:::i;:::-;27474:25;;27513:20;27531:1;27513:20;:::i;:::-;27508:25;;27667:1;27599:66;27595:74;27592:1;27589:81;27586:2;;;27673:18;;:::i;:::-;27586:2;27717:1;27714;27710:9;27703:16;;27464:261;;;;:::o;27731:185::-;27771:1;27788:20;27806:1;27788:20;:::i;:::-;27783:25;;27822:20;27840:1;27822:20;:::i;:::-;27817:25;;27861:1;27851:2;;27866:18;;:::i;:::-;27851:2;27908:1;27905;27901:9;27896:14;;27773:143;;;;:::o;27922:348::-;27962:7;27985:20;28003:1;27985:20;:::i;:::-;27980:25;;28019:20;28037:1;28019:20;:::i;:::-;28014:25;;28207:1;28139:66;28135:74;28132:1;28129:81;28124:1;28117:9;28110:17;28106:105;28103:2;;;28214:18;;:::i;:::-;28103:2;28262:1;28259;28255:9;28244:20;;27970:300;;;;:::o;28276:191::-;28316:4;28336:20;28354:1;28336:20;:::i;:::-;28331:25;;28370:20;28388:1;28370:20;:::i;:::-;28365:25;;28409:1;28406;28403:8;28400:2;;;28414:18;;:::i;:::-;28400:2;28459:1;28456;28452:9;28444:17;;28321:146;;;;:::o;28473:96::-;28510:7;28539:24;28557:5;28539:24;:::i;:::-;28528:35;;28518:51;;;:::o;28575:90::-;28609:7;28652:5;28645:13;28638:21;28627:32;;28617:48;;;:::o;28671:149::-;28707:7;28747:66;28740:5;28736:78;28725:89;;28715:105;;;:::o;28826:126::-;28863:7;28903:42;28896:5;28892:54;28881:65;;28871:81;;;:::o;28958:77::-;28995:7;29024:5;29013:16;;29003:32;;;:::o;29041:154::-;29125:6;29120:3;29115;29102:30;29187:1;29178:6;29173:3;29169:16;29162:27;29092:103;;;:::o;29201:307::-;29269:1;29279:113;29293:6;29290:1;29287:13;29279:113;;;29378:1;29373:3;29369:11;29363:18;29359:1;29354:3;29350:11;29343:39;29315:2;29312:1;29308:10;29303:15;;29279:113;;;29410:6;29407:1;29404:13;29401:2;;;29490:1;29481:6;29476:3;29472:16;29465:27;29401:2;29250:258;;;;:::o;29514:320::-;29558:6;29595:1;29589:4;29585:12;29575:22;;29642:1;29636:4;29632:12;29663:18;29653:2;;29719:4;29711:6;29707:17;29697:27;;29653:2;29781;29773:6;29770:14;29750:18;29747:38;29744:2;;;29800:18;;:::i;:::-;29744:2;29565:269;;;;:::o;29840:281::-;29923:27;29945:4;29923:27;:::i;:::-;29915:6;29911:40;30053:6;30041:10;30038:22;30017:18;30005:10;30002:34;29999:62;29996:2;;;30064:18;;:::i;:::-;29996:2;30104:10;30100:2;30093:22;29883:238;;;:::o;30127:233::-;30166:3;30189:24;30207:5;30189:24;:::i;:::-;30180:33;;30235:66;30228:5;30225:77;30222:2;;;30305:18;;:::i;:::-;30222:2;30352:1;30345:5;30341:13;30334:20;;30170:190;;;:::o;30366:176::-;30398:1;30415:20;30433:1;30415:20;:::i;:::-;30410:25;;30449:20;30467:1;30449:20;:::i;:::-;30444:25;;30488:1;30478:2;;30493:18;;:::i;:::-;30478:2;30534:1;30531;30527:9;30522:14;;30400:142;;;;:::o;30548:180::-;30596:77;30593:1;30586:88;30693:4;30690:1;30683:15;30717:4;30714:1;30707:15;30734:180;30782:77;30779:1;30772:88;30879:4;30876:1;30869:15;30903:4;30900:1;30893:15;30920:180;30968:77;30965:1;30958:88;31065:4;31062:1;31055:15;31089:4;31086:1;31079:15;31106:180;31154:77;31151:1;31144:88;31251:4;31248:1;31241:15;31275:4;31272:1;31265:15;31292:102;31333:6;31384:2;31380:7;31375:2;31368:5;31364:14;31360:28;31350:38;;31340:54;;;:::o;31400:237::-;31540:34;31536:1;31528:6;31524:14;31517:58;31609:20;31604:2;31596:6;31592:15;31585:45;31506:131;:::o;31643:225::-;31783:34;31779:1;31771:6;31767:14;31760:58;31852:8;31847:2;31839:6;31835:15;31828:33;31749:119;:::o;31874:178::-;32014:30;32010:1;32002:6;31998:14;31991:54;31980:72;:::o;32058:223::-;32198:34;32194:1;32186:6;32182:14;32175:58;32267:6;32262:2;32254:6;32250:15;32243:31;32164:117;:::o;32287:175::-;32427:27;32423:1;32415:6;32411:14;32404:51;32393:69;:::o;32468:231::-;32608:34;32604:1;32596:6;32592:14;32585:58;32677:14;32672:2;32664:6;32660:15;32653:39;32574:125;:::o;32705:243::-;32845:34;32841:1;32833:6;32829:14;32822:58;32914:26;32909:2;32901:6;32897:15;32890:51;32811:137;:::o;32954:227::-;33094:34;33090:1;33082:6;33078:14;33071:58;33163:10;33158:2;33150:6;33146:15;33139:35;33060:121;:::o;33187:229::-;33327:34;33323:1;33315:6;33311:14;33304:58;33396:12;33391:2;33383:6;33379:15;33372:37;33293:123;:::o;33422:228::-;33562:34;33558:1;33550:6;33546:14;33539:58;33631:11;33626:2;33618:6;33614:15;33607:36;33528:122;:::o;33656:168::-;33796:20;33792:1;33784:6;33780:14;33773:44;33762:62;:::o;33830:222::-;33970:34;33966:1;33958:6;33954:14;33947:58;34039:5;34034:2;34026:6;34022:15;34015:30;33936:116;:::o;34058:182::-;34198:34;34194:1;34186:6;34182:14;34175:58;34164:76;:::o;34246:231::-;34386:34;34382:1;34374:6;34370:14;34363:58;34455:14;34450:2;34442:6;34438:15;34431:39;34352:125;:::o;34483:182::-;34623:34;34619:1;34611:6;34607:14;34600:58;34589:76;:::o;34671:228::-;34811:34;34807:1;34799:6;34795:14;34788:58;34880:11;34875:2;34867:6;34863:15;34856:36;34777:122;:::o;34905:234::-;35045:34;35041:1;35033:6;35029:14;35022:58;35114:17;35109:2;35101:6;35097:15;35090:42;35011:128;:::o;35145:220::-;35285:34;35281:1;35273:6;35269:14;35262:58;35354:3;35349:2;35341:6;35337:15;35330:28;35251:114;:::o;35371:236::-;35511:34;35507:1;35499:6;35495:14;35488:58;35580:19;35575:2;35567:6;35563:15;35556:44;35477:130;:::o;35613:163::-;35753:15;35749:1;35741:6;35737:14;35730:39;35719:57;:::o;35782:181::-;35922:33;35918:1;35910:6;35906:14;35899:57;35888:75;:::o;35969:122::-;36042:24;36060:5;36042:24;:::i;:::-;36035:5;36032:35;36022:2;;36081:1;36078;36071:12;36022:2;36012:79;:::o;36097:116::-;36167:21;36182:5;36167:21;:::i;:::-;36160:5;36157:32;36147:2;;36203:1;36200;36193:12;36147:2;36137:76;:::o;36219:120::-;36291:23;36308:5;36291:23;:::i;:::-;36284:5;36281:34;36271:2;;36329:1;36326;36319:12;36271:2;36261:78;:::o;36345:122::-;36418:24;36436:5;36418:24;:::i;:::-;36411:5;36408:35;36398:2;;36457:1;36454;36447:12;36398:2;36388:79;:::o

Swarm Source

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