ETH Price: $3,497.98 (+2.01%)
Gas: 2 Gwei

Token

Jagonya_Ayam (JAN)
 

Overview

Max Total Supply

436 JAN

Holders

188

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cepod.eth
Balance
3 JAN
0xd4bb9bd38319e396c5a1b7b5d3dfb0cc871a6579
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:
JAN

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


pragma solidity ^0.8.0;

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

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


pragma solidity ^0.8.0;

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

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;



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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





pragma solidity ^0.8.0;



/**
 * @dev 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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



pragma solidity ^0.8.0;




pragma solidity ^0.8.0;



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}



pragma solidity ^0.8.0;



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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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



pragma solidity ^0.8.0;

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


 contract JAN is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    string private PROVENANCE;
    string private baseURI;
    
    uint256 public maxSupply;
    uint256 public price = 0.07 ether;

    bool public presaleActive = false;
    bool public saleActive = false;

    mapping (address => uint256) public presaleWhitelist;
    
    //map team addresses 
    
    address private constant DVAddress = 0x2e302a91D01183F4F3966AbDA0D16d79BbaF0A4D;//DEV
    address private constant SAddress = 0xc8F56c0c1DE72Ba21e4237f5667960a79ca049b9;
    address private constant JAddress = 0x5e675243b30ADbA95cA65B82ec4918567D85CcD6;
    address private constant RAddress = 0xC45589FfF5dc6C9455EEbc140ab7b2020Ffd1840;
    address private constant R1Address = 0xADda99Ac13133A49e9FB5c25C9107613a5f16463;
    address private constant ATAddress = 0xcbcD316d1cd48F70f0D59D92B7bc25d1d28f8a9a;
    address private constant ABAddress = 0x18378F8df9240C62076e497A8366b4e5d1a7beEC;
    address private constant MMAddress = 0x2Fe62d7bFF2eb961fd2dDB86D49026a5d43bcEC9;
    

    constructor(string memory name, string memory symbol, uint256 supply) ERC721(name, symbol) {
        maxSupply = supply;
    }
    
    function reserve() public onlyOwner {
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < 154; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function mintPresale(uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        uint256 reserved = presaleWhitelist[msg.sender];
        require(presaleActive,                              "Presale must be active to mint");
        require(reserved > 0,                               "No tokens reserved for this address");
        require(numberOfMints <= reserved,                  "Can't mint more than reserved");
        require(supply.add(numberOfMints) <= maxSupply,     "Purchase would exceed max supply of tokens");
        require(price.mul(numberOfMints) == msg.value,      "Ether value sent is not correct");
        presaleWhitelist[msg.sender] = reserved - numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    function mint(uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        require(saleActive,                                 "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints < 100,    "Invalid purchase amount");
        require(supply.add(numberOfMints) <= maxSupply,     "Purchase would exceed max supply of tokens");
        require(price.mul(numberOfMints) == msg.value,      "Ether value sent is not correct");
        
        for(uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function editPresale(address[] calldata presaleAddresses, uint256[] calldata amount) public onlyOwner {
        for(uint256 i; i < presaleAddresses.length; i++){
            presaleWhitelist[presaleAddresses[i]] = amount[i];
        }
    }
    
    function walletOfOwner(address owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }
    
    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;

        require(balance > 0);
        _withdraw(DVAddress, balance.mul(1000).div(10000));
        _withdraw(SAddress, balance.mul(875).div(10000));
        _withdraw(JAddress, balance.mul(775).div(10000));
        _withdraw(RAddress, balance.mul(1125).div(10000));
        _withdraw(R1Address, balance.mul(775).div(10000));
        _withdraw(ATAddress, balance.mul(1750).div(10000));
        _withdraw(ABAddress, balance.mul(700).div(10000));
        _withdraw(MMAddress, balance.mul(3000).div(10000));
    }

     function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function togglePresale() public onlyOwner {
        presaleActive = !presaleActive;
    }

    function toggleSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }


    function setProvenance(string memory provenance) private onlyOwner {
        PROVENANCE = provenance;
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"editPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPresale","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266f8b0a10e470000600e55600f805461ffff191690553480156200002757600080fd5b5060405162002cd238038062002cd28339810160408190526200004a9162000249565b82518390839062000063906000906020850190620000f8565b50805162000079906001906020840190620000f8565b5050506200009662000090620000a260201b60201c565b620000a6565b600d55506200030c9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010690620002b9565b90600052602060002090601f0160209004810192826200012a576000855562000175565b82601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b5b8082111562000183576000815560010162000188565b600082601f830112620001af578081fd5b81516001600160401b0380821115620001cc57620001cc620002f6565b6040516020601f8401601f1916820181018381118382101715620001f457620001f4620002f6565b60405283825285840181018710156200020b578485fd5b8492505b838310156200022e57858301810151828401820152918201916200020f565b838311156200023f57848185840101525b5095945050505050565b6000806000606084860312156200025e578283fd5b83516001600160401b038082111562000275578485fd5b62000283878388016200019e565b9450602086015191508082111562000299578384fd5b50620002a8868287016200019e565b925050604084015190509250925092565b600281046001821680620002ce57607f821691505b60208210811415620002f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129b6806200031c6000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461054c578063e985e9c514610561578063eb8835ab14610581578063f2fde38b146105a1578063f759867a146105c1576101f9565b8063a22cb465146104d7578063b88d4fde146104f7578063c87b56dd14610517578063cd3293de14610537576101f9565b806391b7f5ed116100dc57806391b7f5ed1461047a57806395d89b411461049a578063a035b1fe146104af578063a0712d68146104c4576101f9565b8063715018a6146104335780637d8966e414610448578063853828b61461045d5780638da5cb5b14610465576101f9565b8063343937431161019057806353135ca01161015f57806353135ca0146103a957806355f804b3146103be5780636352211e146103de57806368428a1b146103fe57806370a0823114610413576101f9565b8063343937431461032757806342842e0e1461033c578063438b63001461035c5780634f6ccce714610389576101f9565b806318160ddd116101cc57806318160ddd146102a557806323b872dd146102c757806326ed7155146102e75780632f745c5914610307576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fb9565b6105d4565b60405161022b9190612142565b60405180910390f35b34801561024057600080fd5b50610249610601565b60405161022b919061214d565b34801561026257600080fd5b50610276610271366004612037565b610693565b60405161022b91906120ad565b34801561028f57600080fd5b506102a361029e366004611f27565b6106df565b005b3480156102b157600080fd5b506102ba610777565b60405161022b9190612827565b3480156102d357600080fd5b506102a36102e2366004611e39565b61077d565b3480156102f357600080fd5b506102a3610302366004611f50565b6107b5565b34801561031357600080fd5b506102ba610322366004611f27565b610892565b34801561033357600080fd5b506102a36108e4565b34801561034857600080fd5b506102a3610357366004611e39565b610937565b34801561036857600080fd5b5061037c610377366004611ded565b610952565b60405161022b91906120fe565b34801561039557600080fd5b506102ba6103a4366004612037565b610a10565b3480156103b557600080fd5b5061021e610a6b565b3480156103ca57600080fd5b506102a36103d9366004611ff1565b610a74565b3480156103ea57600080fd5b506102766103f9366004612037565b610aca565b34801561040a57600080fd5b5061021e610aff565b34801561041f57600080fd5b506102ba61042e366004611ded565b610b0d565b34801561043f57600080fd5b506102a3610b51565b34801561045457600080fd5b506102a3610b9c565b6102a3610bf8565b34801561047157600080fd5b50610276610da0565b34801561048657600080fd5b506102a3610495366004612037565b610daf565b3480156104a657600080fd5b50610249610df3565b3480156104bb57600080fd5b506102ba610e02565b6102a36104d2366004612037565b610e08565b3480156104e357600080fd5b506102a36104f2366004611eed565b610eef565b34801561050357600080fd5b506102a3610512366004611e74565b610fbd565b34801561052357600080fd5b50610249610532366004612037565b610ffc565b34801561054357600080fd5b506102a361107f565b34801561055857600080fd5b506102ba6110f6565b34801561056d57600080fd5b5061021e61057c366004611e07565b6110fc565b34801561058d57600080fd5b506102ba61059c366004611ded565b61112a565b3480156105ad57600080fd5b506102a36105bc366004611ded565b61113c565b6102a36105cf366004612037565b6111aa565b60006001600160e01b0319821663780e9d6360e01b14806105f957506105f9826112c7565b90505b919050565b606060008054610610906128be565b80601f016020809104026020016040519081016040528092919081815260200182805461063c906128be565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b600061069e82611307565b6106c35760405162461bcd60e51b81526004016106ba906125cf565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ea82610aca565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b81526004016106ba906126e8565b806001600160a01b0316610730611324565b6001600160a01b0316148061074c575061074c8161057c611324565b6107685760405162461bcd60e51b81526004016106ba90612429565b6107728383611328565b505050565b60085490565b61078e610788611324565b82611396565b6107aa5760405162461bcd60e51b81526004016106ba90612753565b61077283838361141b565b6107bd611324565b6001600160a01b03166107ce610da0565b6001600160a01b0316146107f45760405162461bcd60e51b81526004016106ba9061261b565b60005b8381101561088b5782828281811061081f57634e487b7160e01b600052603260045260246000fd5b905060200201356010600087878581811061084a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061085f9190611ded565b6001600160a01b0316815260208101919091526040016000205580610883816128f9565b9150506107f7565b5050505050565b600061089d83610b0d565b82106108bb5760405162461bcd60e51b81526004016106ba90612197565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ec611324565b6001600160a01b03166108fd610da0565b6001600160a01b0316146109235760405162461bcd60e51b81526004016106ba9061261b565b600f805460ff19811660ff90911615179055565b61077283838360405180602001604052806000815250610fbd565b6060600061095f83610b0d565b905060008167ffffffffffffffff81111561098a57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109b3578160200160208202803683370190505b50905060005b82811015610a08576109cb8582610892565b8282815181106109eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a00816128f9565b9150506109b9565b509392505050565b6000610a1a610777565b8210610a385760405162461bcd60e51b81526004016106ba906127a4565b60088281548110610a5957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f5460ff1681565b610a7c611324565b6001600160a01b0316610a8d610da0565b6001600160a01b031614610ab35760405162461bcd60e51b81526004016106ba9061261b565b8051610ac690600c906020840190611c84565b5050565b6000818152600260205260408120546001600160a01b0316806105f95760405162461bcd60e51b81526004016106ba90612507565b600f54610100900460ff1681565b60006001600160a01b038216610b355760405162461bcd60e51b81526004016106ba906124bd565b506001600160a01b031660009081526003602052604090205490565b610b59611324565b6001600160a01b0316610b6a610da0565b6001600160a01b031614610b905760405162461bcd60e51b81526004016106ba9061261b565b610b9a6000611548565b565b610ba4611324565b6001600160a01b0316610bb5610da0565b6001600160a01b031614610bdb5760405162461bcd60e51b81526004016106ba9061261b565b600f805461ff001981166101009182900460ff1615909102179055565b610c00611324565b6001600160a01b0316610c11610da0565b6001600160a01b031614610c375760405162461bcd60e51b81526004016106ba9061261b565b4780610c4257600080fd5b610c77732e302a91d01183f4f3966abda0d16d79bbaf0a4d610c72612710610c6c856103e861159a565b906115a6565b6115b2565b610ca173c8f56c0c1de72ba21e4237f5667960a79ca049b9610c72612710610c6c8561036b61159a565b610ccb735e675243b30adba95ca65b82ec4918567d85ccd6610c72612710610c6c8561030761159a565b610cf573c45589fff5dc6c9455eebc140ab7b2020ffd1840610c72612710610c6c8561046561159a565b610d1f73adda99ac13133a49e9fb5c25c9107613a5f16463610c72612710610c6c8561030761159a565b610d4973cbcd316d1cd48f70f0d59d92b7bc25d1d28f8a9a610c72612710610c6c856106d661159a565b610d737318378f8df9240c62076e497a8366b4e5d1a7beec610c72612710610c6c856102bc61159a565b610d9d732fe62d7bff2eb961fd2ddb86d49026a5d43bcec9610c72612710610c6c85610bb861159a565b50565b600a546001600160a01b031690565b610db7611324565b6001600160a01b0316610dc8610da0565b6001600160a01b031614610dee5760405162461bcd60e51b81526004016106ba9061261b565b600e55565b606060018054610610906128be565b600e5481565b6000610e12610777565b600f54909150610100900460ff16610e3c5760405162461bcd60e51b81526004016106ba90612363565b600082118015610e4c5750606482105b610e685760405162461bcd60e51b81526004016106ba906127f0565b600d54610e75828461162e565b1115610e935760405162461bcd60e51b81526004016106ba90612550565b600e543490610ea2908461159a565b14610ebf5760405162461bcd60e51b81526004016106ba9061232c565b60005b8281101561077257610edd33610ed88385612830565b61163a565b80610ee7816128f9565b915050610ec2565b610ef7611324565b6001600160a01b0316826001600160a01b03161415610f285760405162461bcd60e51b81526004016106ba906122f5565b8060056000610f35611324565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f79611324565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fb19190612142565b60405180910390a35050565b610fce610fc8611324565b83611396565b610fea5760405162461bcd60e51b81526004016106ba90612753565b610ff684848484611654565b50505050565b606061100782611307565b6110235760405162461bcd60e51b81526004016106ba90612699565b600061102d611687565b9050600081511161104d5760405180602001604052806000815250611078565b8061105784611696565b60405160200161106892919061207b565b6040516020818303038152906040525b9392505050565b611087611324565b6001600160a01b0316611098610da0565b6001600160a01b0316146110be5760405162461bcd60e51b81526004016106ba9061261b565b60006110c8610777565b905060005b609a811015610ac6576110e433610ed88385612830565b806110ee816128f9565b9150506110cd565b600d5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60106020526000908152604090205481565b611144611324565b6001600160a01b0316611155610da0565b6001600160a01b03161461117b5760405162461bcd60e51b81526004016106ba9061261b565b6001600160a01b0381166111a15760405162461bcd60e51b81526004016106ba90612234565b610d9d81611548565b60006111b4610777565b33600090815260106020526040902054600f549192509060ff166111ea5760405162461bcd60e51b81526004016106ba90612486565b6000811161120a5760405162461bcd60e51b81526004016106ba906123e6565b8083111561122a5760405162461bcd60e51b81526004016106ba90612160565b600d54611237838561162e565b11156112555760405162461bcd60e51b81526004016106ba90612550565b600e543490611264908561159a565b146112815760405162461bcd60e51b81526004016106ba9061232c565b61128b838261287b565b336000908152601060205260408120919091555b83811015610ff6576112b533610ed88386612830565b806112bf816128f9565b91505061129f565b60006001600160e01b031982166380ac58cd60e01b14806112f857506001600160e01b03198216635b5e139f60e01b145b806105f957506105f9826117b1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061135d82610aca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113a182611307565b6113bd5760405162461bcd60e51b81526004016106ba9061239a565b60006113c883610aca565b9050806001600160a01b0316846001600160a01b031614806114035750836001600160a01b03166113f884610693565b6001600160a01b0316145b80611413575061141381856110fc565b949350505050565b826001600160a01b031661142e82610aca565b6001600160a01b0316146114545760405162461bcd60e51b81526004016106ba90612650565b6001600160a01b03821661147a5760405162461bcd60e51b81526004016106ba906122b1565b6114858383836117ca565b611490600082611328565b6001600160a01b03831660009081526003602052604081208054600192906114b990849061287b565b90915550506001600160a01b03821660009081526003602052604081208054600192906114e7908490612830565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611078828461285c565b60006110788284612848565b6000826001600160a01b0316826040516115cb906120aa565b60006040518083038185875af1925050503d8060008114611608576040519150601f19603f3d011682016040523d82523d6000602084013e61160d565b606091505b50509050806107725760405162461bcd60e51b81526004016106ba90612729565b60006110788284612830565b610ac6828260405180602001604052806000815250611853565b61165f84848461141b565b61166b84848484611886565b610ff65760405162461bcd60e51b81526004016106ba906121e2565b6060600c8054610610906128be565b6060816116bb57506040805180820190915260018152600360fc1b60208201526105fc565b8160005b81156116e557806116cf816128f9565b91506116de9050600a83612848565b91506116bf565b60008167ffffffffffffffff81111561170e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611738576020820181803683370190505b5090505b84156114135761174d60018361287b565b915061175a600a86612914565b611765906030612830565b60f81b81838151811061178857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117aa600a86612848565b945061173c565b6001600160e01b031981166301ffc9a760e01b14919050565b6117d5838383610772565b6001600160a01b0383166117f1576117ec816119a1565b611814565b816001600160a01b0316836001600160a01b0316146118145761181483826119e5565b6001600160a01b0382166118305761182b81611a82565b610772565b826001600160a01b0316826001600160a01b031614610772576107728282611b5b565b61185d8383611b9f565b61186a6000848484611886565b6107725760405162461bcd60e51b81526004016106ba906121e2565b600061189a846001600160a01b0316611c7e565b1561199657836001600160a01b031663150b7a026118b6611324565b8786866040518563ffffffff1660e01b81526004016118d894939291906120c1565b602060405180830381600087803b1580156118f257600080fd5b505af1925050508015611922575060408051601f3d908101601f1916820190925261191f91810190611fd5565b60015b61197c573d808015611950576040519150601f19603f3d011682016040523d82523d6000602084013e611955565b606091505b5080516119745760405162461bcd60e51b81526004016106ba906121e2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611413565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016119f284610b0d565b6119fc919061287b565b600083815260076020526040902054909150808214611a4f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a949060019061287b565b60008381526009602052604081205460088054939450909284908110611aca57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611af957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b3f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b6683610b0d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc55760405162461bcd60e51b81526004016106ba9061259a565b611bce81611307565b15611beb5760405162461bcd60e51b81526004016106ba9061227a565b611bf7600083836117ca565b6001600160a01b0382166000908152600360205260408120805460019290611c20908490612830565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611c90906128be565b90600052602060002090601f016020900481019282611cb25760008555611cf8565b82601f10611ccb57805160ff1916838001178555611cf8565b82800160010185558215611cf8579182015b82811115611cf8578251825591602001919060010190611cdd565b50611d04929150611d08565b5090565b5b80821115611d045760008155600101611d09565b600067ffffffffffffffff80841115611d3857611d38612954565b604051601f8501601f191681016020018281118282101715611d5c57611d5c612954565b604052848152915081838501861015611d7457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105fc57600080fd5b60008083601f840112611db5578081fd5b50813567ffffffffffffffff811115611dcc578182fd5b6020830191508360208083028501011115611de657600080fd5b9250929050565b600060208284031215611dfe578081fd5b61107882611d8d565b60008060408385031215611e19578081fd5b611e2283611d8d565b9150611e3060208401611d8d565b90509250929050565b600080600060608486031215611e4d578081fd5b611e5684611d8d565b9250611e6460208501611d8d565b9150604084013590509250925092565b60008060008060808587031215611e89578081fd5b611e9285611d8d565b9350611ea060208601611d8d565b925060408501359150606085013567ffffffffffffffff811115611ec2578182fd5b8501601f81018713611ed2578182fd5b611ee187823560208401611d1d565b91505092959194509250565b60008060408385031215611eff578182fd5b611f0883611d8d565b915060208301358015158114611f1c578182fd5b809150509250929050565b60008060408385031215611f39578182fd5b611f4283611d8d565b946020939093013593505050565b60008060008060408587031215611f65578384fd5b843567ffffffffffffffff80821115611f7c578586fd5b611f8888838901611da4565b90965094506020870135915080821115611fa0578384fd5b50611fad87828801611da4565b95989497509550505050565b600060208284031215611fca578081fd5b81356110788161296a565b600060208284031215611fe6578081fd5b81516110788161296a565b600060208284031215612002578081fd5b813567ffffffffffffffff811115612018578182fd5b8201601f81018413612028578182fd5b61141384823560208401611d1d565b600060208284031215612048578081fd5b5035919050565b60008151808452612067816020860160208601612892565b601f01601f19169290920160200192915050565b6000835161208d818460208801612892565b8351908301906120a1818360208801612892565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120f49083018461204f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121365783518352928401929184019160010161211a565b50909695505050505050565b901515815260200190565b600060208252611078602083018461204f565b6020808252601d908201527f43616e2774206d696e74206d6f7265207468616e207265736572766564000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f4e6f20746f6b656e7320726573657276656420666f722074686973206164647260408201526265737360e81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f50726573616c65206d7573742062652061637469766520746f206d696e740000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f496e76616c696420707572636861736520616d6f756e74000000000000000000604082015260600190565b90815260200190565b6000821982111561284357612843612928565b500190565b6000826128575761285761293e565b500490565b600081600019048311821515161561287657612876612928565b500290565b60008282101561288d5761288d612928565b500390565b60005b838110156128ad578181015183820152602001612895565b83811115610ff65750506000910152565b6002810460018216806128d257607f821691505b602082108114156128f357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561290d5761290d612928565b5060010190565b6000826129235761292361293e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d9d57600080fdfea26469706673582212205132e0d599979e4b55f4e9c9cbd41b724282e59d3964bcf87c83bce40b9de42d64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000012f0000000000000000000000000000000000000000000000000000000000000000c4a61676f6e79615f4179616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a414e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461054c578063e985e9c514610561578063eb8835ab14610581578063f2fde38b146105a1578063f759867a146105c1576101f9565b8063a22cb465146104d7578063b88d4fde146104f7578063c87b56dd14610517578063cd3293de14610537576101f9565b806391b7f5ed116100dc57806391b7f5ed1461047a57806395d89b411461049a578063a035b1fe146104af578063a0712d68146104c4576101f9565b8063715018a6146104335780637d8966e414610448578063853828b61461045d5780638da5cb5b14610465576101f9565b8063343937431161019057806353135ca01161015f57806353135ca0146103a957806355f804b3146103be5780636352211e146103de57806368428a1b146103fe57806370a0823114610413576101f9565b8063343937431461032757806342842e0e1461033c578063438b63001461035c5780634f6ccce714610389576101f9565b806318160ddd116101cc57806318160ddd146102a557806323b872dd146102c757806326ed7155146102e75780632f745c5914610307576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fb9565b6105d4565b60405161022b9190612142565b60405180910390f35b34801561024057600080fd5b50610249610601565b60405161022b919061214d565b34801561026257600080fd5b50610276610271366004612037565b610693565b60405161022b91906120ad565b34801561028f57600080fd5b506102a361029e366004611f27565b6106df565b005b3480156102b157600080fd5b506102ba610777565b60405161022b9190612827565b3480156102d357600080fd5b506102a36102e2366004611e39565b61077d565b3480156102f357600080fd5b506102a3610302366004611f50565b6107b5565b34801561031357600080fd5b506102ba610322366004611f27565b610892565b34801561033357600080fd5b506102a36108e4565b34801561034857600080fd5b506102a3610357366004611e39565b610937565b34801561036857600080fd5b5061037c610377366004611ded565b610952565b60405161022b91906120fe565b34801561039557600080fd5b506102ba6103a4366004612037565b610a10565b3480156103b557600080fd5b5061021e610a6b565b3480156103ca57600080fd5b506102a36103d9366004611ff1565b610a74565b3480156103ea57600080fd5b506102766103f9366004612037565b610aca565b34801561040a57600080fd5b5061021e610aff565b34801561041f57600080fd5b506102ba61042e366004611ded565b610b0d565b34801561043f57600080fd5b506102a3610b51565b34801561045457600080fd5b506102a3610b9c565b6102a3610bf8565b34801561047157600080fd5b50610276610da0565b34801561048657600080fd5b506102a3610495366004612037565b610daf565b3480156104a657600080fd5b50610249610df3565b3480156104bb57600080fd5b506102ba610e02565b6102a36104d2366004612037565b610e08565b3480156104e357600080fd5b506102a36104f2366004611eed565b610eef565b34801561050357600080fd5b506102a3610512366004611e74565b610fbd565b34801561052357600080fd5b50610249610532366004612037565b610ffc565b34801561054357600080fd5b506102a361107f565b34801561055857600080fd5b506102ba6110f6565b34801561056d57600080fd5b5061021e61057c366004611e07565b6110fc565b34801561058d57600080fd5b506102ba61059c366004611ded565b61112a565b3480156105ad57600080fd5b506102a36105bc366004611ded565b61113c565b6102a36105cf366004612037565b6111aa565b60006001600160e01b0319821663780e9d6360e01b14806105f957506105f9826112c7565b90505b919050565b606060008054610610906128be565b80601f016020809104026020016040519081016040528092919081815260200182805461063c906128be565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b600061069e82611307565b6106c35760405162461bcd60e51b81526004016106ba906125cf565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ea82610aca565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b81526004016106ba906126e8565b806001600160a01b0316610730611324565b6001600160a01b0316148061074c575061074c8161057c611324565b6107685760405162461bcd60e51b81526004016106ba90612429565b6107728383611328565b505050565b60085490565b61078e610788611324565b82611396565b6107aa5760405162461bcd60e51b81526004016106ba90612753565b61077283838361141b565b6107bd611324565b6001600160a01b03166107ce610da0565b6001600160a01b0316146107f45760405162461bcd60e51b81526004016106ba9061261b565b60005b8381101561088b5782828281811061081f57634e487b7160e01b600052603260045260246000fd5b905060200201356010600087878581811061084a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061085f9190611ded565b6001600160a01b0316815260208101919091526040016000205580610883816128f9565b9150506107f7565b5050505050565b600061089d83610b0d565b82106108bb5760405162461bcd60e51b81526004016106ba90612197565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ec611324565b6001600160a01b03166108fd610da0565b6001600160a01b0316146109235760405162461bcd60e51b81526004016106ba9061261b565b600f805460ff19811660ff90911615179055565b61077283838360405180602001604052806000815250610fbd565b6060600061095f83610b0d565b905060008167ffffffffffffffff81111561098a57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109b3578160200160208202803683370190505b50905060005b82811015610a08576109cb8582610892565b8282815181106109eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a00816128f9565b9150506109b9565b509392505050565b6000610a1a610777565b8210610a385760405162461bcd60e51b81526004016106ba906127a4565b60088281548110610a5957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f5460ff1681565b610a7c611324565b6001600160a01b0316610a8d610da0565b6001600160a01b031614610ab35760405162461bcd60e51b81526004016106ba9061261b565b8051610ac690600c906020840190611c84565b5050565b6000818152600260205260408120546001600160a01b0316806105f95760405162461bcd60e51b81526004016106ba90612507565b600f54610100900460ff1681565b60006001600160a01b038216610b355760405162461bcd60e51b81526004016106ba906124bd565b506001600160a01b031660009081526003602052604090205490565b610b59611324565b6001600160a01b0316610b6a610da0565b6001600160a01b031614610b905760405162461bcd60e51b81526004016106ba9061261b565b610b9a6000611548565b565b610ba4611324565b6001600160a01b0316610bb5610da0565b6001600160a01b031614610bdb5760405162461bcd60e51b81526004016106ba9061261b565b600f805461ff001981166101009182900460ff1615909102179055565b610c00611324565b6001600160a01b0316610c11610da0565b6001600160a01b031614610c375760405162461bcd60e51b81526004016106ba9061261b565b4780610c4257600080fd5b610c77732e302a91d01183f4f3966abda0d16d79bbaf0a4d610c72612710610c6c856103e861159a565b906115a6565b6115b2565b610ca173c8f56c0c1de72ba21e4237f5667960a79ca049b9610c72612710610c6c8561036b61159a565b610ccb735e675243b30adba95ca65b82ec4918567d85ccd6610c72612710610c6c8561030761159a565b610cf573c45589fff5dc6c9455eebc140ab7b2020ffd1840610c72612710610c6c8561046561159a565b610d1f73adda99ac13133a49e9fb5c25c9107613a5f16463610c72612710610c6c8561030761159a565b610d4973cbcd316d1cd48f70f0d59d92b7bc25d1d28f8a9a610c72612710610c6c856106d661159a565b610d737318378f8df9240c62076e497a8366b4e5d1a7beec610c72612710610c6c856102bc61159a565b610d9d732fe62d7bff2eb961fd2ddb86d49026a5d43bcec9610c72612710610c6c85610bb861159a565b50565b600a546001600160a01b031690565b610db7611324565b6001600160a01b0316610dc8610da0565b6001600160a01b031614610dee5760405162461bcd60e51b81526004016106ba9061261b565b600e55565b606060018054610610906128be565b600e5481565b6000610e12610777565b600f54909150610100900460ff16610e3c5760405162461bcd60e51b81526004016106ba90612363565b600082118015610e4c5750606482105b610e685760405162461bcd60e51b81526004016106ba906127f0565b600d54610e75828461162e565b1115610e935760405162461bcd60e51b81526004016106ba90612550565b600e543490610ea2908461159a565b14610ebf5760405162461bcd60e51b81526004016106ba9061232c565b60005b8281101561077257610edd33610ed88385612830565b61163a565b80610ee7816128f9565b915050610ec2565b610ef7611324565b6001600160a01b0316826001600160a01b03161415610f285760405162461bcd60e51b81526004016106ba906122f5565b8060056000610f35611324565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f79611324565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fb19190612142565b60405180910390a35050565b610fce610fc8611324565b83611396565b610fea5760405162461bcd60e51b81526004016106ba90612753565b610ff684848484611654565b50505050565b606061100782611307565b6110235760405162461bcd60e51b81526004016106ba90612699565b600061102d611687565b9050600081511161104d5760405180602001604052806000815250611078565b8061105784611696565b60405160200161106892919061207b565b6040516020818303038152906040525b9392505050565b611087611324565b6001600160a01b0316611098610da0565b6001600160a01b0316146110be5760405162461bcd60e51b81526004016106ba9061261b565b60006110c8610777565b905060005b609a811015610ac6576110e433610ed88385612830565b806110ee816128f9565b9150506110cd565b600d5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60106020526000908152604090205481565b611144611324565b6001600160a01b0316611155610da0565b6001600160a01b03161461117b5760405162461bcd60e51b81526004016106ba9061261b565b6001600160a01b0381166111a15760405162461bcd60e51b81526004016106ba90612234565b610d9d81611548565b60006111b4610777565b33600090815260106020526040902054600f549192509060ff166111ea5760405162461bcd60e51b81526004016106ba90612486565b6000811161120a5760405162461bcd60e51b81526004016106ba906123e6565b8083111561122a5760405162461bcd60e51b81526004016106ba90612160565b600d54611237838561162e565b11156112555760405162461bcd60e51b81526004016106ba90612550565b600e543490611264908561159a565b146112815760405162461bcd60e51b81526004016106ba9061232c565b61128b838261287b565b336000908152601060205260408120919091555b83811015610ff6576112b533610ed88386612830565b806112bf816128f9565b91505061129f565b60006001600160e01b031982166380ac58cd60e01b14806112f857506001600160e01b03198216635b5e139f60e01b145b806105f957506105f9826117b1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061135d82610aca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113a182611307565b6113bd5760405162461bcd60e51b81526004016106ba9061239a565b60006113c883610aca565b9050806001600160a01b0316846001600160a01b031614806114035750836001600160a01b03166113f884610693565b6001600160a01b0316145b80611413575061141381856110fc565b949350505050565b826001600160a01b031661142e82610aca565b6001600160a01b0316146114545760405162461bcd60e51b81526004016106ba90612650565b6001600160a01b03821661147a5760405162461bcd60e51b81526004016106ba906122b1565b6114858383836117ca565b611490600082611328565b6001600160a01b03831660009081526003602052604081208054600192906114b990849061287b565b90915550506001600160a01b03821660009081526003602052604081208054600192906114e7908490612830565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611078828461285c565b60006110788284612848565b6000826001600160a01b0316826040516115cb906120aa565b60006040518083038185875af1925050503d8060008114611608576040519150601f19603f3d011682016040523d82523d6000602084013e61160d565b606091505b50509050806107725760405162461bcd60e51b81526004016106ba90612729565b60006110788284612830565b610ac6828260405180602001604052806000815250611853565b61165f84848461141b565b61166b84848484611886565b610ff65760405162461bcd60e51b81526004016106ba906121e2565b6060600c8054610610906128be565b6060816116bb57506040805180820190915260018152600360fc1b60208201526105fc565b8160005b81156116e557806116cf816128f9565b91506116de9050600a83612848565b91506116bf565b60008167ffffffffffffffff81111561170e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611738576020820181803683370190505b5090505b84156114135761174d60018361287b565b915061175a600a86612914565b611765906030612830565b60f81b81838151811061178857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117aa600a86612848565b945061173c565b6001600160e01b031981166301ffc9a760e01b14919050565b6117d5838383610772565b6001600160a01b0383166117f1576117ec816119a1565b611814565b816001600160a01b0316836001600160a01b0316146118145761181483826119e5565b6001600160a01b0382166118305761182b81611a82565b610772565b826001600160a01b0316826001600160a01b031614610772576107728282611b5b565b61185d8383611b9f565b61186a6000848484611886565b6107725760405162461bcd60e51b81526004016106ba906121e2565b600061189a846001600160a01b0316611c7e565b1561199657836001600160a01b031663150b7a026118b6611324565b8786866040518563ffffffff1660e01b81526004016118d894939291906120c1565b602060405180830381600087803b1580156118f257600080fd5b505af1925050508015611922575060408051601f3d908101601f1916820190925261191f91810190611fd5565b60015b61197c573d808015611950576040519150601f19603f3d011682016040523d82523d6000602084013e611955565b606091505b5080516119745760405162461bcd60e51b81526004016106ba906121e2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611413565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016119f284610b0d565b6119fc919061287b565b600083815260076020526040902054909150808214611a4f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a949060019061287b565b60008381526009602052604081205460088054939450909284908110611aca57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611af957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b3f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b6683610b0d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc55760405162461bcd60e51b81526004016106ba9061259a565b611bce81611307565b15611beb5760405162461bcd60e51b81526004016106ba9061227a565b611bf7600083836117ca565b6001600160a01b0382166000908152600360205260408120805460019290611c20908490612830565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611c90906128be565b90600052602060002090601f016020900481019282611cb25760008555611cf8565b82601f10611ccb57805160ff1916838001178555611cf8565b82800160010185558215611cf8579182015b82811115611cf8578251825591602001919060010190611cdd565b50611d04929150611d08565b5090565b5b80821115611d045760008155600101611d09565b600067ffffffffffffffff80841115611d3857611d38612954565b604051601f8501601f191681016020018281118282101715611d5c57611d5c612954565b604052848152915081838501861015611d7457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105fc57600080fd5b60008083601f840112611db5578081fd5b50813567ffffffffffffffff811115611dcc578182fd5b6020830191508360208083028501011115611de657600080fd5b9250929050565b600060208284031215611dfe578081fd5b61107882611d8d565b60008060408385031215611e19578081fd5b611e2283611d8d565b9150611e3060208401611d8d565b90509250929050565b600080600060608486031215611e4d578081fd5b611e5684611d8d565b9250611e6460208501611d8d565b9150604084013590509250925092565b60008060008060808587031215611e89578081fd5b611e9285611d8d565b9350611ea060208601611d8d565b925060408501359150606085013567ffffffffffffffff811115611ec2578182fd5b8501601f81018713611ed2578182fd5b611ee187823560208401611d1d565b91505092959194509250565b60008060408385031215611eff578182fd5b611f0883611d8d565b915060208301358015158114611f1c578182fd5b809150509250929050565b60008060408385031215611f39578182fd5b611f4283611d8d565b946020939093013593505050565b60008060008060408587031215611f65578384fd5b843567ffffffffffffffff80821115611f7c578586fd5b611f8888838901611da4565b90965094506020870135915080821115611fa0578384fd5b50611fad87828801611da4565b95989497509550505050565b600060208284031215611fca578081fd5b81356110788161296a565b600060208284031215611fe6578081fd5b81516110788161296a565b600060208284031215612002578081fd5b813567ffffffffffffffff811115612018578182fd5b8201601f81018413612028578182fd5b61141384823560208401611d1d565b600060208284031215612048578081fd5b5035919050565b60008151808452612067816020860160208601612892565b601f01601f19169290920160200192915050565b6000835161208d818460208801612892565b8351908301906120a1818360208801612892565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120f49083018461204f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121365783518352928401929184019160010161211a565b50909695505050505050565b901515815260200190565b600060208252611078602083018461204f565b6020808252601d908201527f43616e2774206d696e74206d6f7265207468616e207265736572766564000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f4e6f20746f6b656e7320726573657276656420666f722074686973206164647260408201526265737360e81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f50726573616c65206d7573742062652061637469766520746f206d696e740000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f496e76616c696420707572636861736520616d6f756e74000000000000000000604082015260600190565b90815260200190565b6000821982111561284357612843612928565b500190565b6000826128575761285761293e565b500490565b600081600019048311821515161561287657612876612928565b500290565b60008282101561288d5761288d612928565b500390565b60005b838110156128ad578181015183820152602001612895565b83811115610ff65750506000910152565b6002810460018216806128d257607f821691505b602082108114156128f357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561290d5761290d612928565b5060010190565b6000826129235761292361293e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d9d57600080fdfea26469706673582212205132e0d599979e4b55f4e9c9cbd41b724282e59d3964bcf87c83bce40b9de42d64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000012f0000000000000000000000000000000000000000000000000000000000000000c4a61676f6e79615f4179616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a414e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Jagonya_Ayam
Arg [1] : symbol (string): JAN
Arg [2] : supply (uint256): 4848

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000012f0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 4a61676f6e79615f4179616d0000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4a414e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49228:4978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33955:224;;;;;;;;;;-1:-1:-1;33955:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21017:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22576:221::-;;;;;;;;;;-1:-1:-1;22576:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22099:411::-;;;;;;;;;;-1:-1:-1;22099:411:0;;;;;:::i;:::-;;:::i;:::-;;34595:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23466:339::-;;;;;;;;;;-1:-1:-1;23466:339:0;;;;;:::i;:::-;;:::i;52169:244::-;;;;;;;;;;-1:-1:-1;52169:244:0;;;;;:::i;:::-;;:::i;34263:256::-;;;;;;;;;;-1:-1:-1;34263:256:0;;;;;:::i;:::-;;:::i;53595:91::-;;;;;;;;;;;;;:::i;23876:185::-;;;;;;;;;;-1:-1:-1;23876:185:0;;;;;:::i;:::-;;:::i;52425:341::-;;;;;;;;;;-1:-1:-1;52425:341:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34785:233::-;;;;;;;;;;-1:-1:-1;34785:233:0;;;;;:::i;:::-;;:::i;49488:33::-;;;;;;;;;;;;;:::i;54003:88::-;;;;;;;;;;-1:-1:-1;54003:88:0;;;;;:::i;:::-;;:::i;20711:239::-;;;;;;;;;;-1:-1:-1;20711:239:0;;;;;:::i;:::-;;:::i;49528:30::-;;;;;;;;;;;;;:::i;20441:208::-;;;;;;;;;;-1:-1:-1;20441:208:0;;;;;:::i;:::-;;:::i;41699:94::-;;;;;;;;;;;;;:::i;53694:82::-;;;;;;;;;;;;;:::i;52778:620::-;;;:::i;41048:87::-;;;;;;;;;;;;;:::i;53784:88::-;;;;;;;;;;-1:-1:-1;53784:88:0;;;;;:::i;:::-;;:::i;21186:104::-;;;;;;;;;;;;;:::i;49446:33::-;;;;;;;;;;;;;:::i;51553:608::-;;;;;;:::i;:::-;;:::i;22869:295::-;;;;;;;;;;-1:-1:-1;22869:295:0;;;;;:::i;:::-;;:::i;24132:328::-;;;;;;;;;;-1:-1:-1;24132:328:0;;;;;:::i;:::-;;:::i;21361:334::-;;;;;;;;;;-1:-1:-1;21361:334:0;;;;;:::i;:::-;;:::i;50503:189::-;;;;;;;;;;;;;:::i;49415:24::-;;;;;;;;;;;;;:::i;23235:164::-;;;;;;;;;;-1:-1:-1;23235:164:0;;;;;:::i;:::-;;:::i;49567:52::-;;;;;;;;;;-1:-1:-1;49567:52:0;;;;;:::i;:::-;;:::i;41948:192::-;;;;;;;;;;-1:-1:-1;41948:192:0;;;;;:::i;:::-;;:::i;50700:841::-;;;;;;:::i;:::-;;:::i;33955:224::-;34057:4;-1:-1:-1;;;;;;34081:50:0;;-1:-1:-1;;;34081:50:0;;:90;;;34135:36;34159:11;34135:23;:36::i;:::-;34074:97;;33955:224;;;;:::o;21017:100::-;21071:13;21104:5;21097:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21017:100;:::o;22576:221::-;22652:7;22680:16;22688:7;22680;:16::i;:::-;22672:73;;;;-1:-1:-1;;;22672:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22765:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22765:24:0;;22576:221::o;22099:411::-;22180:13;22196:23;22211:7;22196:14;:23::i;:::-;22180:39;;22244:5;-1:-1:-1;;;;;22238:11:0;:2;-1:-1:-1;;;;;22238:11:0;;;22230:57;;;;-1:-1:-1;;;22230:57:0;;;;;;;:::i;:::-;22338:5;-1:-1:-1;;;;;22322:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22322:21:0;;:62;;;;22347:37;22364:5;22371:12;:10;:12::i;22347:37::-;22300:168;;;;-1:-1:-1;;;22300:168:0;;;;;;;:::i;:::-;22481:21;22490:2;22494:7;22481:8;:21::i;:::-;22099:411;;;:::o;34595:113::-;34683:10;:17;34595:113;:::o;23466:339::-;23661:41;23680:12;:10;:12::i;:::-;23694:7;23661:18;:41::i;:::-;23653:103;;;;-1:-1:-1;;;23653:103:0;;;;;;;:::i;:::-;23769:28;23779:4;23785:2;23789:7;23769:9;:28::i;52169:244::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;52286:9:::1;52282:124;52297:27:::0;;::::1;52282:124;;;52385:6;;52392:1;52385:9;;;;;-1:-1:-1::0;;;52385:9:0::1;;;;;;;;;;;;;;;52345:16;:37;52362:16;;52379:1;52362:19;;;;;-1:-1:-1::0;;;52362:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52345:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52345:37:0;:49;52326:3;::::1;::::0;::::1;:::i;:::-;;;;52282:124;;;;52169:244:::0;;;;:::o;34263:256::-;34360:7;34396:23;34413:5;34396:16;:23::i;:::-;34388:5;:31;34380:87;;;;-1:-1:-1;;;34380:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34485:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34263:256::o;53595:91::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;53665:13:::1;::::0;;-1:-1:-1;;53648:30:0;::::1;53665:13;::::0;;::::1;53664:14;53648:30;::::0;;53595:91::o;23876:185::-;24014:39;24031:4;24037:2;24041:7;24014:39;;;;;;;;;;;;:16;:39::i;52425:341::-;52485:16;52514:18;52535:16;52545:5;52535:9;:16::i;:::-;52514:37;;52564:25;52606:10;52592:25;;;;;;-1:-1:-1;;;52592:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52592:25:0;;52564:53;;52632:9;52628:105;52647:10;52643:1;:14;52628:105;;;52692:29;52712:5;52719:1;52692:19;:29::i;:::-;52678:8;52687:1;52678:11;;;;;;-1:-1:-1;;;52678:11:0;;;;;;;;;;;;;;;;;;:43;52659:3;;;;:::i;:::-;;;;52628:105;;;-1:-1:-1;52750:8:0;52425:341;-1:-1:-1;;;52425:341:0:o;34785:233::-;34860:7;34896:30;:28;:30::i;:::-;34888:5;:38;34880:95;;;;-1:-1:-1;;;34880:95:0;;;;;;;:::i;:::-;34993:10;35004:5;34993:17;;;;;;-1:-1:-1;;;34993:17:0;;;;;;;;;;;;;;;;;34986:24;;34785:233;;;:::o;49488:33::-;;;;;;:::o;54003:88::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;54070:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54003:88:::0;:::o;20711:239::-;20783:7;20819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20819:16:0;20854:19;20846:73;;;;-1:-1:-1;;;20846:73:0;;;;;;;:::i;49528:30::-;;;;;;;;;:::o;20441:208::-;20513:7;-1:-1:-1;;;;;20541:19:0;;20533:74;;;;-1:-1:-1;;;20533:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20625:16:0;;;;;:9;:16;;;;;;;20441:208::o;41699:94::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;41764:21:::1;41782:1;41764:9;:21::i;:::-;41699:94::o:0;53694:82::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;53758:10:::1;::::0;;-1:-1:-1;;53744:24:0;::::1;53758:10;::::0;;;::::1;;;53757:11;53744:24:::0;;::::1;;::::0;;53694:82::o;52778:620::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;52855:21:::1;52897:11:::0;52889:20:::1;;;::::0;::::1;;52920:50;49702:42;52941:28;52963:5;52941:17;:7:::0;52953:4:::1;52941:11;:17::i;:::-;:21:::0;::::1;:28::i;:::-;52920:9;:50::i;:::-;52981:48;49792:42;53001:27;53022:5;53001:16;:7:::0;53013:3:::1;53001:11;:16::i;52981:48::-;53040;49877:42;53060:27;53081:5;53060:16;:7:::0;53072:3:::1;53060:11;:16::i;53040:48::-;53099:49;49962:42;53119:28;53141:5;53119:17;:7:::0;53131:4:::1;53119:11;:17::i;53099:49::-;53159;50048:42;53180:27;53201:5;53180:16;:7:::0;53192:3:::1;53180:11;:16::i;53159:49::-;53219:50;50134:42;53240:28;53262:5;53240:17;:7:::0;53252:4:::1;53240:11;:17::i;53219:50::-;53280:49;50220:42;53301:27;53322:5;53301:16;:7:::0;53313:3:::1;53301:11;:16::i;53280:49::-;53340:50;50306:42;53361:28;53383:5;53361:17;:7:::0;53373:4:::1;53361:11;:17::i;53340:50::-;41339:1;52778:620::o:0;41048:87::-;41121:6;;-1:-1:-1;;;;;41121:6:0;41048:87;:::o;53784:88::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;53848:5:::1;:16:::0;53784:88::o;21186:104::-;21242:13;21275:7;21268:14;;;;;:::i;49446:33::-;;;;:::o;51553:608::-;51616:14;51633:13;:11;:13::i;:::-;51665:10;;51616:30;;-1:-1:-1;51665:10:0;;;;;51657:82;;;;-1:-1:-1;;;51657:82:0;;;;;;;:::i;:::-;51774:1;51758:13;:17;:40;;;;;51795:3;51779:13;:19;51758:40;51750:79;;;;-1:-1:-1;;;51750:79:0;;;;;;;:::i;:::-;51877:9;;51848:25;:6;51859:13;51848:10;:25::i;:::-;:38;;51840:97;;;;-1:-1:-1;;;51840:97:0;;;;;;;:::i;:::-;51956:5;;51984:9;;51956:24;;51966:13;51956:9;:24::i;:::-;:37;51948:86;;;;-1:-1:-1;;;51948:86:0;;;;;;;:::i;:::-;52059:9;52055:99;52074:13;52070:1;:17;52055:99;;;52109:33;52119:10;52131;52140:1;52131:6;:10;:::i;:::-;52109:9;:33::i;:::-;52089:3;;;;:::i;:::-;;;;52055:99;;22869:295;22984:12;:10;:12::i;:::-;-1:-1:-1;;;;;22972:24:0;:8;-1:-1:-1;;;;;22972:24:0;;;22964:62;;;;-1:-1:-1;;;22964:62:0;;;;;;;:::i;:::-;23084:8;23039:18;:32;23058:12;:10;:12::i;:::-;-1:-1:-1;;;;;23039:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23039:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23039:53:0;;;;;;;;;;;23123:12;:10;:12::i;:::-;-1:-1:-1;;;;;23108:48:0;;23147:8;23108:48;;;;;;:::i;:::-;;;;;;;;22869:295;;:::o;24132:328::-;24307:41;24326:12;:10;:12::i;:::-;24340:7;24307:18;:41::i;:::-;24299:103;;;;-1:-1:-1;;;24299:103:0;;;;;;;:::i;:::-;24413:39;24427:4;24433:2;24437:7;24446:5;24413:13;:39::i;:::-;24132:328;;;;:::o;21361:334::-;21434:13;21468:16;21476:7;21468;:16::i;:::-;21460:76;;;;-1:-1:-1;;;21460:76:0;;;;;;;:::i;:::-;21549:21;21573:10;:8;:10::i;:::-;21549:34;;21625:1;21607:7;21601:21;:25;:86;;;;;;;;;;;;;;;;;21653:7;21662:18;:7;:16;:18::i;:::-;21636:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21601:86;21594:93;21361:334;-1:-1:-1;;;21361:334:0:o;50503:189::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;50550:14:::1;50567:13;:11;:13::i;:::-;50550:30;;50596:9;50591:94;50615:3;50611:1;:7;50591:94;;;50640:33;50650:10;50662;50671:1:::0;50662:6;:10:::1;:::i;50640:33::-;50620:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50591:94;;49415:24:::0;;;;:::o;23235:164::-;-1:-1:-1;;;;;23356:25:0;;;23332:4;23356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23235:164::o;49567:52::-;;;;;;;;;;;;;:::o;41948:192::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42037:22:0;::::1;42029:73;;;;-1:-1:-1::0;;;42029:73:0::1;;;;;;;:::i;:::-;42113:19;42123:8;42113:9;:19::i;50700:841::-:0;50770:14;50787:13;:11;:13::i;:::-;50847:10;50811:16;50830:28;;;:16;:28;;;;;;50877:13;;50770:30;;-1:-1:-1;50830:28:0;50877:13;;50869:85;;;;-1:-1:-1;;;50869:85:0;;;;;;;:::i;:::-;50984:1;50973:8;:12;50965:90;;;;-1:-1:-1;;;50965:90:0;;;;;;;:::i;:::-;51091:8;51074:13;:25;;51066:84;;;;-1:-1:-1;;;51066:84:0;;;;;;;:::i;:::-;51198:9;;51169:25;:6;51180:13;51169:10;:25::i;:::-;:38;;51161:97;;;;-1:-1:-1;;;51161:97:0;;;;;;;:::i;:::-;51277:5;;51305:9;;51277:24;;51287:13;51277:9;:24::i;:::-;:37;51269:86;;;;-1:-1:-1;;;51269:86:0;;;;;;;:::i;:::-;51397:24;51408:13;51397:8;:24;:::i;:::-;51383:10;51366:28;;;;:16;:28;;;;;:55;;;;51434:100;51453:13;51449:1;:17;51434:100;;;51487:35;51498:10;51510;51519:1;51510:6;:10;:::i;51487:35::-;51468:3;;;;:::i;:::-;;;;51434:100;;20072:305;20174:4;-1:-1:-1;;;;;;20211:40:0;;-1:-1:-1;;;20211:40:0;;:105;;-1:-1:-1;;;;;;;20268:48:0;;-1:-1:-1;;;20268:48:0;20211:105;:158;;;;20333:36;20357:11;20333:23;:36::i;25970:127::-;26035:4;26059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26059:16:0;:30;;;25970:127::o;1381:98::-;1461:10;1381:98;:::o;29952:174::-;30027:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30027:29:0;-1:-1:-1;;;;;30027:29:0;;;;;;;;:24;;30081:23;30027:24;30081:14;:23::i;:::-;-1:-1:-1;;;;;30072:46:0;;;;;;;;;;;29952:174;;:::o;26264:348::-;26357:4;26382:16;26390:7;26382;:16::i;:::-;26374:73;;;;-1:-1:-1;;;26374:73:0;;;;;;;:::i;:::-;26458:13;26474:23;26489:7;26474:14;:23::i;:::-;26458:39;;26527:5;-1:-1:-1;;;;;26516:16:0;:7;-1:-1:-1;;;;;26516:16:0;;:51;;;;26560:7;-1:-1:-1;;;;;26536:31:0;:20;26548:7;26536:11;:20::i;:::-;-1:-1:-1;;;;;26536:31:0;;26516:51;:87;;;;26571:32;26588:5;26595:7;26571:16;:32::i;:::-;26508:96;26264:348;-1:-1:-1;;;;26264:348:0:o;29256:578::-;29415:4;-1:-1:-1;;;;;29388:31:0;:23;29403:7;29388:14;:23::i;:::-;-1:-1:-1;;;;;29388:31:0;;29380:85;;;;-1:-1:-1;;;29380:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29484:16:0;;29476:65;;;;-1:-1:-1;;;29476:65:0;;;;;;;:::i;:::-;29554:39;29575:4;29581:2;29585:7;29554:20;:39::i;:::-;29658:29;29675:1;29679:7;29658:8;:29::i;:::-;-1:-1:-1;;;;;29700:15:0;;;;;;:9;:15;;;;;:20;;29719:1;;29700:15;:20;;29719:1;;29700:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29731:13:0;;;;;;:9;:13;;;;;:18;;29748:1;;29731:13;:18;;29748:1;;29731:18;:::i;:::-;;;;-1:-1:-1;;29760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29760:21:0;-1:-1:-1;;;;;29760:21:0;;;;;;;;;29799:27;;29760:16;;29799:27;;;;;;;29256:578;;;:::o;42148:173::-;42223:6;;;-1:-1:-1;;;;;42240:17:0;;;-1:-1:-1;;;;;;42240:17:0;;;;;;;42273:40;;42223:6;;;42240:17;42223:6;;42273:40;;42204:16;;42273:40;42148:173;;:::o;45798:98::-;45856:7;45883:5;45887:1;45883;:5;:::i;46197:98::-;46255:7;46282:5;46286:1;46282;:5;:::i;53407:180::-;53481:12;53499:8;-1:-1:-1;;;;;53499:13:0;53520:7;53499:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53480:52;;;53551:7;53543:36;;;;-1:-1:-1;;;53543:36:0;;;;;;;:::i;45060:98::-;45118:7;45145:5;45149:1;45145;:5;:::i;26954:110::-;27030:26;27040:2;27044:7;27030:26;;;;;;;;;;;;:9;:26::i;25342:315::-;25499:28;25509:4;25515:2;25519:7;25499:9;:28::i;:::-;25546:48;25569:4;25575:2;25579:7;25588:5;25546:22;:48::i;:::-;25538:111;;;;-1:-1:-1;;;25538:111:0;;;;;;;:::i;54103:100::-;54155:13;54188:7;54181:14;;;;;:::i;1850:723::-;1906:13;2127:10;2123:53;;-1:-1:-1;2154:10:0;;;;;;;;;;;;-1:-1:-1;;;2154:10:0;;;;;;2123:53;2201:5;2186:12;2242:78;2249:9;;2242:78;;2275:8;;;;:::i;:::-;;-1:-1:-1;2298:10:0;;-1:-1:-1;2306:2:0;2298:10;;:::i;:::-;;;2242:78;;;2330:19;2362:6;2352:17;;;;;;-1:-1:-1;;;2352:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2352:17:0;;2330:39;;2380:154;2387:10;;2380:154;;2414:11;2424:1;2414:11;;:::i;:::-;;-1:-1:-1;2483:10:0;2491:2;2483:5;:10;:::i;:::-;2470:24;;:2;:24;:::i;:::-;2457:39;;2440:6;2447;2440:14;;;;;;-1:-1:-1;;;2440:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2440:56:0;;;;;;;;-1:-1:-1;2511:11:0;2520:2;2511:11;;:::i;:::-;;;2380:154;;18679:157;-1:-1:-1;;;;;;18788:40:0;;-1:-1:-1;;;18788:40:0;18679:157;;;:::o;35631:589::-;35775:45;35802:4;35808:2;35812:7;35775:26;:45::i;:::-;-1:-1:-1;;;;;35837:18:0;;35833:187;;35872:40;35904:7;35872:31;:40::i;:::-;35833:187;;;35942:2;-1:-1:-1;;;;;35934:10:0;:4;-1:-1:-1;;;;;35934:10:0;;35930:90;;35961:47;35994:4;36000:7;35961:32;:47::i;:::-;-1:-1:-1;;;;;36034:16:0;;36030:183;;36067:45;36104:7;36067:36;:45::i;:::-;36030:183;;;36140:4;-1:-1:-1;;;;;36134:10:0;:2;-1:-1:-1;;;;;36134:10:0;;36130:83;;36161:40;36189:2;36193:7;36161:27;:40::i;27291:321::-;27421:18;27427:2;27431:7;27421:5;:18::i;:::-;27472:54;27503:1;27507:2;27511:7;27520:5;27472:22;:54::i;:::-;27450:154;;;;-1:-1:-1;;;27450:154:0;;;;;;;:::i;30691:799::-;30846:4;30867:15;:2;-1:-1:-1;;;;;30867:13:0;;:15::i;:::-;30863:620;;;30919:2;-1:-1:-1;;;;;30903:36:0;;30940:12;:10;:12::i;:::-;30954:4;30960:7;30969:5;30903:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30903:72:0;;;;;;;;-1:-1:-1;;30903:72:0;;;;;;;;;;;;:::i;:::-;;;30899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31145:13:0;;31141:272;;31188:60;;-1:-1:-1;;;31188:60:0;;;;;;;:::i;31141:272::-;31363:6;31357:13;31348:6;31344:2;31340:15;31333:38;30899:529;-1:-1:-1;;;;;;31026:51:0;-1:-1:-1;;;31026:51:0;;-1:-1:-1;31019:58:0;;30863:620;-1:-1:-1;31467:4:0;30691:799;;;;;;:::o;36943:164::-;37047:10;:17;;37020:24;;;;:15;:24;;;;;:44;;;37075:24;;;;;;;;;;;;36943:164::o;37734:988::-;38000:22;38050:1;38025:22;38042:4;38025:16;:22::i;:::-;:26;;;;:::i;:::-;38062:18;38083:26;;;:17;:26;;;;;;38000:51;;-1:-1:-1;38216:28:0;;;38212:328;;-1:-1:-1;;;;;38283:18:0;;38261:19;38283:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38334:30;;;;;;:44;;;38451:30;;:17;:30;;;;;:43;;;38212:328;-1:-1:-1;38636:26:0;;;;:17;:26;;;;;;;;38629:33;;;-1:-1:-1;;;;;38680:18:0;;;;;:12;:18;;;;;:34;;;;;;;38673:41;37734:988::o;39017:1079::-;39295:10;:17;39270:22;;39295:21;;39315:1;;39295:21;:::i;:::-;39327:18;39348:24;;;:15;:24;;;;;;39721:10;:26;;39270:46;;-1:-1:-1;39348:24:0;;39270:46;;39721:26;;;;-1:-1:-1;;;39721:26:0;;;;;;;;;;;;;;;;;39699:48;;39785:11;39760:10;39771;39760:22;;;;;;-1:-1:-1;;;39760:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;39865:28;;;:15;:28;;;;;;;:41;;;40037:24;;;;;40030:31;40072:10;:16;;;;;-1:-1:-1;;;40072:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39017:1079;;;;:::o;36521:221::-;36606:14;36623:20;36640:2;36623:16;:20::i;:::-;-1:-1:-1;;;;;36654:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36699:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36521:221:0:o;27948:382::-;-1:-1:-1;;;;;28028:16:0;;28020:61;;;;-1:-1:-1;;;28020:61:0;;;;;;;:::i;:::-;28101:16;28109:7;28101;:16::i;:::-;28100:17;28092:58;;;;-1:-1:-1;;;28092:58:0;;;;;;;:::i;:::-;28163:45;28192:1;28196:2;28200:7;28163:20;:45::i;:::-;-1:-1:-1;;;;;28221:13:0;;;;;;:9;:13;;;;;:18;;28238:1;;28221:13;:18;;28238:1;;28221:18;:::i;:::-;;;;-1:-1:-1;;28250:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28250:21:0;-1:-1:-1;;;;;28250:21:0;;;;;;;;28289:33;;28250:16;;;28289:33;;28250:16;;28289:33;27948:382;;:::o;10611:387::-;10934:20;10982:8;;;10611:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:400;;;939:3;932:4;924:6;920:17;916:27;906:2;;962:6;954;947:22;906:2;-1:-1:-1;990:20:1;;1033:18;1022:30;;1019:2;;;1072:8;1062;1055:26;1019:2;1116:4;1108:6;1104:17;1092:29;;1179:3;1172:4;1164;1156:6;1152:17;1144:6;1140:30;1136:41;1133:50;1130:2;;;1196:1;1193;1186:12;1130:2;896:310;;;;;:::o;1211:198::-;;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:31;1393:9;1372:31;:::i;1414:274::-;;;1543:2;1531:9;1522:7;1518:23;1514:32;1511:2;;;1564:6;1556;1549:22;1511:2;1592:31;1613:9;1592:31;:::i;:::-;1582:41;;1642:40;1678:2;1667:9;1663:18;1642:40;:::i;:::-;1632:50;;1501:187;;;;;:::o;1693:342::-;;;;1839:2;1827:9;1818:7;1814:23;1810:32;1807:2;;;1860:6;1852;1845:22;1807:2;1888:31;1909:9;1888:31;:::i;:::-;1878:41;;1938:40;1974:2;1963:9;1959:18;1938:40;:::i;:::-;1928:50;;2025:2;2014:9;2010:18;1997:32;1987:42;;1797:238;;;;;:::o;2040:702::-;;;;;2212:3;2200:9;2191:7;2187:23;2183:33;2180:2;;;2234:6;2226;2219:22;2180:2;2262:31;2283:9;2262:31;:::i;:::-;2252:41;;2312:40;2348:2;2337:9;2333:18;2312:40;:::i;:::-;2302:50;;2399:2;2388:9;2384:18;2371:32;2361:42;;2454:2;2443:9;2439:18;2426:32;2481:18;2473:6;2470:30;2467:2;;;2518:6;2510;2503:22;2467:2;2546:22;;2599:4;2591:13;;2587:27;-1:-1:-1;2577:2:1;;2633:6;2625;2618:22;2577:2;2661:75;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2661:75;:::i;:::-;2651:85;;;2170:572;;;;;;;:::o;2747:369::-;;;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2894:6;2886;2879:22;2841:2;2922:31;2943:9;2922:31;:::i;:::-;2912:41;;3003:2;2992:9;2988:18;2975:32;3050:5;3043:13;3036:21;3029:5;3026:32;3016:2;;3077:6;3069;3062:22;3016:2;3105:5;3095:15;;;2831:285;;;;;:::o;3121:266::-;;;3250:2;3238:9;3229:7;3225:23;3221:32;3218:2;;;3271:6;3263;3256:22;3218:2;3299:31;3320:9;3299:31;:::i;:::-;3289:41;3377:2;3362:18;;;;3349:32;;-1:-1:-1;;;3208:179:1:o;3392:815::-;;;;;3591:2;3579:9;3570:7;3566:23;3562:32;3559:2;;;3612:6;3604;3597:22;3559:2;3657:9;3644:23;3686:18;3727:2;3719:6;3716:14;3713:2;;;3748:6;3740;3733:22;3713:2;3792:76;3860:7;3851:6;3840:9;3836:22;3792:76;:::i;:::-;3887:8;;-1:-1:-1;3766:102:1;-1:-1:-1;3975:2:1;3960:18;;3947:32;;-1:-1:-1;3991:16:1;;;3988:2;;;4025:6;4017;4010:22;3988:2;;4069:78;4139:7;4128:8;4117:9;4113:24;4069:78;:::i;:::-;3549:658;;;;-1:-1:-1;4166:8:1;-1:-1:-1;;;;3549:658:1:o;4212:257::-;;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4344:6;4336;4329:22;4291:2;4388:9;4375:23;4407:32;4433:5;4407:32;:::i;4474:261::-;;4596:2;4584:9;4575:7;4571:23;4567:32;4564:2;;;4617:6;4609;4602:22;4564:2;4654:9;4648:16;4673:32;4699:5;4673:32;:::i;4740:482::-;;4862:2;4850:9;4841:7;4837:23;4833:32;4830:2;;;4883:6;4875;4868:22;4830:2;4928:9;4915:23;4961:18;4953:6;4950:30;4947:2;;;4998:6;4990;4983:22;4947:2;5026:22;;5079:4;5071:13;;5067:27;-1:-1:-1;5057:2:1;;5113:6;5105;5098:22;5057:2;5141:75;5208:7;5203:2;5190:16;5185:2;5181;5177:11;5141:75;:::i;5227:190::-;;5339:2;5327:9;5318:7;5314:23;5310:32;5307:2;;;5360:6;5352;5345:22;5307:2;-1:-1:-1;5388:23:1;;5297:120;-1:-1:-1;5297:120:1:o;5422:259::-;;5503:5;5497:12;5530:6;5525:3;5518:19;5546:63;5602:6;5595:4;5590:3;5586:14;5579:4;5572:5;5568:16;5546:63;:::i;:::-;5663:2;5642:15;-1:-1:-1;;5638:29:1;5629:39;;;;5670:4;5625:50;;5473:208;-1:-1:-1;;5473:208:1:o;5686:470::-;;5903:6;5897:13;5919:53;5965:6;5960:3;5953:4;5945:6;5941:17;5919:53;:::i;:::-;6035:13;;5994:16;;;;6057:57;6035:13;5994:16;6091:4;6079:17;;6057:57;:::i;:::-;6130:20;;5873:283;-1:-1:-1;;;;5873:283:1:o;6161:205::-;6361:3;6352:14::o;6371:203::-;-1:-1:-1;;;;;6535:32:1;;;;6517:51;;6505:2;6490:18;;6472:102::o;6579:490::-;-1:-1:-1;;;;;6848:15:1;;;6830:34;;6900:15;;6895:2;6880:18;;6873:43;6947:2;6932:18;;6925:34;;;6995:3;6990:2;6975:18;;6968:31;;;6579:490;;7016:47;;7043:19;;7035:6;7016:47;:::i;:::-;7008:55;6782:287;-1:-1:-1;;;;;;6782:287:1:o;7074:635::-;7245:2;7297:21;;;7367:13;;7270:18;;;7389:22;;;7074:635;;7245:2;7468:15;;;;7442:2;7427:18;;;7074:635;7514:169;7528:6;7525:1;7522:13;7514:169;;;7589:13;;7577:26;;7658:15;;;;7623:12;;;;7550:1;7543:9;7514:169;;;-1:-1:-1;7700:3:1;;7225:484;-1:-1:-1;;;;;;7225:484:1:o;7714:187::-;7879:14;;7872:22;7854:41;;7842:2;7827:18;;7809:92::o;7906:221::-;;8055:2;8044:9;8037:21;8075:46;8117:2;8106:9;8102:18;8094:6;8075:46;:::i;8132:353::-;8334:2;8316:21;;;8373:2;8353:18;;;8346:30;8412:31;8407:2;8392:18;;8385:59;8476:2;8461:18;;8306:179::o;8490:407::-;8692:2;8674:21;;;8731:2;8711:18;;;8704:30;8770:34;8765:2;8750:18;;8743:62;-1:-1:-1;;;8836:2:1;8821:18;;8814:41;8887:3;8872:19;;8664:233::o;8902:414::-;9104:2;9086:21;;;9143:2;9123:18;;;9116:30;9182:34;9177:2;9162:18;;9155:62;-1:-1:-1;;;9248:2:1;9233:18;;9226:48;9306:3;9291:19;;9076:240::o;9321:402::-;9523:2;9505:21;;;9562:2;9542:18;;;9535:30;9601:34;9596:2;9581:18;;9574:62;-1:-1:-1;;;9667:2:1;9652:18;;9645:36;9713:3;9698:19;;9495:228::o;9728:352::-;9930:2;9912:21;;;9969:2;9949:18;;;9942:30;10008;10003:2;9988:18;;9981:58;10071:2;10056:18;;9902:178::o;10085:400::-;10287:2;10269:21;;;10326:2;10306:18;;;10299:30;10365:34;10360:2;10345:18;;10338:62;-1:-1:-1;;;10431:2:1;10416:18;;10409:34;10475:3;10460:19;;10259:226::o;10490:349::-;10692:2;10674:21;;;10731:2;10711:18;;;10704:30;10770:27;10765:2;10750:18;;10743:55;10830:2;10815:18;;10664:175::o;10844:355::-;11046:2;11028:21;;;11085:2;11065:18;;;11058:30;11124:33;11119:2;11104:18;;11097:61;11190:2;11175:18;;11018:181::o;11204:351::-;11406:2;11388:21;;;11445:2;11425:18;;;11418:30;11484:29;11479:2;11464:18;;11457:57;11546:2;11531:18;;11378:177::o;11560:408::-;11762:2;11744:21;;;11801:2;11781:18;;;11774:30;11840:34;11835:2;11820:18;;11813:62;-1:-1:-1;;;11906:2:1;11891:18;;11884:42;11958:3;11943:19;;11734:234::o;11973:399::-;12175:2;12157:21;;;12214:2;12194:18;;;12187:30;12253:34;12248:2;12233:18;;12226:62;-1:-1:-1;;;12319:2:1;12304:18;;12297:33;12362:3;12347:19;;12147:225::o;12377:420::-;12579:2;12561:21;;;12618:2;12598:18;;;12591:30;12657:34;12652:2;12637:18;;12630:62;12728:26;12723:2;12708:18;;12701:54;12787:3;12772:19;;12551:246::o;12802:354::-;13004:2;12986:21;;;13043:2;13023:18;;;13016:30;13082:32;13077:2;13062:18;;13055:60;13147:2;13132:18;;12976:180::o;13161:406::-;13363:2;13345:21;;;13402:2;13382:18;;;13375:30;13441:34;13436:2;13421:18;;13414:62;-1:-1:-1;;;13507:2:1;13492:18;;13485:40;13557:3;13542:19;;13335:232::o;13572:405::-;13774:2;13756:21;;;13813:2;13793:18;;;13786:30;13852:34;13847:2;13832:18;;13825:62;-1:-1:-1;;;13918:2:1;13903:18;;13896:39;13967:3;13952:19;;13746:231::o;13982:406::-;14184:2;14166:21;;;14223:2;14203:18;;;14196:30;14262:34;14257:2;14242:18;;14235:62;-1:-1:-1;;;14328:2:1;14313:18;;14306:40;14378:3;14363:19;;14156:232::o;14393:356::-;14595:2;14577:21;;;14614:18;;;14607:30;14673:34;14668:2;14653:18;;14646:62;14740:2;14725:18;;14567:182::o;14754:408::-;14956:2;14938:21;;;14995:2;14975:18;;;14968:30;15034:34;15029:2;15014:18;;15007:62;-1:-1:-1;;;15100:2:1;15085:18;;15078:42;15152:3;15137:19;;14928:234::o;15167:356::-;15369:2;15351:21;;;15388:18;;;15381:30;15447:34;15442:2;15427:18;;15420:62;15514:2;15499:18;;15341:182::o;15528:405::-;15730:2;15712:21;;;15769:2;15749:18;;;15742:30;15808:34;15803:2;15788:18;;15781:62;-1:-1:-1;;;15874:2:1;15859:18;;15852:39;15923:3;15908:19;;15702:231::o;15938:411::-;16140:2;16122:21;;;16179:2;16159:18;;;16152:30;16218:34;16213:2;16198:18;;16191:62;-1:-1:-1;;;16284:2:1;16269:18;;16262:45;16339:3;16324:19;;16112:237::o;16354:397::-;16556:2;16538:21;;;16595:2;16575:18;;;16568:30;16634:34;16629:2;16614:18;;16607:62;-1:-1:-1;;;16700:2:1;16685:18;;16678:31;16741:3;16726:19;;16528:223::o;16756:340::-;16958:2;16940:21;;;16997:2;16977:18;;;16970:30;-1:-1:-1;;;17031:2:1;17016:18;;17009:46;17087:2;17072:18;;16930:166::o;17101:413::-;17303:2;17285:21;;;17342:2;17322:18;;;17315:30;17381:34;17376:2;17361:18;;17354:62;-1:-1:-1;;;17447:2:1;17432:18;;17425:47;17504:3;17489:19;;17275:239::o;17519:408::-;17721:2;17703:21;;;17760:2;17740:18;;;17733:30;17799:34;17794:2;17779:18;;17772:62;-1:-1:-1;;;17865:2:1;17850:18;;17843:42;17917:3;17902:19;;17693:234::o;17932:347::-;18134:2;18116:21;;;18173:2;18153:18;;;18146:30;18212:25;18207:2;18192:18;;18185:53;18270:2;18255:18;;18106:173::o;18284:177::-;18430:25;;;18418:2;18403:18;;18385:76::o;18466:128::-;;18537:1;18533:6;18530:1;18527:13;18524:2;;;18543:18;;:::i;:::-;-1:-1:-1;18579:9:1;;18514:80::o;18599:120::-;;18665:1;18655:2;;18670:18;;:::i;:::-;-1:-1:-1;18704:9:1;;18645:74::o;18724:168::-;;18830:1;18826;18822:6;18818:14;18815:1;18812:21;18807:1;18800:9;18793:17;18789:45;18786:2;;;18837:18;;:::i;:::-;-1:-1:-1;18877:9:1;;18776:116::o;18897:125::-;;18965:1;18962;18959:8;18956:2;;;18970:18;;:::i;:::-;-1:-1:-1;19007:9:1;;18946:76::o;19027:258::-;19099:1;19109:113;19123:6;19120:1;19117:13;19109:113;;;19199:11;;;19193:18;19180:11;;;19173:39;19145:2;19138:10;19109:113;;;19240:6;19237:1;19234:13;19231:2;;;-1:-1:-1;;19275:1:1;19257:16;;19250:27;19080:205::o;19290:380::-;19375:1;19365:12;;19422:1;19412:12;;;19433:2;;19487:4;19479:6;19475:17;19465:27;;19433:2;19540;19532:6;19529:14;19509:18;19506:38;19503:2;;;19586:10;19581:3;19577:20;19574:1;19567:31;19621:4;19618:1;19611:15;19649:4;19646:1;19639:15;19503:2;;19345:325;;;:::o;19675:135::-;;-1:-1:-1;;19735:17:1;;19732:2;;;19755:18;;:::i;:::-;-1:-1:-1;19802:1:1;19791:13;;19722:88::o;19815:112::-;;19873:1;19863:2;;19878:18;;:::i;:::-;-1:-1:-1;19912:9:1;;19853:74::o;19932:127::-;19993:10;19988:3;19984:20;19981:1;19974:31;20024:4;20021:1;20014:15;20048:4;20045:1;20038:15;20064:127;20125:10;20120:3;20116:20;20113:1;20106:31;20156:4;20153:1;20146:15;20180:4;20177:1;20170:15;20196:127;20257:10;20252:3;20248:20;20245:1;20238:31;20288:4;20285:1;20278:15;20312:4;20309:1;20302:15;20328:133;-1:-1:-1;;;;;;20404:32:1;;20394:43;;20384:2;;20451:1;20448;20441:12

Swarm Source

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