ETH Price: $3,253.99 (+3.58%)
Gas: 3 Gwei

Token

NoShitZone (NOSHIT)
 

Overview

Max Total Supply

3,207 NOSHIT

Holders

353

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xe1690e5854007f020486970cc17a4e1d7da135ff
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

What are you shit heads looking at? This is no shit zone!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NoShitZone

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 15 : NoShitZone.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

contract NoShitZone is ERC1155, ERC2981, Ownable {
    using Address for address payable;
    using Strings for uint256;

    uint32 public constant TOTAL_SUPPLY = 10000;
    uint32 public constant WALLET_LIMIT = 2;
    uint32 public constant LEGENDARY_SUPPLY = 7;
    uint32 public constant DOPE_SUPPLY = 3905 - 4; // Minus legendary
    uint32 public constant BASIC_SUPPLY = 6095 - 3; // Minus legendary
    uint32 public constant LEGENDARY_ID = 0;
    uint32 public constant DOPE_ID = 1;
    uint32 public constant BASIC_ID = 2;

    IERC20 public immutable _shitCoin;

    struct Status {
        uint32 basicSupply;
        uint32 basicMinted;
        uint32 walletLimit;
        uint256 ethPrice;
        uint256 shitPrice;
        uint32 userMinted;
        bool started;
        bool soldout;
    }

    uint32 public _legendaryMinted;
    uint32 public _dopeMinted;
    uint32 public _basicMinted;
    mapping(address => uint32) public _userMinted;

    address public _burner;
    bool public _started;
    uint256 public _shitPrice;
    uint256 public _ethPrice;
    string public _metadataURI = "https://metadata.pieceofshit.wtf/cleaner/";

    constructor(address shitCoin) ERC1155("") {
        require(LEGENDARY_SUPPLY + DOPE_SUPPLY + BASIC_SUPPLY == TOTAL_SUPPLY);

        _shitCoin = IERC20(shitCoin);
    }

    function purchase(uint32 amount, bool useEth) external payable {
        require(tx.origin == msg.sender, "NoShitZone: ?");
        require(_started, "NoShitZone: Not Started");

        _userMinted[msg.sender] += amount;
        require(_userMinted[msg.sender] <= WALLET_LIMIT, "NoShitZone: Exceed wallet limit");

        if (useEth) {
            require(msg.value == _ethPrice * amount, "NoShitZone: Insufficient Fund");
        } else {
            require(_shitCoin.transferFrom(msg.sender, address(this), _shitPrice * amount), "NoShitZone: Insufficient Fund");
        }

        internalMint(msg.sender, BASIC_ID, amount);
    }

    function airdrop(
        uint32 id,
        address[] memory tos,
        uint32[] memory amounts
    ) external onlyOwner {
        require(tos.length == amounts.length);

        for (uint256 i = 0; i < amounts.length; i++) internalMint(tos[i], id, amounts[i]);
    }

    function internalMint(
        address minter,
        uint32 id,
        uint32 amount
    ) internal {
        if (id == LEGENDARY_ID) {
            _legendaryMinted += amount;
            require(_legendaryMinted <= LEGENDARY_SUPPLY, "ShitPlunger: Exceed max supply");
        } else if (id == DOPE_ID) {
            _dopeMinted += amount;
            require(_dopeMinted <= DOPE_SUPPLY, "ShitPlunger: Exceed max supply");
        } else if (id == BASIC_ID) {
            _basicMinted += amount;
            require(_basicMinted <= BASIC_SUPPLY, "ShitPlunger: Exceed max supply");
        } else {
            require(false, "NoShitZone: WTF is that NoShitZone");
        }

        _mint(minter, id, amount, "");
    }

    function burn(
        address who,
        uint32 amount,
        uint32 id
    ) external {
        require(msg.sender == _burner, "ShitPlunger: ?");

        _burn(who, id, amount);
    }

    function _status(address minter) public view returns (Status memory) {
        return
            Status({
                basicSupply: BASIC_SUPPLY,
                basicMinted: _basicMinted,
                walletLimit: WALLET_LIMIT,
                ethPrice: _ethPrice,
                shitPrice: _shitPrice,
                userMinted: _userMinted[minter],
                started: _started,
                soldout: _basicMinted >= BASIC_SUPPLY
            });
    }

    function uri(uint256 id) public view override returns (string memory) {
        string memory baseURI = _metadataURI;
        return string(abi.encodePacked(baseURI, id.toString(), ".json"));
    }

    function setMetadataURI(string memory metadataURI) external onlyOwner {
        _metadataURI = metadataURI;
    }

    function setBurner(address burner) external onlyOwner {
        _burner = burner;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC1155) returns (bool) {
        return
            interfaceId == type(IERC2981).interfaceId ||
            interfaceId == type(IERC1155).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function setFeeNumerator(uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(owner(), feeNumerator);
    }

    function setEthPrice(uint256 price) public onlyOwner {
        _ethPrice = price;
    }

    function setShitPrice(uint256 price) public onlyOwner {
        _shitPrice = price;
    }

    function setStarted(bool started) public onlyOwner {
        _started = started;
    }

    function withdrawFund(address tokenAddress) external onlyOwner {
        if (tokenAddress == address(0)) {
            payable(msg.sender).sendValue(address(this).balance);
        } else {
            IERC20(tokenAddress).transfer(msg.sender, IERC20(tokenAddress).balanceOf(address(this)));
        }
    }

    function name() public pure returns (string memory) {
        return "NoShitZone";
    }

    function symbol() public pure returns (string memory) {
        return "NOSHIT";
    }
}

File 2 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

File 3 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 5 of 15 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 6 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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

File 7 of 15 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 8 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

File 9 of 15 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 10 of 15 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 15 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 12 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

File 14 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"shitCoin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"BASIC_ID","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BASIC_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOPE_ID","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOPE_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEGENDARY_ID","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEGENDARY_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_basicMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_dopeMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ethPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_legendaryMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_shitCoin","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_shitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_status","outputs":[{"components":[{"internalType":"uint32","name":"basicSupply","type":"uint32"},{"internalType":"uint32","name":"basicMinted","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"},{"internalType":"uint256","name":"ethPrice","type":"uint256"},{"internalType":"uint256","name":"shitPrice","type":"uint256"},{"internalType":"uint32","name":"userMinted","type":"uint32"},{"internalType":"bool","name":"started","type":"bool"},{"internalType":"bool","name":"soldout","type":"bool"}],"internalType":"struct NoShitZone.Status","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_userMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"id","type":"uint32"},{"internalType":"address[]","name":"tos","type":"address[]"},{"internalType":"uint32[]","name":"amounts","type":"uint32[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint32","name":"amount","type":"uint32"},{"internalType":"uint32","name":"id","type":"uint32"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"},{"internalType":"bool","name":"useEth","type":"bool"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"}],"name":"setBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setEthPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"metadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setShitPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"started","type":"bool"}],"name":"setStarted","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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawFund","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052602960a08181529062003dbb60c03980516200002a91600a9160209091019062000130565b503480156200003857600080fd5b5060405162003de438038062003de48339810160408190526200005b91620001d6565b6040805160208101909152600081526200007581620000c5565b506200008133620000de565b6127106117cc62000096610f3d600762000208565b620000a2919062000208565b63ffffffff1614620000b357600080fd5b6001600160a01b03166080526200027c565b8051620000da90600290602084019062000130565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013e906200023f565b90600052602060002090601f016020900481019282620001625760008555620001ad565b82601f106200017d57805160ff1916838001178555620001ad565b82800160010185558215620001ad579182015b82811115620001ad57825182559160200191906001019062000190565b50620001bb929150620001bf565b5090565b5b80821115620001bb5760008155600101620001c0565b600060208284031215620001e957600080fd5b81516001600160a01b03811681146200020157600080fd5b9392505050565b600063ffffffff8083168185168083038211156200023657634e487b7160e01b600052601160045260246000fd5b01949350505050565b600181811c908216806200025457607f821691505b602082108114156200027657634e487b7160e01b600052602260045260246000fd5b50919050565b608051613b1c6200029f600039600081816105c401526113e40152613b1c6000f3fe6080604052600436106102da5760003560e01c8063653a819e11610184578063a996d6ce116100d6578063e985e9c51161008a578063f242432a11610064578063f242432a146109bd578063f2fde38b146109dd578063fd4e12ed146109fd57600080fd5b8063e985e9c514610934578063ea252caa1461097d578063ef6b141a1461099d57600080fd5b8063d4a67623116100bb578063d4a67623146108c2578063d9e06e8c146108d7578063de3bee601461091457600080fd5b8063a996d6ce14610882578063baf0887e146108a257600080fd5b8063902d55a511610138578063986250e311610112578063986250e3146107385780639a7cfa4f1461074b578063a22cb4651461086257600080fd5b8063902d55a5146106c6578063942494ca146106dc57806395d89b41146106f257600080fd5b8063715018a611610169578063715018a614610673578063750521f5146106885780638da5cb5b146106a857600080fd5b8063653a819e1461063e5780636ab659151461065e57600080fd5b80632cbf0f5f1161023d5780634998495e116101f15780635097db8b116101cb5780635097db8b146105b25780635376f1a3146105fe578063610936b91461061e57600080fd5b80634998495e1461053e5780634df22a54146105535780634e1273f41461058557600080fd5b8063351ed95111610222578063351ed9511461044657806340e99656146104f35780634203d6291461052857600080fd5b80632cbf0f5f1461049a5780632eb2c2d6146104d357600080fd5b806307675165116102945780630e89341c116102795780630e89341c1461042657806316a2ae35146104465780632a55205a1461045b57600080fd5b806307675165146103dd57806307eac2421461041057600080fd5b806301ffc9a7116102c557806301ffc9a714610334578063059fd97f1461036457806306fdde031461038e57600080fd5b80629f9262146102df578062fdd58e14610301575b600080fd5b3480156102eb57600080fd5b506102ff6102fa366004612eb5565b610a13565b005b34801561030d57600080fd5b5061032161031c366004612eea565b610a77565b6040519081526020015b60405180910390f35b34801561034057600080fd5b5061035461034f366004612f42565b610b1b565b604051901515815260200161032b565b34801561037057600080fd5b50610379600181565b60405163ffffffff909116815260200161032b565b34801561039a57600080fd5b5060408051808201909152600a81527f4e6f536869745a6f6e650000000000000000000000000000000000000000000060208201525b60405161032b9190612fdc565b3480156103e957600080fd5b506103796103f8366004612fef565b60066020526000908152604090205463ffffffff1681565b34801561041c57600080fd5b5061032160095481565b34801561043257600080fd5b506103d0610441366004612eb5565b610bc3565b34801561045257600080fd5b50610379600281565b34801561046757600080fd5b5061047b61047636600461300a565b610c86565b604080516001600160a01b03909316835260208301919091520161032b565b3480156104a657600080fd5b50600554610379907801000000000000000000000000000000000000000000000000900463ffffffff1681565b3480156104df57600080fd5b506102ff6104ee3660046131d7565b610d63565b3480156104ff57600080fd5b506005546103799074010000000000000000000000000000000000000000900463ffffffff1681565b34801561053457600080fd5b50610379610f3d81565b34801561054a57600080fd5b50610379600081565b34801561055f57600080fd5b506007546103549074010000000000000000000000000000000000000000900460ff1681565b34801561059157600080fd5b506105a56105a03660046132ee565b610e05565b60405161032b919061338d565b3480156105be57600080fd5b506105e67f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161032b565b34801561060a57600080fd5b506102ff610619366004612fef565b610f43565b34801561062a57600080fd5b506007546105e6906001600160a01b031681565b34801561064a57600080fd5b506102ff6106593660046133a0565b6110ce565b34801561066a57600080fd5b50610379600781565b34801561067f57600080fd5b506102ff611143565b34801561069457600080fd5b506102ff6106a33660046133ce565b6111a9565b3480156106b457600080fd5b506005546001600160a01b03166105e6565b3480156106d257600080fd5b5061037961271081565b3480156106e857600080fd5b506103796117cc81565b3480156106fe57600080fd5b5060408051808201909152600681527f4e4f53484954000000000000000000000000000000000000000000000000000060208201526103d0565b6102ff610746366004613439565b611216565b34801561075757600080fd5b50610855610766366004612fef565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091525060408051610100810182526117cc8082526005547c0100000000000000000000000000000000000000000000000000000000900463ffffffff9081166020808501829052600285870152600954606086015260085460808601526001600160a01b0390961660009081526006909652939094205490931660a082015260075460ff7401000000000000000000000000000000000000000090910416151560c082015291111560e082015290565b60405161032b9190613470565b34801561086e57600080fd5b506102ff61087d3660046134e3565b61150f565b34801561088e57600080fd5b506102ff61089d366004612fef565b61151a565b3480156108ae57600080fd5b506102ff6108bd3660046134ff565b6115ae565b3480156108ce57600080fd5b506103d0611677565b3480156108e357600080fd5b50600554610379907c0100000000000000000000000000000000000000000000000000000000900463ffffffff1681565b34801561092057600080fd5b506102ff61092f366004612eb5565b611705565b34801561094057600080fd5b5061035461094f3660046135db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561098957600080fd5b506102ff61099836600461360e565b611764565b3480156109a957600080fd5b506102ff6109b8366004613651565b6117da565b3480156109c957600080fd5b506102ff6109d836600461366e565b61187e565b3480156109e957600080fd5b506102ff6109f8366004612fef565b611919565b348015610a0957600080fd5b5061032160085481565b6005546001600160a01b03163314610a725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b60006001600160a01b038316610af55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a69565b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610bae57507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b80610bbd5750610bbd826119f8565b92915050565b60606000600a8054610bd4906136d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c00906136d3565b8015610c4d5780601f10610c2257610100808354040283529160200191610c4d565b820191906000526020600020905b815481529060010190602001808311610c3057829003601f168201915b5050505050905080610c5e84611a4e565b604051602001610c6f929190613727565b604051602081830303815290604052915050919050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610d275750604080518082019091526003546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610d4b906bffffffffffffffffffffffff16876137ad565b610d559190613819565b915196919550909350505050565b6001600160a01b038516331480610d7f5750610d7f853361094f565b610df15760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a69565b610dfe8585858585611b88565b5050505050565b60608151835114610e7e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610a69565b6000835167ffffffffffffffff811115610e9a57610e9a61302c565b604051908082528060200260200182016040528015610ec3578160200160208202803683370190505b50905060005b8451811015610f3b57610f0e858281518110610ee757610ee761382d565b6020026020010151858381518110610f0157610f0161382d565b6020026020010151610a77565b828281518110610f2057610f2061382d565b6020908102919091010152610f348161385c565b9050610ec9565b509392505050565b6005546001600160a01b03163314610f9d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6001600160a01b038116610fb857610fb53347611e26565b50565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190613895565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156110a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ca91906138ae565b5050565b6005546001600160a01b031633146111285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b610fb561113d6005546001600160a01b031690565b82611f3f565b6005546001600160a01b0316331461119d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6111a7600061206a565b565b6005546001600160a01b031633146112035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b80516110ca90600a906020840190612e1c565b3233146112655760405162461bcd60e51b815260206004820152600d60248201527f4e6f536869745a6f6e653a203f000000000000000000000000000000000000006044820152606401610a69565b60075474010000000000000000000000000000000000000000900460ff166112cf5760405162461bcd60e51b815260206004820152601760248201527f4e6f536869745a6f6e653a204e6f7420537461727465640000000000000000006044820152606401610a69565b33600090815260066020526040812080548492906112f490849063ffffffff166138cb565b82546101009290920a63ffffffff8181021990931691831602179091553360009081526006602052604090205460029116111590506113755760405162461bcd60e51b815260206004820152601f60248201527f4e6f536869745a6f6e653a204578636565642077616c6c6574206c696d6974006044820152606401610a69565b80156113e2578163ffffffff1660095461138f91906137ad565b34146113dd5760405162461bcd60e51b815260206004820152601d60248201527f4e6f536869745a6f6e653a20496e73756666696369656e742046756e640000006044820152606401610a69565b611503565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166323b872dd33308563ffffffff1660085461142791906137ad565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015611493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b791906138ae565b6115035760405162461bcd60e51b815260206004820152601d60248201527f4e6f536869745a6f6e653a20496e73756666696369656e742046756e640000006044820152606401610a69565b6110ca336002846120d4565b6110ca3383836123a3565b6005546001600160a01b031633146115745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b805182511461161657600080fd5b60005b81518110156116715761165f8382815181106116375761163761382d565b6020026020010151858484815181106116525761165261382d565b60200260200101516120d4565b806116698161385c565b915050611619565b50505050565b600a8054611684906136d3565b80601f01602080910402602001604051908101604052809291908181526020018280546116b0906136d3565b80156116fd5780601f106116d2576101008083540402835291602001916116fd565b820191906000526020600020905b8154815290600101906020018083116116e057829003601f168201915b505050505081565b6005546001600160a01b0316331461175f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b600855565b6007546001600160a01b031633146117be5760405162461bcd60e51b815260206004820152600e60248201527f53686974506c756e6765723a203f0000000000000000000000000000000000006044820152606401610a69565b6117d5838263ffffffff168463ffffffff166124b6565b505050565b6005546001600160a01b031633146118345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6007805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6001600160a01b03851633148061189a575061189a853361094f565b61190c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610a69565b610dfe8585858585612663565b6005546001600160a01b031633146119735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6001600160a01b0381166119ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a69565b610fb58161206a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610bbd5750610bbd82612835565b606081611a8e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ab85780611aa28161385c565b9150611ab19050600a83613819565b9150611a92565b60008167ffffffffffffffff811115611ad357611ad361302c565b6040519080825280601f01601f191660200182016040528015611afd576020820181803683370190505b5090505b8415611b8057611b126001836138f3565b9150611b1f600a8661390a565b611b2a90603061391e565b60f81b818381518110611b3f57611b3f61382d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b79600a86613819565b9450611b01565b949350505050565b8151835114611bff5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b038416611c7b5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a69565b3360005b8451811015611db8576000858281518110611c9c57611c9c61382d565b602002602001015190506000858381518110611cba57611cba61382d565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611d605760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a69565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d9d90849061391e565b9250508190555050505080611db19061385c565b9050611c7f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e08929190613936565b60405180910390a4611e1e818787878787612918565b505050505050565b80471015611e765760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a69565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ec3576040519150601f19603f3d011682016040523d82523d6000602084013e611ec8565b606091505b50509050806117d55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a69565b6127106bffffffffffffffffffffffff82161115611fc55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b03821661201b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a69565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600355565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b63ffffffff82166121925780600560148282829054906101000a900463ffffffff1661210091906138cb565b92506101000a81548163ffffffff021916908363ffffffff160217905550600763ffffffff16600560149054906101000a900463ffffffff1663ffffffff16111561218d5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610a69565b61237c565b63ffffffff8216600114156122505780600560188282829054906101000a900463ffffffff166121c291906138cb565b92506101000a81548163ffffffff021916908363ffffffff160217905550610f3d63ffffffff16600560189054906101000a900463ffffffff1663ffffffff16111561218d5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610a69565b63ffffffff82166002141561230e57806005601c8282829054906101000a900463ffffffff1661228091906138cb565b92506101000a81548163ffffffff021916908363ffffffff1602179055506117cc63ffffffff166005601c9054906101000a900463ffffffff1663ffffffff16111561218d5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610a69565b60405162461bcd60e51b815260206004820152602260248201527f4e6f536869745a6f6e653a205754462069732074686174204e6f536869745a6f60448201527f6e650000000000000000000000000000000000000000000000000000000000006064820152608401610a69565b6117d5838363ffffffff168363ffffffff1660405180602001604052806000815250612b3b565b816001600160a01b0316836001600160a01b0316141561242b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166125325760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a69565b336125628185600061254387612c58565b61254c87612c58565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156125f85760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610a69565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384166126df5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a69565b336126f88187876126ef88612c58565b610dfe88612c58565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561278f5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a69565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906127cc90849061391e565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461282c828888888888612ca3565b50505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806128c857507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610bbd57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bbd565b6001600160a01b0384163b15611e1e576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906129759089908990889088908890600401613964565b6020604051808303816000875af19250505080156129ce575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129cb918101906139c2565b60015b612a84576129da6139df565b806308c379a01415612a1457506129ef6139fb565b806129fa5750612a16565b8060405162461bcd60e51b8152600401610a699190612fdc565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610a69565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c81000000000000000000000000000000000000000000000000000000001461282c5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b038416612bb75760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a69565b33612bc8816000876126ef88612c58565b6000848152602081815260408083206001600160a01b038916845290915281208054859290612bf890849061391e565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610dfe81600087878787612ca3565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612c9257612c9261382d565b602090810291909101015292915050565b6001600160a01b0384163b15611e1e576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612d009089908990889088908890600401613aa3565b6020604051808303816000875af1925050508015612d59575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d56918101906139c2565b60015b612d65576129da6139df565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e61000000000000000000000000000000000000000000000000000000001461282c5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a69565b828054612e28906136d3565b90600052602060002090601f016020900481019282612e4a5760008555612e90565b82601f10612e6357805160ff1916838001178555612e90565b82800160010185558215612e90579182015b82811115612e90578251825591602001919060010190612e75565b50612e9c929150612ea0565b5090565b5b80821115612e9c5760008155600101612ea1565b600060208284031215612ec757600080fd5b5035919050565b80356001600160a01b0381168114612ee557600080fd5b919050565b60008060408385031215612efd57600080fd5b612f0683612ece565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610fb557600080fd5b600060208284031215612f5457600080fd5b8135612f5f81612f14565b9392505050565b60005b83811015612f81578181015183820152602001612f69565b838111156116715750506000910152565b60008151808452612faa816020860160208601612f66565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612f5f6020830184612f92565b60006020828403121561300157600080fd5b612f5f82612ece565b6000806040838503121561301d57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff8211171561309f5761309f61302c565b6040525050565b600067ffffffffffffffff8211156130c0576130c061302c565b5060051b60200190565b600082601f8301126130db57600080fd5b813560206130e8826130a6565b6040516130f5828261305b565b83815260059390931b850182019282810191508684111561311557600080fd5b8286015b848110156131305780358352918301918301613119565b509695505050505050565b600067ffffffffffffffff8311156131555761315561302c565b60405161318a60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f870116018261305b565b80915083815284848401111561319f57600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126131c857600080fd5b612f5f8383356020850161313b565b600080600080600060a086880312156131ef57600080fd5b6131f886612ece565b945061320660208701612ece565b9350604086013567ffffffffffffffff8082111561322357600080fd5b61322f89838a016130ca565b9450606088013591508082111561324557600080fd5b61325189838a016130ca565b9350608088013591508082111561326757600080fd5b50613274888289016131b7565b9150509295509295909350565b600082601f83011261329257600080fd5b8135602061329f826130a6565b6040516132ac828261305b565b83815260059390931b85018201928281019150868411156132cc57600080fd5b8286015b84811015613130576132e181612ece565b83529183019183016132d0565b6000806040838503121561330157600080fd5b823567ffffffffffffffff8082111561331957600080fd5b61332586838701613281565b9350602085013591508082111561333b57600080fd5b50613348858286016130ca565b9150509250929050565b600081518084526020808501945080840160005b8381101561338257815187529582019590820190600101613366565b509495945050505050565b602081526000612f5f6020830184613352565b6000602082840312156133b257600080fd5b81356bffffffffffffffffffffffff81168114612f5f57600080fd5b6000602082840312156133e057600080fd5b813567ffffffffffffffff8111156133f757600080fd5b8201601f8101841361340857600080fd5b611b808482356020840161313b565b803563ffffffff81168114612ee557600080fd5b8015158114610fb557600080fd5b6000806040838503121561344c57600080fd5b61345583613417565b915060208301356134658161342b565b809150509250929050565b60006101008201905063ffffffff80845116835280602085015116602084015280604085015116604084015260608401516060840152608084015160808401528060a08501511660a08401525060c0830151151560c083015260e08301516134dc60e084018215159052565b5092915050565b600080604083850312156134f657600080fd5b61345583612ece565b60008060006060848603121561351457600080fd5b61351d84613417565b925060208085013567ffffffffffffffff8082111561353b57600080fd5b61354788838901613281565b9450604087013591508082111561355d57600080fd5b508501601f8101871361356f57600080fd5b803561357a816130a6565b604051613587828261305b565b82815260059290921b83018401918481019150898311156135a757600080fd5b928401925b828410156135cc576135bd84613417565b825292840192908401906135ac565b80955050505050509250925092565b600080604083850312156135ee57600080fd5b6135f783612ece565b915061360560208401612ece565b90509250929050565b60008060006060848603121561362357600080fd5b61362c84612ece565b925061363a60208501613417565b915061364860408501613417565b90509250925092565b60006020828403121561366357600080fd5b8135612f5f8161342b565b600080600080600060a0868803121561368657600080fd5b61368f86612ece565b945061369d60208701612ece565b93506040860135925060608601359150608086013567ffffffffffffffff8111156136c757600080fd5b613274888289016131b7565b600181811c908216806136e757607f821691505b60208210811415613721577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008351613739818460208801612f66565b83519083019061374d818360208801612f66565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e5576137e561377e565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613828576138286137ea565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561388e5761388e61377e565b5060010190565b6000602082840312156138a757600080fd5b5051919050565b6000602082840312156138c057600080fd5b8151612f5f8161342b565b600063ffffffff8083168185168083038211156138ea576138ea61377e565b01949350505050565b6000828210156139055761390561377e565b500390565b600082613919576139196137ea565b500690565b600082198211156139315761393161377e565b500190565b6040815260006139496040830185613352565b828103602084015261395b8185613352565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261399060a0830186613352565b82810360608401526139a28186613352565b905082810360808401526139b68185612f92565b98975050505050505050565b6000602082840312156139d457600080fd5b8151612f5f81612f14565b600060033d11156139f85760046000803e5060005160e01c5b90565b600060443d1015613a095790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613a5757505050505090565b8285019150815181811115613a6f5750505050505090565b843d8701016020828501011115613a895750505050505090565b613a986020828601018761305b565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613adb60a0830184612f92565b97965050505050505056fea26469706673582212208a5761a532f21109d420bea8f52d50adb1db3f3b5f05c84a6c7438ea5845962364736f6c634300080b003368747470733a2f2f6d657461646174612e70696563656f66736869742e7774662f636c65616e65722f0000000000000000000000004e4a47cac6a28a62dcc20990ed2cda9bc659469f

Deployed Bytecode

0x6080604052600436106102da5760003560e01c8063653a819e11610184578063a996d6ce116100d6578063e985e9c51161008a578063f242432a11610064578063f242432a146109bd578063f2fde38b146109dd578063fd4e12ed146109fd57600080fd5b8063e985e9c514610934578063ea252caa1461097d578063ef6b141a1461099d57600080fd5b8063d4a67623116100bb578063d4a67623146108c2578063d9e06e8c146108d7578063de3bee601461091457600080fd5b8063a996d6ce14610882578063baf0887e146108a257600080fd5b8063902d55a511610138578063986250e311610112578063986250e3146107385780639a7cfa4f1461074b578063a22cb4651461086257600080fd5b8063902d55a5146106c6578063942494ca146106dc57806395d89b41146106f257600080fd5b8063715018a611610169578063715018a614610673578063750521f5146106885780638da5cb5b146106a857600080fd5b8063653a819e1461063e5780636ab659151461065e57600080fd5b80632cbf0f5f1161023d5780634998495e116101f15780635097db8b116101cb5780635097db8b146105b25780635376f1a3146105fe578063610936b91461061e57600080fd5b80634998495e1461053e5780634df22a54146105535780634e1273f41461058557600080fd5b8063351ed95111610222578063351ed9511461044657806340e99656146104f35780634203d6291461052857600080fd5b80632cbf0f5f1461049a5780632eb2c2d6146104d357600080fd5b806307675165116102945780630e89341c116102795780630e89341c1461042657806316a2ae35146104465780632a55205a1461045b57600080fd5b806307675165146103dd57806307eac2421461041057600080fd5b806301ffc9a7116102c557806301ffc9a714610334578063059fd97f1461036457806306fdde031461038e57600080fd5b80629f9262146102df578062fdd58e14610301575b600080fd5b3480156102eb57600080fd5b506102ff6102fa366004612eb5565b610a13565b005b34801561030d57600080fd5b5061032161031c366004612eea565b610a77565b6040519081526020015b60405180910390f35b34801561034057600080fd5b5061035461034f366004612f42565b610b1b565b604051901515815260200161032b565b34801561037057600080fd5b50610379600181565b60405163ffffffff909116815260200161032b565b34801561039a57600080fd5b5060408051808201909152600a81527f4e6f536869745a6f6e650000000000000000000000000000000000000000000060208201525b60405161032b9190612fdc565b3480156103e957600080fd5b506103796103f8366004612fef565b60066020526000908152604090205463ffffffff1681565b34801561041c57600080fd5b5061032160095481565b34801561043257600080fd5b506103d0610441366004612eb5565b610bc3565b34801561045257600080fd5b50610379600281565b34801561046757600080fd5b5061047b61047636600461300a565b610c86565b604080516001600160a01b03909316835260208301919091520161032b565b3480156104a657600080fd5b50600554610379907801000000000000000000000000000000000000000000000000900463ffffffff1681565b3480156104df57600080fd5b506102ff6104ee3660046131d7565b610d63565b3480156104ff57600080fd5b506005546103799074010000000000000000000000000000000000000000900463ffffffff1681565b34801561053457600080fd5b50610379610f3d81565b34801561054a57600080fd5b50610379600081565b34801561055f57600080fd5b506007546103549074010000000000000000000000000000000000000000900460ff1681565b34801561059157600080fd5b506105a56105a03660046132ee565b610e05565b60405161032b919061338d565b3480156105be57600080fd5b506105e67f0000000000000000000000004e4a47cac6a28a62dcc20990ed2cda9bc659469f81565b6040516001600160a01b03909116815260200161032b565b34801561060a57600080fd5b506102ff610619366004612fef565b610f43565b34801561062a57600080fd5b506007546105e6906001600160a01b031681565b34801561064a57600080fd5b506102ff6106593660046133a0565b6110ce565b34801561066a57600080fd5b50610379600781565b34801561067f57600080fd5b506102ff611143565b34801561069457600080fd5b506102ff6106a33660046133ce565b6111a9565b3480156106b457600080fd5b506005546001600160a01b03166105e6565b3480156106d257600080fd5b5061037961271081565b3480156106e857600080fd5b506103796117cc81565b3480156106fe57600080fd5b5060408051808201909152600681527f4e4f53484954000000000000000000000000000000000000000000000000000060208201526103d0565b6102ff610746366004613439565b611216565b34801561075757600080fd5b50610855610766366004612fef565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091525060408051610100810182526117cc8082526005547c0100000000000000000000000000000000000000000000000000000000900463ffffffff9081166020808501829052600285870152600954606086015260085460808601526001600160a01b0390961660009081526006909652939094205490931660a082015260075460ff7401000000000000000000000000000000000000000090910416151560c082015291111560e082015290565b60405161032b9190613470565b34801561086e57600080fd5b506102ff61087d3660046134e3565b61150f565b34801561088e57600080fd5b506102ff61089d366004612fef565b61151a565b3480156108ae57600080fd5b506102ff6108bd3660046134ff565b6115ae565b3480156108ce57600080fd5b506103d0611677565b3480156108e357600080fd5b50600554610379907c0100000000000000000000000000000000000000000000000000000000900463ffffffff1681565b34801561092057600080fd5b506102ff61092f366004612eb5565b611705565b34801561094057600080fd5b5061035461094f3660046135db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561098957600080fd5b506102ff61099836600461360e565b611764565b3480156109a957600080fd5b506102ff6109b8366004613651565b6117da565b3480156109c957600080fd5b506102ff6109d836600461366e565b61187e565b3480156109e957600080fd5b506102ff6109f8366004612fef565b611919565b348015610a0957600080fd5b5061032160085481565b6005546001600160a01b03163314610a725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b60006001600160a01b038316610af55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a69565b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610bae57507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b80610bbd5750610bbd826119f8565b92915050565b60606000600a8054610bd4906136d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c00906136d3565b8015610c4d5780601f10610c2257610100808354040283529160200191610c4d565b820191906000526020600020905b815481529060010190602001808311610c3057829003601f168201915b5050505050905080610c5e84611a4e565b604051602001610c6f929190613727565b604051602081830303815290604052915050919050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610d275750604080518082019091526003546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610d4b906bffffffffffffffffffffffff16876137ad565b610d559190613819565b915196919550909350505050565b6001600160a01b038516331480610d7f5750610d7f853361094f565b610df15760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a69565b610dfe8585858585611b88565b5050505050565b60608151835114610e7e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610a69565b6000835167ffffffffffffffff811115610e9a57610e9a61302c565b604051908082528060200260200182016040528015610ec3578160200160208202803683370190505b50905060005b8451811015610f3b57610f0e858281518110610ee757610ee761382d565b6020026020010151858381518110610f0157610f0161382d565b6020026020010151610a77565b828281518110610f2057610f2061382d565b6020908102919091010152610f348161385c565b9050610ec9565b509392505050565b6005546001600160a01b03163314610f9d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6001600160a01b038116610fb857610fb53347611e26565b50565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190613895565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156110a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ca91906138ae565b5050565b6005546001600160a01b031633146111285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b610fb561113d6005546001600160a01b031690565b82611f3f565b6005546001600160a01b0316331461119d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6111a7600061206a565b565b6005546001600160a01b031633146112035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b80516110ca90600a906020840190612e1c565b3233146112655760405162461bcd60e51b815260206004820152600d60248201527f4e6f536869745a6f6e653a203f000000000000000000000000000000000000006044820152606401610a69565b60075474010000000000000000000000000000000000000000900460ff166112cf5760405162461bcd60e51b815260206004820152601760248201527f4e6f536869745a6f6e653a204e6f7420537461727465640000000000000000006044820152606401610a69565b33600090815260066020526040812080548492906112f490849063ffffffff166138cb565b82546101009290920a63ffffffff8181021990931691831602179091553360009081526006602052604090205460029116111590506113755760405162461bcd60e51b815260206004820152601f60248201527f4e6f536869745a6f6e653a204578636565642077616c6c6574206c696d6974006044820152606401610a69565b80156113e2578163ffffffff1660095461138f91906137ad565b34146113dd5760405162461bcd60e51b815260206004820152601d60248201527f4e6f536869745a6f6e653a20496e73756666696369656e742046756e640000006044820152606401610a69565b611503565b7f0000000000000000000000004e4a47cac6a28a62dcc20990ed2cda9bc659469f6001600160a01b03166323b872dd33308563ffffffff1660085461142791906137ad565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015611493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b791906138ae565b6115035760405162461bcd60e51b815260206004820152601d60248201527f4e6f536869745a6f6e653a20496e73756666696369656e742046756e640000006044820152606401610a69565b6110ca336002846120d4565b6110ca3383836123a3565b6005546001600160a01b031633146115745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b805182511461161657600080fd5b60005b81518110156116715761165f8382815181106116375761163761382d565b6020026020010151858484815181106116525761165261382d565b60200260200101516120d4565b806116698161385c565b915050611619565b50505050565b600a8054611684906136d3565b80601f01602080910402602001604051908101604052809291908181526020018280546116b0906136d3565b80156116fd5780601f106116d2576101008083540402835291602001916116fd565b820191906000526020600020905b8154815290600101906020018083116116e057829003601f168201915b505050505081565b6005546001600160a01b0316331461175f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b600855565b6007546001600160a01b031633146117be5760405162461bcd60e51b815260206004820152600e60248201527f53686974506c756e6765723a203f0000000000000000000000000000000000006044820152606401610a69565b6117d5838263ffffffff168463ffffffff166124b6565b505050565b6005546001600160a01b031633146118345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6007805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6001600160a01b03851633148061189a575061189a853361094f565b61190c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610a69565b610dfe8585858585612663565b6005546001600160a01b031633146119735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a69565b6001600160a01b0381166119ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a69565b610fb58161206a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610bbd5750610bbd82612835565b606081611a8e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ab85780611aa28161385c565b9150611ab19050600a83613819565b9150611a92565b60008167ffffffffffffffff811115611ad357611ad361302c565b6040519080825280601f01601f191660200182016040528015611afd576020820181803683370190505b5090505b8415611b8057611b126001836138f3565b9150611b1f600a8661390a565b611b2a90603061391e565b60f81b818381518110611b3f57611b3f61382d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b79600a86613819565b9450611b01565b949350505050565b8151835114611bff5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b038416611c7b5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a69565b3360005b8451811015611db8576000858281518110611c9c57611c9c61382d565b602002602001015190506000858381518110611cba57611cba61382d565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611d605760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a69565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d9d90849061391e565b9250508190555050505080611db19061385c565b9050611c7f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e08929190613936565b60405180910390a4611e1e818787878787612918565b505050505050565b80471015611e765760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a69565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ec3576040519150601f19603f3d011682016040523d82523d6000602084013e611ec8565b606091505b50509050806117d55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a69565b6127106bffffffffffffffffffffffff82161115611fc55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b03821661201b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a69565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600355565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b63ffffffff82166121925780600560148282829054906101000a900463ffffffff1661210091906138cb565b92506101000a81548163ffffffff021916908363ffffffff160217905550600763ffffffff16600560149054906101000a900463ffffffff1663ffffffff16111561218d5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610a69565b61237c565b63ffffffff8216600114156122505780600560188282829054906101000a900463ffffffff166121c291906138cb565b92506101000a81548163ffffffff021916908363ffffffff160217905550610f3d63ffffffff16600560189054906101000a900463ffffffff1663ffffffff16111561218d5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610a69565b63ffffffff82166002141561230e57806005601c8282829054906101000a900463ffffffff1661228091906138cb565b92506101000a81548163ffffffff021916908363ffffffff1602179055506117cc63ffffffff166005601c9054906101000a900463ffffffff1663ffffffff16111561218d5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610a69565b60405162461bcd60e51b815260206004820152602260248201527f4e6f536869745a6f6e653a205754462069732074686174204e6f536869745a6f60448201527f6e650000000000000000000000000000000000000000000000000000000000006064820152608401610a69565b6117d5838363ffffffff168363ffffffff1660405180602001604052806000815250612b3b565b816001600160a01b0316836001600160a01b0316141561242b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166125325760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a69565b336125628185600061254387612c58565b61254c87612c58565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156125f85760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610a69565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384166126df5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a69565b336126f88187876126ef88612c58565b610dfe88612c58565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561278f5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a69565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906127cc90849061391e565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461282c828888888888612ca3565b50505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806128c857507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610bbd57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bbd565b6001600160a01b0384163b15611e1e576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906129759089908990889088908890600401613964565b6020604051808303816000875af19250505080156129ce575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129cb918101906139c2565b60015b612a84576129da6139df565b806308c379a01415612a1457506129ef6139fb565b806129fa5750612a16565b8060405162461bcd60e51b8152600401610a699190612fdc565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610a69565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c81000000000000000000000000000000000000000000000000000000001461282c5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a69565b6001600160a01b038416612bb75760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a69565b33612bc8816000876126ef88612c58565b6000848152602081815260408083206001600160a01b038916845290915281208054859290612bf890849061391e565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610dfe81600087878787612ca3565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612c9257612c9261382d565b602090810291909101015292915050565b6001600160a01b0384163b15611e1e576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612d009089908990889088908890600401613aa3565b6020604051808303816000875af1925050508015612d59575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d56918101906139c2565b60015b612d65576129da6139df565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e61000000000000000000000000000000000000000000000000000000001461282c5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a69565b828054612e28906136d3565b90600052602060002090601f016020900481019282612e4a5760008555612e90565b82601f10612e6357805160ff1916838001178555612e90565b82800160010185558215612e90579182015b82811115612e90578251825591602001919060010190612e75565b50612e9c929150612ea0565b5090565b5b80821115612e9c5760008155600101612ea1565b600060208284031215612ec757600080fd5b5035919050565b80356001600160a01b0381168114612ee557600080fd5b919050565b60008060408385031215612efd57600080fd5b612f0683612ece565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610fb557600080fd5b600060208284031215612f5457600080fd5b8135612f5f81612f14565b9392505050565b60005b83811015612f81578181015183820152602001612f69565b838111156116715750506000910152565b60008151808452612faa816020860160208601612f66565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612f5f6020830184612f92565b60006020828403121561300157600080fd5b612f5f82612ece565b6000806040838503121561301d57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff8211171561309f5761309f61302c565b6040525050565b600067ffffffffffffffff8211156130c0576130c061302c565b5060051b60200190565b600082601f8301126130db57600080fd5b813560206130e8826130a6565b6040516130f5828261305b565b83815260059390931b850182019282810191508684111561311557600080fd5b8286015b848110156131305780358352918301918301613119565b509695505050505050565b600067ffffffffffffffff8311156131555761315561302c565b60405161318a60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f870116018261305b565b80915083815284848401111561319f57600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126131c857600080fd5b612f5f8383356020850161313b565b600080600080600060a086880312156131ef57600080fd5b6131f886612ece565b945061320660208701612ece565b9350604086013567ffffffffffffffff8082111561322357600080fd5b61322f89838a016130ca565b9450606088013591508082111561324557600080fd5b61325189838a016130ca565b9350608088013591508082111561326757600080fd5b50613274888289016131b7565b9150509295509295909350565b600082601f83011261329257600080fd5b8135602061329f826130a6565b6040516132ac828261305b565b83815260059390931b85018201928281019150868411156132cc57600080fd5b8286015b84811015613130576132e181612ece565b83529183019183016132d0565b6000806040838503121561330157600080fd5b823567ffffffffffffffff8082111561331957600080fd5b61332586838701613281565b9350602085013591508082111561333b57600080fd5b50613348858286016130ca565b9150509250929050565b600081518084526020808501945080840160005b8381101561338257815187529582019590820190600101613366565b509495945050505050565b602081526000612f5f6020830184613352565b6000602082840312156133b257600080fd5b81356bffffffffffffffffffffffff81168114612f5f57600080fd5b6000602082840312156133e057600080fd5b813567ffffffffffffffff8111156133f757600080fd5b8201601f8101841361340857600080fd5b611b808482356020840161313b565b803563ffffffff81168114612ee557600080fd5b8015158114610fb557600080fd5b6000806040838503121561344c57600080fd5b61345583613417565b915060208301356134658161342b565b809150509250929050565b60006101008201905063ffffffff80845116835280602085015116602084015280604085015116604084015260608401516060840152608084015160808401528060a08501511660a08401525060c0830151151560c083015260e08301516134dc60e084018215159052565b5092915050565b600080604083850312156134f657600080fd5b61345583612ece565b60008060006060848603121561351457600080fd5b61351d84613417565b925060208085013567ffffffffffffffff8082111561353b57600080fd5b61354788838901613281565b9450604087013591508082111561355d57600080fd5b508501601f8101871361356f57600080fd5b803561357a816130a6565b604051613587828261305b565b82815260059290921b83018401918481019150898311156135a757600080fd5b928401925b828410156135cc576135bd84613417565b825292840192908401906135ac565b80955050505050509250925092565b600080604083850312156135ee57600080fd5b6135f783612ece565b915061360560208401612ece565b90509250929050565b60008060006060848603121561362357600080fd5b61362c84612ece565b925061363a60208501613417565b915061364860408501613417565b90509250925092565b60006020828403121561366357600080fd5b8135612f5f8161342b565b600080600080600060a0868803121561368657600080fd5b61368f86612ece565b945061369d60208701612ece565b93506040860135925060608601359150608086013567ffffffffffffffff8111156136c757600080fd5b613274888289016131b7565b600181811c908216806136e757607f821691505b60208210811415613721577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008351613739818460208801612f66565b83519083019061374d818360208801612f66565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e5576137e561377e565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613828576138286137ea565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561388e5761388e61377e565b5060010190565b6000602082840312156138a757600080fd5b5051919050565b6000602082840312156138c057600080fd5b8151612f5f8161342b565b600063ffffffff8083168185168083038211156138ea576138ea61377e565b01949350505050565b6000828210156139055761390561377e565b500390565b600082613919576139196137ea565b500690565b600082198211156139315761393161377e565b500190565b6040815260006139496040830185613352565b828103602084015261395b8185613352565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261399060a0830186613352565b82810360608401526139a28186613352565b905082810360808401526139b68185612f92565b98975050505050505050565b6000602082840312156139d457600080fd5b8151612f5f81612f14565b600060033d11156139f85760046000803e5060005160e01c5b90565b600060443d1015613a095790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613a5757505050505090565b8285019150815181811115613a6f5750505050505090565b843d8701016020828501011115613a895750505050505090565b613a986020828601018761305b565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613adb60a0830184612f92565b97965050505050505056fea26469706673582212208a5761a532f21109d420bea8f52d50adb1db3f3b5f05c84a6c7438ea5845962364736f6c634300080b0033

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

0000000000000000000000004e4a47cac6a28a62dcc20990ed2cda9bc659469f

-----Decoded View---------------
Arg [0] : shitCoin (address): 0x4e4a47cAC6A28A62dcC20990ed2cdA9BC659469F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004e4a47cac6a28a62dcc20990ed2cda9bc659469f


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.